diff --git a/addons/account/account.py b/addons/account/account.py index 01a4d851de8..2fbc32b1bfd 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -3187,11 +3187,14 @@ class wizard_multi_charts_accounts(osv.osv_memory): def _get_analytic_journal(journal_type): # Get the analytic journal data = False - if journal_type in ('sale', 'sale_refund'): - data = obj_data.get_object_reference(cr, uid, 'account', 'analytic_journal_sale') - elif journal_type in ('purchase', 'purchase_refund'): - pass - elif journal_type == 'general': + try: + if journal_type in ('sale', 'sale_refund'): + data = obj_data.get_object_reference(cr, uid, 'account', 'analytic_journal_sale') + elif journal_type in ('purchase', 'purchase_refund'): + data = obj_data.get_object_reference(cr, uid, 'account', 'exp') + elif journal_type == 'general': + pass + except ValueError: pass return data and data[1] or False diff --git a/addons/account/account_unit_test.xml b/addons/account/account_unit_test.xml index 7795c2700cc..5fb1c55b669 100644 --- a/addons/account/account_unit_test.xml +++ b/addons/account/account_unit_test.xml @@ -8,7 +8,7 @@ draft - out_invoice + in_invoice Test invoice 1 diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index 60821c2b454..1ebf75ab5fa 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -1211,6 +1211,7 @@ account.move.line + tree @@ -1600,7 +1601,6 @@ @@ -58,10 +31,11 @@ account.analytic.entries.graph analytic.entries.report - - - - + + + + + @@ -69,7 +43,7 @@ Analytic Entries Analysis analytic.entries.report form - tree,graph + graph {'search_default_year':1,'search_default_month':1, 'group_by_no_leaf':1, 'search_default_Account':1, 'search_default_Month':1, 'group_by':[]} From this view, have an analysis of your different analytic entries following the analytic account you defined matching your business need. Use the tool search to analyse information about analytic entries generated in the system. diff --git a/addons/account/report/account_entries_report_view.xml b/addons/account/report/account_entries_report_view.xml index 66959051ea4..2d1af681062 100644 --- a/addons/account/report/account_entries_report_view.xml +++ b/addons/account/report/account_entries_report_view.xml @@ -38,8 +38,8 @@ account.entries.report.graph account.entries.report - - + + @@ -103,9 +103,9 @@ Entries Analysis account.entries.report form - tree,graph + graph - + {'group_by':[], 'search_default_usertype':1, 'search_default_thisyear':1, 'group_by_no_leaf':1} From this view, have an analysis of your different financial accounts. The document shows your debit and credit taking in consideration some criteria you can choose by using the search tool. diff --git a/addons/account/report/account_invoice_report.py b/addons/account/report/account_invoice_report.py index d8dc45f9a3b..8fecf85ee0b 100644 --- a/addons/account/report/account_invoice_report.py +++ b/addons/account/report/account_invoice_report.py @@ -55,11 +55,6 @@ class account_invoice_report(osv.osv): _columns = { 'date': fields.date('Date', readonly=True), - 'year': fields.char('Year', size=4, readonly=True), - 'day': fields.char('Day', size=128, readonly=True), - 'month': fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), - ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), - ('10','October'), ('11','November'), ('12','December')], 'Month', readonly=True), 'product_id': fields.many2one('product.product', 'Product', readonly=True), 'product_qty':fields.float('Qty', readonly=True), 'uom_name': fields.char('Reference Unit of Measure', size=128, readonly=True), @@ -105,7 +100,7 @@ class account_invoice_report(osv.osv): def _select(self): select_str = """ - SELECT sub.id, sub.date, sub.year, sub.month, sub.day, sub.product_id, sub.partner_id, sub.country_id, + SELECT sub.id, sub.date, sub.product_id, sub.partner_id, sub.country_id, sub.payment_term, sub.period_id, sub.uom_name, sub.currency_id, sub.journal_id, sub.fiscal_position, sub.user_id, sub.company_id, sub.nbr, sub.type, sub.state, sub.categ_id, sub.date_due, sub.account_id, sub.account_line_id, sub.partner_bank_id, @@ -118,9 +113,6 @@ class account_invoice_report(osv.osv): select_str = """ SELECT min(ail.id) AS id, ai.date_invoice AS date, - to_char(ai.date_invoice::timestamp with time zone, 'YYYY'::text) AS year, - to_char(ai.date_invoice::timestamp with time zone, 'MM'::text) AS month, - to_char(ai.date_invoice::timestamp with time zone, 'YYYY-MM-DD'::text) AS day, ail.product_id, ai.partner_id, ai.payment_term, ai.period_id, CASE WHEN u.uom_type::text <> 'reference'::text @@ -192,9 +184,6 @@ class account_invoice_report(osv.osv): def _group_by(self): group_by_str = """ GROUP BY ail.product_id, ai.date_invoice, ai.id, - to_char(ai.date_invoice::timestamp with time zone, 'YYYY'::text), - to_char(ai.date_invoice::timestamp with time zone, 'MM'::text), - to_char(ai.date_invoice::timestamp with time zone, 'YYYY-MM-DD'::text), ai.partner_id, ai.payment_term, ai.period_id, u.name, ai.currency_id, ai.journal_id, ai.fiscal_position, ai.user_id, ai.company_id, ai.type, ai.state, pt.categ_id, ai.date_due, ai.account_id, ail.account_id, ai.partner_bank_id, ai.residual, diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml index 47ce75b4d61..24723d7fb12 100644 --- a/addons/account/report/account_invoice_report_view.xml +++ b/addons/account/report/account_invoice_report_view.xml @@ -1,47 +1,16 @@ - - account.invoice.report.tree - account.invoice.report - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - account.invoice.report.graph account.invoice.report - - - + + + + + + @@ -72,7 +41,7 @@ - + @@ -80,9 +49,9 @@ - - - + + + @@ -92,8 +61,8 @@ Invoices Analysis account.invoice.report form - tree,graph - {'search_default_period':1,'search_default_current':1, 'search_default_year': 1, 'search_default_category_product':1, 'search_default_customer':1, 'group_by':[], 'group_by_no_leaf':1,} + graph + {'search_default_current':1, 'search_default_year': 1, 'search_default_customer':1, 'group_by':[], 'group_by_no_leaf':1,} From this report, you can have an overview of the amount invoiced to your customer. The tool search can also be used to personalise your Invoices reports and so, match this analysis to your needs. diff --git a/addons/account/report/account_treasury_report_view.xml b/addons/account/report/account_treasury_report_view.xml index be6ae0dfdc9..f1c84849831 100644 --- a/addons/account/report/account_treasury_report_view.xml +++ b/addons/account/report/account_treasury_report_view.xml @@ -22,9 +22,11 @@ account.treasury.report.graph account.treasury.report - - - + + + + + @@ -43,9 +45,9 @@ Treasury Analysis account.treasury.report form - tree,graph + graph - + {'group_by':[], 'group_by_no_leaf':0} From this view, have an analysis of your treasury. It sums the balance of every accounting entries made on liquidity accounts per period. diff --git a/addons/account/res_config.py b/addons/account/res_config.py index bf28e900378..8980a31927e 100644 --- a/addons/account/res_config.py +++ b/addons/account/res_config.py @@ -105,6 +105,9 @@ class account_config_settings(osv.osv_memory): 'module_account_followup': fields.boolean('Manage customer payment follow-ups', help='This allows to automate letters for unpaid invoices, with multi-level recalls.\n' '-This installs the module account_followup.'), + 'module_product_email_template': fields.boolean('Send products tools and information at the invoice confirmation', + help='With this module, link your products to a template to send complete information and tools to your customer.\n' + 'For instance when invoicing a training, the training agenda and materials will automatically be send to your customers.'), 'group_proforma_invoices': fields.boolean('Allow pro-forma invoices', implied_group='account.group_proforma_invoices', help="Allows you to put invoices in pro-forma state."), diff --git a/addons/account/res_config_view.xml b/addons/account/res_config_view.xml index ce8b41fc2da..8a5b1978ecb 100644 --- a/addons/account/res_config_view.xml +++ b/addons/account/res_config_view.xml @@ -183,6 +183,10 @@ - - - - crm.lead.report.tree - crm.lead.report - - - - - - - - - - - - - - - - - - - - - - - - - - - - Leads Analysis crm.lead.report form - {'search_default_year': 1, "search_default_user":1, "search_default_month":1, 'group_by_no_leaf':1, 'group_by':[]} - tree,graph + graph [('type','=', 'lead')] Leads Analysis allows you to check different CRM related information like the treatment delays or number of leads per state. You can sort out your leads analysis by different groups to get accurate grained analysis. - - - tree - - - graph @@ -187,19 +117,11 @@ Opportunities Analysis crm.lead.report form - {"search_default_year":1, "search_default_user":1,"search_default_month":1,'group_by_no_leaf':1,'group_by':[]} - tree,graph + graph [('type','=', 'opportunity')] Opportunities Analysis gives you an instant access to your opportunities with information such as the expected revenue, planned cost, missed deadlines or the number of interactions per opportunity. This report is mainly used by the sales manager in order to do the periodic review with the teams of the sales pipeline. - - - tree - - - - graph diff --git a/addons/crm/report/crm_phonecall_report.py b/addons/crm/report/crm_phonecall_report.py index fba095f1174..6a3e3bf208b 100644 --- a/addons/crm/report/crm_phonecall_report.py +++ b/addons/crm/report/crm_phonecall_report.py @@ -40,20 +40,12 @@ class crm_phonecall_report(osv.osv): _auto = False _columns = { - 'name': fields.char('Year', size=64, required=False, readonly=True), 'user_id':fields.many2one('res.users', 'User', readonly=True), 'section_id':fields.many2one('crm.case.section', 'Section', readonly=True), 'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority'), 'nbr': fields.integer('# of Cases', readonly=True), 'state': fields.selection(AVAILABLE_STATES, 'Status', size=16, readonly=True), - 'month':fields.selection([('01', 'January'), ('02', 'February'), \ - ('03', 'March'), ('04', 'April'),\ - ('05', 'May'), ('06', 'June'), \ - ('07', 'July'), ('08', 'August'),\ - ('09', 'September'), ('10', 'October'),\ - ('11', 'November'), ('12', 'December')], 'Month', readonly=True), 'create_date': fields.datetime('Create Date', readonly=True, select=True), - 'day': fields.char('Day', size=128, readonly=True), 'delay_close': fields.float('Delay to close', digits=(16,2),readonly=True, group_operator="avg",help="Number of Days to close the case"), 'duration': fields.float('Duration', digits=(16,2),readonly=True, group_operator="avg"), 'delay_open': fields.float('Delay to open',digits=(16,2),readonly=True, group_operator="avg",help="Number of Days to open the case"), @@ -77,9 +69,6 @@ class crm_phonecall_report(osv.osv): create or replace view crm_phonecall_report as ( select id, - to_char(c.date, 'YYYY') as name, - to_char(c.date, 'MM') as month, - to_char(c.date, 'YYYY-MM-DD') as day, to_char(c.create_date, 'YYYY-MM-DD') as creation_date, to_char(c.date_open, 'YYYY-MM-DD') as opening_date, to_char(c.date_closed, 'YYYY-mm-dd') as date_closed, diff --git a/addons/crm/report/crm_phonecall_report_view.xml b/addons/crm/report/crm_phonecall_report_view.xml index 52ecd2d13b3..32ae9704064 100644 --- a/addons/crm/report/crm_phonecall_report_view.xml +++ b/addons/crm/report/crm_phonecall_report_view.xml @@ -2,42 +2,17 @@ - - - - crm.phonecall.report.tree - crm.phonecall.report - - - - - - - - - - - - - - - - - - - - crm.phonecall.report.graph crm.phonecall.report - - - - + + + + + @@ -78,9 +53,9 @@ - - - + + + @@ -92,20 +67,13 @@ Phone Calls Analysis crm.phonecall.report form - tree,graph + graph {"search_default_year":1,"search_default_Salesperson":1,"search_default_This Month":1,'group_by_no_leaf':1,'group_by':[]} - + From this report, you can analyse the performance of your sales team, based on their phone calls. You can group or filter the information according to several criteria and drill down the information, by adding more groups in the report. - - - tree - - - - graph diff --git a/addons/crm/test/lead2opportunity_assign_salesmen.yml b/addons/crm/test/lead2opportunity_assign_salesmen.yml index 5a750c94b72..de88a96cb50 100644 --- a/addons/crm/test/lead2opportunity_assign_salesmen.yml +++ b/addons/crm/test/lead2opportunity_assign_salesmen.yml @@ -66,7 +66,7 @@ - !python {model: crm.lead2opportunity.partner.mass}: | context.update({'active_model': 'crm.lead', 'active_ids': [ref("test_crm_lead_01"), ref("test_crm_lead_02"), ref("test_crm_lead_03"), ref("test_crm_lead_04"), ref("test_crm_lead_05"), ref("test_crm_lead_06")], 'active_id': ref("test_crm_lead_01")}) - id = self.create(cr, uid, {'user_ids': [(6, 0, [ref('test_res_user_01'), ref('test_res_user_02'), ref('test_res_user_03'), ref('test_res_user_04')])], 'section_id': ref('crm.section_sales_department')}, context=context) + id = self.create(cr, uid, {'user_ids': [(6, 0, [ref('test_res_user_01'), ref('test_res_user_02'), ref('test_res_user_03'), ref('test_res_user_04')])], 'section_id': ref('crm.section_sales_department'), 'deduplicate': False}, context=context) self.mass_convert(cr, uid, [id], context=context) - The leads should now be opps with a salesman and a salesteam. Also, salesmen should have been assigned following a round-robin method. diff --git a/addons/crm/wizard/crm_lead_to_opportunity.py b/addons/crm/wizard/crm_lead_to_opportunity.py index 8ce2aa1c6c7..f779237ea71 100644 --- a/addons/crm/wizard/crm_lead_to_opportunity.py +++ b/addons/crm/wizard/crm_lead_to_opportunity.py @@ -41,6 +41,22 @@ class crm_lead2opportunity_partner(osv.osv_memory): def onchange_action(self, cr, uid, ids, action, context=None): return {'value': {'partner_id': False if action != 'exist' else self._find_matching_partner(cr, uid, context=context)}} + def _get_duplicated_leads(self, cr, uid, partner_id, email, context=None): + lead_obj = self.pool.get('crm.lead') + results = [] + if partner_id: + # Search for opportunities that have the same partner and that arent done or cancelled + ids = lead_obj.search(cr, uid, [('partner_id', '=', partner_id), '|', ('probability', '=', False), ('probability', '<', '100')]) + for id in ids: + results.append(id) + email = re.findall(r'([^ ,<@]+@[^> ,]+)', email or '') + if email: + ids = lead_obj.search(cr, uid, [('email_from', '=ilike', email[0]), '|', ('probability', '=', False), ('probability', '<', '100')]) + for id in ids: + results.append(id) + return list(set(results)) + + def default_get(self, cr, uid, fields, context=None): """ Default get for name, opportunity_ids. @@ -51,24 +67,15 @@ class crm_lead2opportunity_partner(osv.osv_memory): res = super(crm_lead2opportunity_partner, self).default_get(cr, uid, fields, context=context) if context.get('active_id'): - tomerge = set([int(context['active_id'])]) + tomerge = [int(context['active_id'])] email = False partner_id = res.get('partner_id') lead = lead_obj.browse(cr, uid, int(context['active_id']), context=context) #TOFIX: use mail.mail_message.to_mail - email = re.findall(r'([^ ,<@]+@[^> ,]+)', lead.email_from or '') - - if partner_id: - # Search for opportunities that have the same partner and that arent done or cancelled - ids = lead_obj.search(cr, uid, [('partner_id', '=', partner_id), '|', ('probability', '=', False), ('probability', '<', '100')]) - for id in ids: - tomerge.add(id) - if email: - ids = lead_obj.search(cr, uid, [('email_from', '=ilike', email[0]), '|', ('probability', '=', False), ('probability', '<', '100')]) - for id in ids: - tomerge.add(id) + tomerge.extend(self._get_duplicated_leads(cr, uid, partner_id, email)) + tomerge = list(set(tomerge)) if 'action' in fields: res.update({'action' : partner_id and 'exist' or 'create'}) @@ -77,7 +84,7 @@ class crm_lead2opportunity_partner(osv.osv_memory): if 'name' in fields: res.update({'name' : len(tomerge) >= 2 and 'merge' or 'convert'}) if 'opportunity_ids' in fields and len(tomerge) >= 2: - res.update({'opportunity_ids': list(tomerge)}) + res.update({'opportunity_ids': tomerge}) if lead.user_id: res.update({'user_id': lead.user_id.id}) if lead.section_id: @@ -116,11 +123,11 @@ class crm_lead2opportunity_partner(osv.osv_memory): context = {} lead = self.pool.get('crm.lead') res = False - partner_ids_map = self._create_partner(cr, uid, ids, context=context) lead_ids = vals.get('lead_ids', []) team_id = vals.get('section_id', False) + data = self.browse(cr, uid, ids, context=context)[0] for lead_id in lead_ids: - partner_id = partner_ids_map.get(lead_id, False) + partner_id = self._create_partner(cr, uid, lead_id, data.action, data.partner_id, context=context) # FIXME: cannot pass user_ids as the salesman allocation only works in batch res = lead.convert_opportunity(cr, uid, [lead_id], partner_id, [], team_id, context=context) # FIXME: must perform salesman allocation in batch separately here @@ -152,7 +159,7 @@ class crm_lead2opportunity_partner(osv.osv_memory): return self.pool.get('crm.lead').redirect_opportunity_view(cr, uid, lead_ids[0], context=context) - def _create_partner(self, cr, uid, ids, context=None): + def _create_partner(self, cr, uid, lead_id, action, partner_id, context=None): """ Create partner based on action. :return dict: dictionary organized as followed: {lead_id: partner_assigned_id} @@ -163,10 +170,13 @@ class crm_lead2opportunity_partner(osv.osv_memory): if context is None: context = {} lead = self.pool.get('crm.lead') - lead_ids = context.get('active_ids', []) - data = self.browse(cr, uid, ids, context=context)[0] - partner_id = data.partner_id and data.partner_id.id or False - return lead.handle_partner_assignation(cr, uid, lead_ids, data.action, partner_id, context=context) + if action == 'each_exist_or_create': + ctx = dict(context) + ctx['active_id'] = lead_id + partner_id = self._find_matching_partner(cr, uid, context=ctx) + action = 'create' + res = lead.handle_partner_assignation(cr, uid, [lead_id], action, partner_id, context=context) + return res.get(lead_id) class crm_lead2opportunity_mass_convert(osv.osv_memory): _name = 'crm.lead2opportunity.partner.mass' @@ -176,6 +186,15 @@ class crm_lead2opportunity_mass_convert(osv.osv_memory): _columns = { 'user_ids': fields.many2many('res.users', string='Salesmen'), 'section_id': fields.many2one('crm.case.section', 'Sales Team'), + 'deduplicate': fields.boolean('Apply deduplication', help='Merge with existing leads/opportunities of each partner'), + 'action': fields.selection([ + ('each_exist_or_create', 'Use existing partner or create'), + ('nothing', 'Do not link to a customer') + ], 'Related Customer', required=True), + } + + _defaults = { + 'deduplicate': True, } def default_get(self, cr, uid, fields, context=None): @@ -184,13 +203,37 @@ class crm_lead2opportunity_mass_convert(osv.osv_memory): # avoid forcing the partner of the first lead as default res['partner_id'] = False if 'action' in fields: - res['action'] = 'create' + res['action'] = 'each_exist_or_create' if 'name' in fields: res['name'] = 'convert' if 'opportunity_ids' in fields: res['opportunity_ids'] = False return res + def on_change_action(self, cr, uid, ids, action, context=None): + vals = {} + if action != 'exist': + vals = {'value': {'partner_id': False}} + return vals + + def on_change_deduplicate(self, cr, uid, ids, deduplicate, context=None): + if context is None: + context = {} + active_leads = self.pool['crm.lead'].browse(cr, uid, context['active_ids'], context=context) + partner_ids = [(lead.partner_id.id, lead.partner_id and lead.partner_id.email or lead.email_from) for lead in active_leads] + partners_duplicated_leads = {} + for partner_id, email in partner_ids: + duplicated_leads = self._get_duplicated_leads(cr, uid, partner_id, email) + if len(duplicated_leads) > 1: + partners_duplicated_leads.setdefault((partner_id, email), []).extend(duplicated_leads) + leads_with_duplicates = [] + for lead in active_leads: + lead_tuple = (lead.partner_id.id, lead.partner_id.email if lead.partner_id else lead.email_from) + if len(partners_duplicated_leads.get(lead_tuple, [])) > 1: + leads_with_duplicates.append(lead.id) + return {'value': {'opportunity_ids': leads_with_duplicates}} + + def _convert_opportunity(self, cr, uid, ids, vals, context=None): """ When "massively" (more than one at a time) converting leads to @@ -208,6 +251,21 @@ class crm_lead2opportunity_mass_convert(osv.osv_memory): return super(crm_lead2opportunity_mass_convert, self)._convert_opportunity(cr, uid, ids, vals, context=context) def mass_convert(self, cr, uid, ids, context=None): - return self.action_apply(cr, uid, ids, context=context) + data = self.browse(cr, uid, ids, context=context)[0] + ctx = dict(context) + if data.name == 'convert' and data.deduplicate: + merged_lead_ids = [] + remaining_lead_ids = [] + for lead in self.pool['crm.lead'].browse(cr, uid, context.get('active_ids', []), context=context): + duplicated_lead_ids = self._get_duplicated_leads(cr, uid, lead.partner_id.id, lead.partner_id and lead.partner_id.email or lead.email_from) + if len(duplicated_lead_ids) > 1: + lead_id = self.pool.get('crm.lead').merge_opportunity(cr, uid, duplicated_lead_ids, False, False, context=context) + merged_lead_ids.extend(duplicated_lead_ids) + remaining_lead_ids.append(lead_id) + active_ids = set(context.get('active_ids', [])) + active_ids = active_ids.difference(merged_lead_ids) + active_ids = active_ids.union(remaining_lead_ids) + ctx['active_ids'] = list(active_ids) + return self.action_apply(cr, uid, ids, context=ctx) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm/wizard/crm_lead_to_opportunity_view.xml b/addons/crm/wizard/crm_lead_to_opportunity_view.xml index 09506c3ed81..58fbe244ba4 100644 --- a/addons/crm/wizard/crm_lead_to_opportunity_view.xml +++ b/addons/crm/wizard/crm_lead_to_opportunity_view.xml @@ -52,21 +52,17 @@
- + + - - - - - + - - - + @@ -50,62 +49,26 @@ crm.lead.assign.graph crm.lead.report.assign - - - + + + + + - - crm.lead.assign.report.tree - crm.lead.report.assign - - - - - - - - - - - - - - - - - - - - - - - - - - - - Opp. Assignment Analysis crm.lead.report.assign form - {'default_type': 'opportunity', "search_default_group_partner_date": 1, "search_default_group_grade":1,'group_by_no_leaf':1,'group_by':[]} - tree + {'default_type': 'opportunity', 'group_by_no_leaf':1,'group_by':[]} + graph [('type', '=', 'opportunity')] - - - tree - - - - graph diff --git a/addons/crm_partner_assign/report/crm_partner_report_view.xml b/addons/crm_partner_assign/report/crm_partner_report_view.xml index 4e7e13afb15..02320219218 100644 --- a/addons/crm_partner_assign/report/crm_partner_report_view.xml +++ b/addons/crm_partner_assign/report/crm_partner_report_view.xml @@ -24,7 +24,7 @@ domain="[]" context="{'group_by':'grade_id'}" /> - @@ -35,25 +35,15 @@ - - - - crm.partner.assign.report.tree + + crm.partner.assign.report.graph crm.partner.report.assign - - - - - - - - - - - - - + + + + + @@ -62,8 +52,8 @@ Partnership Analysis crm.partner.report.assign - {'search_default_group_grade': 1, 'group_by_no_leaf':1,'group_by':[]} - tree + {'group_by_no_leaf':1,'group_by':[]} + graph [('grade_id', '!=', False)] diff --git a/addons/crm_partner_assign/res_partner_demo.xml b/addons/crm_partner_assign/res_partner_demo.xml index 8e9088165d1..a0711657810 100644 --- a/addons/crm_partner_assign/res_partner_demo.xml +++ b/addons/crm_partner_assign/res_partner_demo.xml @@ -1,13 +1,109 @@ - - First + + Platinum + 4 + + + Gold + 3 + + + Silver + 2 + + + Bronze 1 + - + 10 + + + + + + 10 + + + + 10 + + + + + 10 + + + + 10 + + + + 10 + + + + + 10 + + + + 10 + + + + 10 + + + + + 10 + + + + 10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/crm_partner_assign/res_partner_view.xml b/addons/crm_partner_assign/res_partner_view.xml index 734d5a31e95..c298832a2e6 100644 --- a/addons/crm_partner_assign/res_partner_view.xml +++ b/addons/crm_partner_assign/res_partner_view.xml @@ -98,13 +98,14 @@ - - res.partner.geo.inherit + + res.partner.assign.inherit res.partner - + - - + + + diff --git a/addons/crm_partner_assign/security/ir.model.access.csv b/addons/crm_partner_assign/security/ir.model.access.csv index 81d74bf43e3..6a26c574a1c 100644 --- a/addons/crm_partner_assign/security/ir.model.access.csv +++ b/addons/crm_partner_assign/security/ir.model.access.csv @@ -5,4 +5,4 @@ access_crm_partner_report,crm.partner.report.assign.all,model_crm_partner_report access_res_partner_grade,res.partner.grade,model_res_partner_grade,base.group_sale_salesman,1,1,1,0 access_res_partner_grade_manager,res.partner.grade.manager,model_res_partner_grade,base.group_sale_manager,1,1,1,1 "access_partner_activation_manager","res.partner.activation.manager","model_res_partner_activation","base.group_partner_manager",1,1,1,1 -partner_access_crm_lead,crm.lead,model_crm_lead,portal.group_portal,1,1,0,0 \ No newline at end of file +partner_access_crm_lead,crm.lead,model_crm_lead,base.group_portal,1,1,0,0 \ No newline at end of file diff --git a/addons/crm_partner_assign/wizard/crm_forward_to_partner.py b/addons/crm_partner_assign/wizard/crm_forward_to_partner.py index fca2f9b746f..a854da9459d 100644 --- a/addons/crm_partner_assign/wizard/crm_forward_to_partner.py +++ b/addons/crm_partner_assign/wizard/crm_forward_to_partner.py @@ -87,7 +87,7 @@ class crm_lead_forward_to_partner(osv.TransientModel): raise osv.except_osv(_('Email Template Error'), _('The Forward Email Template is not in the database')) try: - portal_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'portal', 'group_portal')[1] + portal_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base', 'group_portal')[1] except ValueError: raise osv.except_osv(_('Portal Group Error'), _('The Portal group cannot be found')) diff --git a/addons/crm_profiling/i18n/ar.po b/addons/crm_profiling/i18n/ar.po index 5e4eefb7f4d..6070672518d 100644 --- a/addons/crm_profiling/i18n/ar.po +++ b/addons/crm_profiling/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bg.po b/addons/crm_profiling/i18n/bg.po index 0ca278c10da..94837ca1efe 100644 --- a/addons/crm_profiling/i18n/bg.po +++ b/addons/crm_profiling/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bs.po b/addons/crm_profiling/i18n/bs.po index ebb163b135b..42177de1d2d 100644 --- a/addons/crm_profiling/i18n/bs.po +++ b/addons/crm_profiling/i18n/bs.po @@ -13,19 +13,19 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 msgid "Questions List" -msgstr "" +msgstr "Upitnik" #. module: crm_profiling #: view:crm_profiling.question:0 #: field:crm_profiling.question,answers_ids:0 msgid "Avalaible Answers" -msgstr "" +msgstr "Raspoloživi odgovori" #. module: crm_profiling #: model:ir.actions.act_window,help:crm_profiling.open_questionnaires @@ -35,6 +35,10 @@ msgid "" "segmentation tool allows you to automatically assign a partner to a category " "according to his answers to the different questionnaires." msgstr "" +"Možete da kreirate specifične upitnike da vodite svoj tim u ciklusu prodaje " +"pomažući im da pitaju prava pitanja. Alat za segmentaciju dozvoljava vam da " +"automatski dodjelite partnera kategoriji u odnosu na njegove odgovore na " +"različita pitanja." #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 @@ -42,30 +46,30 @@ msgstr "" #: model:ir.model,name:crm_profiling.model_crm_profiling_question #: field:open.questionnaire.line,question_id:0 msgid "Question" -msgstr "" +msgstr "Pitanje" #. module: crm_profiling #: model:ir.actions.act_window,name:crm_profiling.action_open_questionnaire #: view:open.questionnaire:0 msgid "Open Questionnaire" -msgstr "" +msgstr "Otvoreni Upitnik" #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" -msgstr "" +msgstr "Podređeni profili" #. module: crm_profiling #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "" +msgstr "Segmentacije Partnera" #. module: crm_profiling #: field:crm_profiling.answer,name:0 #: model:ir.model,name:crm_profiling.model_crm_profiling_answer #: field:open.questionnaire.line,answer_id:0 msgid "Answer" -msgstr "" +msgstr "Odgovor" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire_line @@ -75,30 +79,30 @@ msgstr "" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "" +msgstr "Segmentacija partnera" #. module: crm_profiling #: view:res.partner:0 msgid "Profiling" -msgstr "" +msgstr "Profilisanje" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 #: field:crm_profiling.questionnaire,description:0 msgid "Description" -msgstr "" +msgstr "Opis" #. module: crm_profiling #: field:crm.segmentation,answer_no:0 msgid "Excluded Answers" -msgstr "" +msgstr "Izuzeti Odgovori" #. module: crm_profiling #: view:crm_profiling.answer:0 #: view:crm_profiling.question:0 #: field:res.partner,answers_ids:0 msgid "Answers" -msgstr "" +msgstr "Odgovori" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire @@ -108,17 +112,17 @@ msgstr "" #. module: crm_profiling #: field:open.questionnaire,questionnaire_id:0 msgid "Questionnaire name" -msgstr "" +msgstr "Naziv upitnika" #. module: crm_profiling #: view:res.partner:0 msgid "Use a questionnaire" -msgstr "" +msgstr "Koristi Upitnik" #. module: crm_profiling #: field:open.questionnaire,question_ans_ids:0 msgid "Question / Answers" -msgstr "" +msgstr "Pitanja i odgovori" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -126,7 +130,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_profiling.menu_segm_questionnaire #: view:open.questionnaire:0 msgid "Questionnaires" -msgstr "" +msgstr "Upitnici" #. module: crm_profiling #: help:crm.segmentation,profiling_active:0 @@ -139,17 +143,17 @@ msgstr "" #. module: crm_profiling #: field:crm.segmentation,profiling_active:0 msgid "Use The Profiling Rules" -msgstr "" +msgstr "Koristi Pravila Profiliranja" #. module: crm_profiling #: constraint:crm.segmentation:0 msgid "Error ! You cannot create recursive profiles." -msgstr "" +msgstr "Greška! Ne možete kreirati rekurzivne profile." #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 msgid "Included Answers" -msgstr "" +msgstr "Uključeni Odgovori" #. module: crm_profiling #: view:crm_profiling.question:0 @@ -157,22 +161,22 @@ msgstr "" #: model:ir.actions.act_window,name:crm_profiling.open_questions #: model:ir.ui.menu,name:crm_profiling.menu_segm_answer msgid "Questions" -msgstr "" +msgstr "Pitanja" #. module: crm_profiling #: field:crm.segmentation,parent_id:0 msgid "Parent Profile" -msgstr "" +msgstr "Nadređeni Profil" #. module: crm_profiling #: view:open.questionnaire:0 msgid "Cancel" -msgstr "" +msgstr "Otkaži" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: crm_profiling #: code:addons/crm_profiling/wizard/open_questionnaire.py:77 @@ -183,17 +187,17 @@ msgstr "" #: field:open.questionnaire.line,wizard_id:0 #, python-format msgid "Questionnaire" -msgstr "" +msgstr "Upitnik" #. module: crm_profiling #: view:open.questionnaire:0 msgid "Save Data" -msgstr "" +msgstr "Spremi podatke" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "ili" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neodgovarajući XML za arhitekturu prikaza!" diff --git a/addons/crm_profiling/i18n/ca.po b/addons/crm_profiling/i18n/ca.po index dd57ad62fb3..2af3330b925 100644 --- a/addons/crm_profiling/i18n/ca.po +++ b/addons/crm_profiling/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/cs.po b/addons/crm_profiling/i18n/cs.po index 68913f87df4..d28f25a4aa6 100644 --- a/addons/crm_profiling/i18n/cs.po +++ b/addons/crm_profiling/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/da.po b/addons/crm_profiling/i18n/da.po index e06cffef373..c7fe3b270e0 100644 --- a/addons/crm_profiling/i18n/da.po +++ b/addons/crm_profiling/i18n/da.po @@ -14,19 +14,19 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 msgid "Questions List" -msgstr "" +msgstr "Spørge liste" #. module: crm_profiling #: view:crm_profiling.question:0 #: field:crm_profiling.question,answers_ids:0 msgid "Avalaible Answers" -msgstr "" +msgstr "Mulige svar" #. module: crm_profiling #: model:ir.actions.act_window,help:crm_profiling.open_questionnaires @@ -43,51 +43,51 @@ msgstr "" #: model:ir.model,name:crm_profiling.model_crm_profiling_question #: field:open.questionnaire.line,question_id:0 msgid "Question" -msgstr "" +msgstr "Spørgsmål" #. module: crm_profiling #: model:ir.actions.act_window,name:crm_profiling.action_open_questionnaire #: view:open.questionnaire:0 msgid "Open Questionnaire" -msgstr "" +msgstr "Åben spørgeskema" #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" -msgstr "" +msgstr "Under profiler" #. module: crm_profiling #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "" +msgstr "Partner segmenteringer" #. module: crm_profiling #: field:crm_profiling.answer,name:0 #: model:ir.model,name:crm_profiling.model_crm_profiling_answer #: field:open.questionnaire.line,answer_id:0 msgid "Answer" -msgstr "" +msgstr "Svar" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire_line msgid "open.questionnaire.line" -msgstr "" +msgstr "Åben.spørgeskema.linie" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "" +msgstr "Partner segmentering" #. module: crm_profiling #: view:res.partner:0 msgid "Profiling" -msgstr "" +msgstr "Profilering" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 #: field:crm_profiling.questionnaire,description:0 msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. module: crm_profiling #: field:crm.segmentation,answer_no:0 @@ -99,27 +99,27 @@ msgstr "" #: view:crm_profiling.question:0 #: field:res.partner,answers_ids:0 msgid "Answers" -msgstr "" +msgstr "Svar" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire msgid "open.questionnaire" -msgstr "" +msgstr "Åben.spørgeskema" #. module: crm_profiling #: field:open.questionnaire,questionnaire_id:0 msgid "Questionnaire name" -msgstr "" +msgstr "Spørgeskema navn" #. module: crm_profiling #: view:res.partner:0 msgid "Use a questionnaire" -msgstr "" +msgstr "Brug et spørgeskema" #. module: crm_profiling #: field:open.questionnaire,question_ans_ids:0 msgid "Question / Answers" -msgstr "" +msgstr "Spørgsmål / Svar" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -127,7 +127,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_profiling.menu_segm_questionnaire #: view:open.questionnaire:0 msgid "Questionnaires" -msgstr "" +msgstr "Spørgeskemaer" #. module: crm_profiling #: help:crm.segmentation,profiling_active:0 @@ -140,17 +140,17 @@ msgstr "" #. module: crm_profiling #: field:crm.segmentation,profiling_active:0 msgid "Use The Profiling Rules" -msgstr "" +msgstr "Brug profilerings reglerne" #. module: crm_profiling #: constraint:crm.segmentation:0 msgid "Error ! You cannot create recursive profiles." -msgstr "" +msgstr "Fejl! Du kan ikke oprette rekursive profiler." #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 msgid "Included Answers" -msgstr "" +msgstr "Inkluderede svar" #. module: crm_profiling #: view:crm_profiling.question:0 @@ -158,22 +158,22 @@ msgstr "" #: model:ir.actions.act_window,name:crm_profiling.open_questions #: model:ir.ui.menu,name:crm_profiling.menu_segm_answer msgid "Questions" -msgstr "" +msgstr "Spørgsmål" #. module: crm_profiling #: field:crm.segmentation,parent_id:0 msgid "Parent Profile" -msgstr "" +msgstr "Hoved profil" #. module: crm_profiling #: view:open.questionnaire:0 msgid "Cancel" -msgstr "" +msgstr "Annullér" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: crm_profiling #: code:addons/crm_profiling/wizard/open_questionnaire.py:77 @@ -184,14 +184,14 @@ msgstr "" #: field:open.questionnaire.line,wizard_id:0 #, python-format msgid "Questionnaire" -msgstr "" +msgstr "Spørgeskema" #. module: crm_profiling #: view:open.questionnaire:0 msgid "Save Data" -msgstr "" +msgstr "Gem Data" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "eller" diff --git a/addons/crm_profiling/i18n/de.po b/addons/crm_profiling/i18n/de.po index b85b3445166..742b740c389 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -53,17 +53,17 @@ msgstr "Frage" #: model:ir.actions.act_window,name:crm_profiling.action_open_questionnaire #: view:open.questionnaire:0 msgid "Open Questionnaire" -msgstr "Öffne Fragebogen" +msgstr "Fragebogen öffnen" #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" -msgstr "untergeordnete Profile" +msgstr "Untergeordnete Profile" #. module: crm_profiling #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "Partner Segmentierung" +msgstr "Partner-Segmentierung" #. module: crm_profiling #: field:crm_profiling.answer,name:0 @@ -80,7 +80,7 @@ msgstr "open.questionnaire.line" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "Partner Segmentierung" +msgstr "Partner-Segmentierung" #. module: crm_profiling #: view:res.partner:0 @@ -96,7 +96,7 @@ msgstr "Beschreibung" #. module: crm_profiling #: field:crm.segmentation,answer_no:0 msgid "Excluded Answers" -msgstr "ausgeschlossene Antworten" +msgstr "Ausgeschlossene Antworten" #. module: crm_profiling #: view:crm_profiling.answer:0 @@ -118,7 +118,7 @@ msgstr "Name des Fragebogens" #. module: crm_profiling #: view:res.partner:0 msgid "Use a questionnaire" -msgstr "Benutze einen Fragebogen" +msgstr "Fragebogen verwenden" #. module: crm_profiling #: field:open.questionnaire,question_ans_ids:0 @@ -131,7 +131,7 @@ msgstr "Fragen / Antworten" #: model:ir.ui.menu,name:crm_profiling.menu_segm_questionnaire #: view:open.questionnaire:0 msgid "Questionnaires" -msgstr "Vertriebsfragebogen" +msgstr "Fragebögen" #. module: crm_profiling #: help:crm.segmentation,profiling_active:0 @@ -157,7 +157,7 @@ msgstr "Fehler! Sie können keine rekursiven Profile anlegen." #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 msgid "Included Answers" -msgstr "eingeschlossen Antworten" +msgstr "Eingeschlossen Antworten" #. module: crm_profiling #: view:crm_profiling.question:0 diff --git a/addons/crm_profiling/i18n/el.po b/addons/crm_profiling/i18n/el.po index 94448a2d495..6e2dcd3ea69 100644 --- a/addons/crm_profiling/i18n/el.po +++ b/addons/crm_profiling/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/crm_profiling/i18n/en_GB.po b/addons/crm_profiling/i18n/en_GB.po index c509f9eab13..d77f00231ce 100644 --- a/addons/crm_profiling/i18n/en_GB.po +++ b/addons/crm_profiling/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es.po b/addons/crm_profiling/i18n/es.po index 542d7cb251d..6de517d92b2 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index 23541461ba4..73d26f2d49d 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_CR.po b/addons/crm_profiling/i18n/es_CR.po index 3704ff6e214..357c09fb07e 100644 --- a/addons/crm_profiling/i18n/es_CR.po +++ b/addons/crm_profiling/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/es_EC.po b/addons/crm_profiling/i18n/es_EC.po index 25463c362bd..0a984a286f5 100644 --- a/addons/crm_profiling/i18n/es_EC.po +++ b/addons/crm_profiling/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_PY.po b/addons/crm_profiling/i18n/es_PY.po index 38aa650bb3c..d557c550cab 100644 --- a/addons/crm_profiling/i18n/es_PY.po +++ b/addons/crm_profiling/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/et.po b/addons/crm_profiling/i18n/et.po index 7ac52e7490a..107f8241331 100644 --- a/addons/crm_profiling/i18n/et.po +++ b/addons/crm_profiling/i18n/et.po @@ -13,13 +13,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 msgid "Questions List" -msgstr "" +msgstr "Küsimuste nimekiri" #. module: crm_profiling #: view:crm_profiling.question:0 @@ -75,7 +75,7 @@ msgstr "" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "" +msgstr "Partneri Segmenteerimine" #. module: crm_profiling #: view:res.partner:0 @@ -118,7 +118,7 @@ msgstr "Kasuta küsimustikku" #. module: crm_profiling #: field:open.questionnaire,question_ans_ids:0 msgid "Question / Answers" -msgstr "" +msgstr "Küsimus / Vastus" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -144,7 +144,7 @@ msgstr "Kasuta profileerimise reegleid" #. module: crm_profiling #: constraint:crm.segmentation:0 msgid "Error ! You cannot create recursive profiles." -msgstr "" +msgstr "Viga! Te ei saa luua rekursiivseid profiile." #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 @@ -172,7 +172,7 @@ msgstr "Tühista" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: crm_profiling #: code:addons/crm_profiling/wizard/open_questionnaire.py:77 @@ -193,7 +193,7 @@ msgstr "Salvesta andmed" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "või" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/crm_profiling/i18n/fi.po b/addons/crm_profiling/i18n/fi.po index 670344ed142..5a4ff7e0eda 100644 --- a/addons/crm_profiling/i18n/fi.po +++ b/addons/crm_profiling/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -71,7 +71,7 @@ msgstr "Vastaus" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire_line msgid "open.questionnaire.line" -msgstr "" +msgstr "open.questionnaire.line" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation @@ -104,7 +104,7 @@ msgstr "Vastaukset" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire msgid "open.questionnaire" -msgstr "" +msgstr "open.questionnaire" #. module: crm_profiling #: field:open.questionnaire,questionnaire_id:0 @@ -196,7 +196,7 @@ msgstr "Tallenna tiedot" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "tai" #~ msgid "Avalaible answers" #~ msgstr "Käytettävissä olevat vastaukset" diff --git a/addons/crm_profiling/i18n/fr.po b/addons/crm_profiling/i18n/fr.po index e4c830cfe17..be3d2a78ebf 100644 --- a/addons/crm_profiling/i18n/fr.po +++ b/addons/crm_profiling/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gl.po b/addons/crm_profiling/i18n/gl.po index 7db3b068f0d..6d8a3a2cd59 100644 --- a/addons/crm_profiling/i18n/gl.po +++ b/addons/crm_profiling/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gu.po b/addons/crm_profiling/i18n/gu.po index b57e9a709dc..5d6c7dfa722 100644 --- a/addons/crm_profiling/i18n/gu.po +++ b/addons/crm_profiling/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hr.po b/addons/crm_profiling/i18n/hr.po index 13262c3833c..457a1cc3de1 100644 --- a/addons/crm_profiling/i18n/hr.po +++ b/addons/crm_profiling/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: hr\n" #. module: crm_profiling @@ -194,7 +194,7 @@ msgstr "Spremi podatke" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "ili" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/crm_profiling/i18n/hu.po b/addons/crm_profiling/i18n/hu.po index 358308c0e68..29303994e0d 100644 --- a/addons/crm_profiling/i18n/hu.po +++ b/addons/crm_profiling/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/id.po b/addons/crm_profiling/i18n/id.po index 8d8df621b33..1cdee662cb4 100644 --- a/addons/crm_profiling/i18n/id.po +++ b/addons/crm_profiling/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/it.po b/addons/crm_profiling/i18n/it.po index 14bbed32059..91e95260689 100644 --- a/addons/crm_profiling/i18n/it.po +++ b/addons/crm_profiling/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ja.po b/addons/crm_profiling/i18n/ja.po index 1a6f32f729d..c261ee7a32f 100644 --- a/addons/crm_profiling/i18n/ja.po +++ b/addons/crm_profiling/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index ce82d3357cb..ab50a5f476f 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lt.po b/addons/crm_profiling/i18n/lt.po index 3aeb3511b81..7495d7126b0 100644 --- a/addons/crm_profiling/i18n/lt.po +++ b/addons/crm_profiling/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lv.po b/addons/crm_profiling/i18n/lv.po index c3bbeef0e6d..37373920c92 100644 --- a/addons/crm_profiling/i18n/lv.po +++ b/addons/crm_profiling/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/mk.po b/addons/crm_profiling/i18n/mk.po index c0dda97602e..7e29c0d79d4 100644 --- a/addons/crm_profiling/i18n/mk.po +++ b/addons/crm_profiling/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/mn.po b/addons/crm_profiling/i18n/mn.po index a5d3a5ae99f..e62c01674a6 100644 --- a/addons/crm_profiling/i18n/mn.po +++ b/addons/crm_profiling/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nb.po b/addons/crm_profiling/i18n/nb.po index c5a08310d5c..9eb12d09e11 100644 --- a/addons/crm_profiling/i18n/nb.po +++ b/addons/crm_profiling/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl.po b/addons/crm_profiling/i18n/nl.po index 2761cf7fe05..161695fdcbc 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index 0a4456e8a33..847b1fd1d91 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pl.po b/addons/crm_profiling/i18n/pl.po index 35b2f2b2ff6..562d3d622c7 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt.po b/addons/crm_profiling/i18n/pt.po index cea7a5bb76f..267b46cb9bb 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index 897eb34114c..93a2dd712a9 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 22:29+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ro.po b/addons/crm_profiling/i18n/ro.po index 0eb82f6c9f5..3a754a9bce9 100644 --- a/addons/crm_profiling/i18n/ro.po +++ b/addons/crm_profiling/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ru.po b/addons/crm_profiling/i18n/ru.po index e50062f3c3d..52cb5bf68c5 100644 --- a/addons/crm_profiling/i18n/ru.po +++ b/addons/crm_profiling/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sk.po b/addons/crm_profiling/i18n/sk.po index e591c10c965..a38068202de 100644 --- a/addons/crm_profiling/i18n/sk.po +++ b/addons/crm_profiling/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sl.po b/addons/crm_profiling/i18n/sl.po index 1878bc50b02..6139a3792f2 100644 --- a/addons/crm_profiling/i18n/sl.po +++ b/addons/crm_profiling/i18n/sl.po @@ -13,19 +13,19 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 msgid "Questions List" -msgstr "" +msgstr "Vprašalnik" #. module: crm_profiling #: view:crm_profiling.question:0 #: field:crm_profiling.question,answers_ids:0 msgid "Avalaible Answers" -msgstr "" +msgstr "Možni odgovori" #. module: crm_profiling #: model:ir.actions.act_window,help:crm_profiling.open_questionnaires @@ -35,6 +35,10 @@ msgid "" "segmentation tool allows you to automatically assign a partner to a category " "according to his answers to the different questionnaires." msgstr "" +"Lahko kreirate relevanten vprašalnik, ki bo vodil vaše prodajno osebje v " +"prodajnem ciklusu in jim pomagal, postavljati pravilna vprašanja. Orodje za " +"segmentacijo omogoča avtomatično prireditev partnerja kategoriji glede na " +"njegove odgovore na različne vprašalnike." #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 @@ -53,12 +57,12 @@ msgstr "Odpri vprašalnik" #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" -msgstr "" +msgstr "Podrejeni profili" #. module: crm_profiling #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "" +msgstr "Segmentacija partnerja" #. module: crm_profiling #: field:crm_profiling.answer,name:0 @@ -70,17 +74,17 @@ msgstr "Odgovor" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire_line msgid "open.questionnaire.line" -msgstr "" +msgstr "open.questionnaire.line" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "" +msgstr "Segmentacija partnerjev" #. module: crm_profiling #: view:res.partner:0 msgid "Profiling" -msgstr "" +msgstr "Profiliranje" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -91,7 +95,7 @@ msgstr "Opis" #. module: crm_profiling #: field:crm.segmentation,answer_no:0 msgid "Excluded Answers" -msgstr "" +msgstr "Izključeni odgovori" #. module: crm_profiling #: view:crm_profiling.answer:0 @@ -103,7 +107,7 @@ msgstr "Odgovori" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire msgid "open.questionnaire" -msgstr "" +msgstr "open.questionnaire" #. module: crm_profiling #: field:open.questionnaire,questionnaire_id:0 @@ -118,7 +122,7 @@ msgstr "Uporabi vprašalnik" #. module: crm_profiling #: field:open.questionnaire,question_ans_ids:0 msgid "Question / Answers" -msgstr "" +msgstr "Vprašanje / Odgovori" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -135,21 +139,23 @@ msgid "" "part of the segmentation rule. If not checked, " "the criteria beneath will be ignored" msgstr "" +"Označite to polje, če želite uporabo tega zavihka kot del segmentacijskih " +"pravil. Če ni označeno, bodo ti kriteriji ignorirani." #. module: crm_profiling #: field:crm.segmentation,profiling_active:0 msgid "Use The Profiling Rules" -msgstr "" +msgstr "Uporaba pravil profiliranja" #. module: crm_profiling #: constraint:crm.segmentation:0 msgid "Error ! You cannot create recursive profiles." -msgstr "" +msgstr "Napaka! Ne morete kreirati rekurzivnih profilov." #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 msgid "Included Answers" -msgstr "" +msgstr "Vključeni odgovori" #. module: crm_profiling #: view:crm_profiling.question:0 @@ -162,7 +168,7 @@ msgstr "Vprašanja" #. module: crm_profiling #: field:crm.segmentation,parent_id:0 msgid "Parent Profile" -msgstr "" +msgstr "Nadrejeni profil" #. module: crm_profiling #: view:open.questionnaire:0 @@ -172,7 +178,7 @@ msgstr "Prekliči" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: crm_profiling #: code:addons/crm_profiling/wizard/open_questionnaire.py:77 @@ -193,7 +199,7 @@ msgstr "Shrani podatke" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "ali" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/crm_profiling/i18n/sq.po b/addons/crm_profiling/i18n/sq.po index c048dfee4f7..d1c8896d5cd 100644 --- a/addons/crm_profiling/i18n/sq.po +++ b/addons/crm_profiling/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr.po b/addons/crm_profiling/i18n/sr.po index 54300c4755a..1bd3b8b52bb 100644 --- a/addons/crm_profiling/i18n/sr.po +++ b/addons/crm_profiling/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr@latin.po b/addons/crm_profiling/i18n/sr@latin.po index 28f96c27064..d6ec8efc085 100644 --- a/addons/crm_profiling/i18n/sr@latin.po +++ b/addons/crm_profiling/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sv.po b/addons/crm_profiling/i18n/sv.po index e2fbf7d5809..bc5a6a4a9aa 100644 --- a/addons/crm_profiling/i18n/sv.po +++ b/addons/crm_profiling/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tlh.po b/addons/crm_profiling/i18n/tlh.po index 7306bba3837..d8577934e39 100644 --- a/addons/crm_profiling/i18n/tlh.po +++ b/addons/crm_profiling/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tr.po b/addons/crm_profiling/i18n/tr.po index 361165891f1..5497b7e8360 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -79,7 +79,7 @@ msgstr "open.questionnaire.line" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "Paydaş Bölümlendirmesi" +msgstr "İş Ortağı Bölümlendirmesi" #. module: crm_profiling #: view:res.partner:0 @@ -168,7 +168,7 @@ msgstr "Sorular" #. module: crm_profiling #: field:crm.segmentation,parent_id:0 msgid "Parent Profile" -msgstr "Ana Profil" +msgstr "Üst Profil" #. module: crm_profiling #: view:open.questionnaire:0 @@ -178,7 +178,7 @@ msgstr "Vazgeç" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_res_partner msgid "Partner" -msgstr "Paydaş" +msgstr "İş Ortağı" #. module: crm_profiling #: code:addons/crm_profiling/wizard/open_questionnaire.py:77 diff --git a/addons/crm_profiling/i18n/uk.po b/addons/crm_profiling/i18n/uk.po index 755dfb54f07..71822aed5d4 100644 --- a/addons/crm_profiling/i18n/uk.po +++ b/addons/crm_profiling/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/vi.po b/addons/crm_profiling/i18n/vi.po index cc1bc914502..66329595d8c 100644 --- a/addons/crm_profiling/i18n/vi.po +++ b/addons/crm_profiling/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index c0923505152..a59cae3679a 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index 4cb83780c6b..2b188ab331d 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_todo/i18n/ar.po b/addons/crm_todo/i18n/ar.po index 1b3c33a2f37..bd0f5736117 100644 --- a/addons/crm_todo/i18n/ar.po +++ b/addons/crm_todo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/bs.po b/addons/crm_todo/i18n/bs.po index 55bb0678945..664fdc92579 100644 --- a/addons/crm_todo/i18n/bs.po +++ b/addons/crm_todo/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 05:49+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/cs.po b/addons/crm_todo/i18n/cs.po index a854bbf9ba5..9e029663543 100644 --- a/addons/crm_todo/i18n/cs.po +++ b/addons/crm_todo/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/da.po b/addons/crm_todo/i18n/da.po index 1225268965d..a40e4156519 100644 --- a/addons/crm_todo/i18n/da.po +++ b/addons/crm_todo/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/de.po b/addons/crm_todo/i18n/de.po index 34cd7a44a9f..f52c2fc18ab 100644 --- a/addons/crm_todo/i18n/de.po +++ b/addons/crm_todo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -30,7 +30,7 @@ msgstr "Zeitfenster" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "Verkaufskontakt" +msgstr "Interessent" #. module: crm_todo #: view:crm.lead:0 @@ -67,17 +67,17 @@ msgstr "Abbrechen" #. module: crm_todo #: model:ir.model,name:crm_todo.model_crm_lead msgid "Lead/Opportunity" -msgstr "Lead / Opportunity" +msgstr "Interessent / Chance" #. module: crm_todo #: field:project.task,lead_id:0 msgid "Lead / Opportunity" -msgstr "Lead / Opportunity" +msgstr "Interessent / Chance" #. module: crm_todo #: view:crm.lead:0 msgid "For changing to done state" -msgstr "Um in den Statuts \"Erledigt\" zu wechseln" +msgstr "Um in den Status \"Erledigt\" zu wechseln" #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/crm_todo/i18n/en_GB.po b/addons/crm_todo/i18n/en_GB.po index 157ffdfefa1..6b426b03ad0 100644 --- a/addons/crm_todo/i18n/en_GB.po +++ b/addons/crm_todo/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es.po b/addons/crm_todo/i18n/es.po index 4a80ce18ab6..0b17e4cb932 100644 --- a/addons/crm_todo/i18n/es.po +++ b/addons/crm_todo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es_CR.po b/addons/crm_todo/i18n/es_CR.po index 4df584647ac..b36d94e79ec 100644 --- a/addons/crm_todo/i18n/es_CR.po +++ b/addons/crm_todo/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -25,12 +25,12 @@ msgstr "Tarea" #. module: crm_todo #: view:crm.lead:0 msgid "Timebox" -msgstr "Tiempo en caja" +msgstr "Periodo de tiempo" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "" +msgstr "Iniciativa" #. module: crm_todo #: view:crm.lead:0 @@ -67,12 +67,12 @@ msgstr "Cancelar" #. module: crm_todo #: model:ir.model,name:crm_todo.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "Iniciativa / Oportunbidad" #. module: crm_todo #: field:project.task,lead_id:0 msgid "Lead / Opportunity" -msgstr "Dirección / Oportunidad" +msgstr "Iniciativa / Oportunidad" #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/crm_todo/i18n/et.po b/addons/crm_todo/i18n/et.po index 4e08132360c..2d6e8fe5080 100644 --- a/addons/crm_todo/i18n/et.po +++ b/addons/crm_todo/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fi.po b/addons/crm_todo/i18n/fi.po index 496ed006116..07c42e316ba 100644 --- a/addons/crm_todo/i18n/fi.po +++ b/addons/crm_todo/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -30,7 +30,7 @@ msgstr "Aikaikkuna" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "" +msgstr "Liidi" #. module: crm_todo #: view:crm.lead:0 @@ -40,13 +40,13 @@ msgstr "Peruuttaaksesi tehtävän" #. module: crm_todo #: view:crm.lead:0 msgid "Next" -msgstr "seuraava" +msgstr "Seuraava" #. module: crm_todo #: model:ir.actions.act_window,name:crm_todo.crm_todo_action #: model:ir.ui.menu,name:crm_todo.menu_crm_todo msgid "My Tasks" -msgstr "Omat tehtävät" +msgstr "Omat tehtäväni" #. module: crm_todo #: view:crm.lead:0 @@ -67,22 +67,22 @@ msgstr "Peruuta" #. module: crm_todo #: model:ir.model,name:crm_todo.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "Liidi/Mahdollisuus" #. module: crm_todo #: field:project.task,lead_id:0 msgid "Lead / Opportunity" -msgstr "Liidi / mahdollisuus" +msgstr "Liidi/Mahdollisuus" #. module: crm_todo #: view:crm.lead:0 msgid "For changing to done state" -msgstr "Vaihtaaksesi valmis tilaan" +msgstr "Vaihtaaksesi tilaan \"Valmis\"" #. module: crm_todo #: view:crm.lead:0 msgid "Previous" -msgstr "edellinen" +msgstr "Edellinen" #~ msgid "Error ! You cannot create recursive tasks." #~ msgstr "Virhe ! Et voi luoda rekursiivisiä tehtäviä." diff --git a/addons/crm_todo/i18n/fr.po b/addons/crm_todo/i18n/fr.po index e19b130d2d0..9c722753b80 100644 --- a/addons/crm_todo/i18n/fr.po +++ b/addons/crm_todo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/gu.po b/addons/crm_todo/i18n/gu.po index 5e37571a21a..322937e0009 100644 --- a/addons/crm_todo/i18n/gu.po +++ b/addons/crm_todo/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/he.po b/addons/crm_todo/i18n/he.po index 116b0a50883..195c1e00569 100644 --- a/addons/crm_todo/i18n/he.po +++ b/addons/crm_todo/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-01-04 05:42+0000\n" -"X-Generator: Launchpad (build 16877)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/hr.po b/addons/crm_todo/i18n/hr.po index da3c50796bc..f7387192404 100644 --- a/addons/crm_todo/i18n/hr.po +++ b/addons/crm_todo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/hu.po b/addons/crm_todo/i18n/hu.po index 154e062c6c9..dcb4fb50512 100644 --- a/addons/crm_todo/i18n/hu.po +++ b/addons/crm_todo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/it.po b/addons/crm_todo/i18n/it.po index bb20b9415d5..dc3461e8beb 100644 --- a/addons/crm_todo/i18n/it.po +++ b/addons/crm_todo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ja.po b/addons/crm_todo/i18n/ja.po index 9e995a68a8b..c937fd2a239 100644 --- a/addons/crm_todo/i18n/ja.po +++ b/addons/crm_todo/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ko.po b/addons/crm_todo/i18n/ko.po index 9bd58e410f7..0bf05861323 100644 --- a/addons/crm_todo/i18n/ko.po +++ b/addons/crm_todo/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/lt.po b/addons/crm_todo/i18n/lt.po index 5ef4665d3dd..97e6ae0ffb9 100644 --- a/addons/crm_todo/i18n/lt.po +++ b/addons/crm_todo/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/mk.po b/addons/crm_todo/i18n/mk.po index 249a5b8967d..07e851da6a9 100644 --- a/addons/crm_todo/i18n/mk.po +++ b/addons/crm_todo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/mn.po b/addons/crm_todo/i18n/mn.po index 77cd0850554..1674ae09877 100644 --- a/addons/crm_todo/i18n/mn.po +++ b/addons/crm_todo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nb.po b/addons/crm_todo/i18n/nb.po index 83e68ae7dfb..b19b6a70213 100644 --- a/addons/crm_todo/i18n/nb.po +++ b/addons/crm_todo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nl.po b/addons/crm_todo/i18n/nl.po index a5e27dddace..a48e859758d 100644 --- a/addons/crm_todo/i18n/nl.po +++ b/addons/crm_todo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pl.po b/addons/crm_todo/i18n/pl.po index 8fce50275f1..77e279b06b3 100644 --- a/addons/crm_todo/i18n/pl.po +++ b/addons/crm_todo/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt.po b/addons/crm_todo/i18n/pt.po index 37c2a7c7d66..b614965afd6 100644 --- a/addons/crm_todo/i18n/pt.po +++ b/addons/crm_todo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt_BR.po b/addons/crm_todo/i18n/pt_BR.po index a1e8ec41614..d7663cdd9f0 100644 --- a/addons/crm_todo/i18n/pt_BR.po +++ b/addons/crm_todo/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 22:32+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ro.po b/addons/crm_todo/i18n/ro.po index 6d14cff06dd..c3e7ee6f17a 100644 --- a/addons/crm_todo/i18n/ro.po +++ b/addons/crm_todo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ru.po b/addons/crm_todo/i18n/ru.po index 125a53b8861..8ddd01b566f 100644 --- a/addons/crm_todo/i18n/ru.po +++ b/addons/crm_todo/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sl.po b/addons/crm_todo/i18n/sl.po index 7dd0cb10d45..1a92ab82ab1 100644 --- a/addons/crm_todo/i18n/sl.po +++ b/addons/crm_todo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -25,7 +25,7 @@ msgstr "Naloga" #. module: crm_todo #: view:crm.lead:0 msgid "Timebox" -msgstr "" +msgstr "Časovnica" #. module: crm_todo #: view:crm.lead:0 @@ -35,7 +35,7 @@ msgstr "Potencialna priložnost" #. module: crm_todo #: view:crm.lead:0 msgid "For cancelling the task" -msgstr "" +msgstr "Za preklic opravila" #. module: crm_todo #: view:crm.lead:0 @@ -77,7 +77,7 @@ msgstr "Potencialna priložnost/Priložnost" #. module: crm_todo #: view:crm.lead:0 msgid "For changing to done state" -msgstr "" +msgstr "Za sprememo v status Opravljeno." #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/crm_todo/i18n/sr@latin.po b/addons/crm_todo/i18n/sr@latin.po index 9d7f5d2c34e..1439d8c1af9 100644 --- a/addons/crm_todo/i18n/sr@latin.po +++ b/addons/crm_todo/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sv.po b/addons/crm_todo/i18n/sv.po index 265f88668d3..82f92c648ab 100644 --- a/addons/crm_todo/i18n/sv.po +++ b/addons/crm_todo/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/tr.po b/addons/crm_todo/i18n/tr.po index d9a2d7baf7c..dc4400e6a13 100644 --- a/addons/crm_todo/i18n/tr.po +++ b/addons/crm_todo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -30,7 +30,7 @@ msgstr "Zaman Kutusu" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "Müşteri Adayı" +msgstr "Aday" #. module: crm_todo #: view:crm.lead:0 @@ -57,7 +57,7 @@ msgstr "Görevler" #. module: crm_todo #: view:crm.lead:0 msgid "Done" -msgstr "Bitti" +msgstr "Biten" #. module: crm_todo #: view:crm.lead:0 @@ -67,17 +67,17 @@ msgstr "İptal" #. module: crm_todo #: model:ir.model,name:crm_todo.model_crm_lead msgid "Lead/Opportunity" -msgstr "Müşteri Adayı/İş Fırsatı" +msgstr "Aday/Fırsat" #. module: crm_todo #: field:project.task,lead_id:0 msgid "Lead / Opportunity" -msgstr "Fırsat" +msgstr "Aday / Fırsat" #. module: crm_todo #: view:crm.lead:0 msgid "For changing to done state" -msgstr "Bitti durumuna değiştirmek için" +msgstr "Biten durumuna değiştirmek için" #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/crm_todo/i18n/zh_CN.po b/addons/crm_todo/i18n/zh_CN.po index 27af577fc1a..9b115a40474 100644 --- a/addons/crm_todo/i18n/zh_CN.po +++ b/addons/crm_todo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_TW.po b/addons/crm_todo/i18n/zh_TW.po index 4639cf34579..bc3fb47edcb 100644 --- a/addons/crm_todo/i18n/zh_TW.po +++ b/addons/crm_todo/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -30,7 +30,7 @@ msgstr "時間區間" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "" +msgstr "潛在客戶" #. module: crm_todo #: view:crm.lead:0 @@ -67,7 +67,7 @@ msgstr "刪除" #. module: crm_todo #: model:ir.model,name:crm_todo.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "潛在客戶/商機" #. module: crm_todo #: field:project.task,lead_id:0 diff --git a/addons/decimal_precision/decimal_precision.py b/addons/decimal_precision/decimal_precision.py index 6c6453322c0..9af09704b61 100644 --- a/addons/decimal_precision/decimal_precision.py +++ b/addons/decimal_precision/decimal_precision.py @@ -22,10 +22,10 @@ import openerp from openerp import SUPERUSER_ID from openerp import tools -from openerp.osv import osv, fields +from openerp.osv import orm, fields from openerp.modules.registry import RegistryManager -class decimal_precision(osv.osv): +class decimal_precision(orm.Model): _name = 'decimal.precision' _columns = { 'name': fields.char('Usage', size=50, select=True, required=True), @@ -50,9 +50,9 @@ class decimal_precision(osv.osv): self.precision_get.clear_cache(self) for obj in self.pool.obj_list(): for colname, col in self.pool.get(obj)._columns.items(): - if isinstance(col, (fields.float, fields.function)): + if hasattr(col, 'digits_change'): col.digits_change(cr) - RegistryManager.signal_registry_change(cr.dbname) + RegistryManager.signal_caches_change(cr.dbname) def create(self, cr, uid, data, context=None): res = super(decimal_precision, self).create(cr, uid, data, context=context) @@ -77,4 +77,29 @@ def get_precision(application): return (16, res) return change_digit +class DecimalPrecisionFloat(orm.AbstractModel): + """ Override qweb.field.float to add a `decimal_precision` domain option + and use that instead of the column's own value if it is specified + """ + _inherit = 'ir.qweb.field.float' + + + def precision(self, cr, uid, column, options=None, context=None): + dp = options and options.get('decimal_precision') + if dp: + return self.pool['decimal.precision'].precision_get( + cr, uid, dp) + + return super(DecimalPrecisionFloat, self).precision( + cr, uid, column, options=options, context=context) + +class DecimalPrecisionTestModel(orm.Model): + _name = 'decimal.precision.test' + + _columns = { + 'float': fields.float(), + 'float_2': fields.float(digits=(16, 2)), + 'float_4': fields.float(digits=(16, 4)), + } + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/decimal_precision/i18n/ar.po b/addons/decimal_precision/i18n/ar.po index 13f0a6209ef..5239767cfb8 100644 --- a/addons/decimal_precision/i18n/ar.po +++ b/addons/decimal_precision/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/bg.po b/addons/decimal_precision/i18n/bg.po index cc3f2a4d0b4..9fe75810b1f 100644 --- a/addons/decimal_precision/i18n/bg.po +++ b/addons/decimal_precision/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/bs.po b/addons/decimal_precision/i18n/bs.po index fc676957d42..f212515737e 100644 --- a/addons/decimal_precision/i18n/bs.po +++ b/addons/decimal_precision/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 05:49+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ca.po b/addons/decimal_precision/i18n/ca.po index 0cd30b955b3..6ea75b2a173 100644 --- a/addons/decimal_precision/i18n/ca.po +++ b/addons/decimal_precision/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/cs.po b/addons/decimal_precision/i18n/cs.po index a616a0e7b2e..3c99773f796 100644 --- a/addons/decimal_precision/i18n/cs.po +++ b/addons/decimal_precision/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/da.po b/addons/decimal_precision/i18n/da.po index 9b9c3e8d17c..0734e769f9b 100644 --- a/addons/decimal_precision/i18n/da.po +++ b/addons/decimal_precision/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/de.po b/addons/decimal_precision/i18n/de.po index 29207fac88f..55a877fb57f 100644 --- a/addons/decimal_precision/i18n/de.po +++ b/addons/decimal_precision/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -42,7 +42,7 @@ msgstr "Es kann nur ein Wert für alle Anwendungsfälle hinterlegt werden" #. module: decimal_precision #: view:decimal.precision:0 msgid "Decimal Precision" -msgstr "Nachkommastellen" +msgstr "Dezimalstellen" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision diff --git a/addons/decimal_precision/i18n/el.po b/addons/decimal_precision/i18n/el.po index 05797a6008a..bdd025ff577 100644 --- a/addons/decimal_precision/i18n/el.po +++ b/addons/decimal_precision/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/en_GB.po b/addons/decimal_precision/i18n/en_GB.po index dc1688e69b3..9bac13504e5 100644 --- a/addons/decimal_precision/i18n/en_GB.po +++ b/addons/decimal_precision/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es.po b/addons/decimal_precision/i18n/es.po index 03027fed4a8..77f59acb131 100644 --- a/addons/decimal_precision/i18n/es.po +++ b/addons/decimal_precision/i18n/es.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_CR.po b/addons/decimal_precision/i18n/es_CR.po index 2930fe73e9a..ed67dd2b7c6 100644 --- a/addons/decimal_precision/i18n/es_CR.po +++ b/addons/decimal_precision/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/es_EC.po b/addons/decimal_precision/i18n/es_EC.po index fee059d320d..181a2798c48 100644 --- a/addons/decimal_precision/i18n/es_EC.po +++ b/addons/decimal_precision/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_MX.po b/addons/decimal_precision/i18n/es_MX.po index 49d1a3a3d5f..7fdeae8177c 100644 --- a/addons/decimal_precision/i18n/es_MX.po +++ b/addons/decimal_precision/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_PY.po b/addons/decimal_precision/i18n/es_PY.po index d28ed849593..eb72a26a460 100644 --- a/addons/decimal_precision/i18n/es_PY.po +++ b/addons/decimal_precision/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fi.po b/addons/decimal_precision/i18n/fi.po index 8590d757178..8672a4fa3ca 100644 --- a/addons/decimal_precision/i18n/fi.po +++ b/addons/decimal_precision/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -26,7 +26,7 @@ msgstr "Numeroja" #: model:ir.actions.act_window,name:decimal_precision.action_decimal_precision_form #: model:ir.ui.menu,name:decimal_precision.menu_decimal_precision_form msgid "Decimal Accuracy" -msgstr "Desimaalien tarkkuuus" +msgstr "Desimaalitarkkuus" #. module: decimal_precision #: field:decimal.precision,name:0 @@ -46,7 +46,7 @@ msgstr "Desimaalitarkkuus" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision msgid "decimal.precision" -msgstr "" +msgstr "decimal.precision" #~ msgid "Decimal Precision Configuration" #~ msgstr "Desimaalitarkkuuden konfiguraatio" diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index f269b12cf88..c3eb8cfbc9a 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gl.po b/addons/decimal_precision/i18n/gl.po index f68fbb00654..b2f82ea3e2c 100644 --- a/addons/decimal_precision/i18n/gl.po +++ b/addons/decimal_precision/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gu.po b/addons/decimal_precision/i18n/gu.po index dba7135e20b..de6963e02ac 100644 --- a/addons/decimal_precision/i18n/gu.po +++ b/addons/decimal_precision/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hr.po b/addons/decimal_precision/i18n/hr.po index a6b9e59223f..2b3162c0572 100644 --- a/addons/decimal_precision/i18n/hr.po +++ b/addons/decimal_precision/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hu.po b/addons/decimal_precision/i18n/hu.po index 708f08b4041..20208173789 100644 --- a/addons/decimal_precision/i18n/hu.po +++ b/addons/decimal_precision/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/id.po b/addons/decimal_precision/i18n/id.po index 060e49ebc95..4f31296fa6e 100644 --- a/addons/decimal_precision/i18n/id.po +++ b/addons/decimal_precision/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/it.po b/addons/decimal_precision/i18n/it.po index 9ce640ac121..fbb35c7b53d 100644 --- a/addons/decimal_precision/i18n/it.po +++ b/addons/decimal_precision/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:56+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ja.po b/addons/decimal_precision/i18n/ja.po index 11214ba3e6b..1aedb47661b 100644 --- a/addons/decimal_precision/i18n/ja.po +++ b/addons/decimal_precision/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ko.po b/addons/decimal_precision/i18n/ko.po index ca0f38644ea..78339e259d0 100644 --- a/addons/decimal_precision/i18n/ko.po +++ b/addons/decimal_precision/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lt.po b/addons/decimal_precision/i18n/lt.po index f4d034e91a6..5fca86c5ee0 100644 --- a/addons/decimal_precision/i18n/lt.po +++ b/addons/decimal_precision/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lv.po b/addons/decimal_precision/i18n/lv.po index 0c7290967a3..3a959e1de97 100644 --- a/addons/decimal_precision/i18n/lv.po +++ b/addons/decimal_precision/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mk.po b/addons/decimal_precision/i18n/mk.po index 70809652113..81ce4c19f40 100644 --- a/addons/decimal_precision/i18n/mk.po +++ b/addons/decimal_precision/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mn.po b/addons/decimal_precision/i18n/mn.po index 9ce0f8b5b3e..0e31b2be81e 100644 --- a/addons/decimal_precision/i18n/mn.po +++ b/addons/decimal_precision/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nb.po b/addons/decimal_precision/i18n/nb.po index 50797b77b5d..409e82e4dbf 100644 --- a/addons/decimal_precision/i18n/nb.po +++ b/addons/decimal_precision/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl.po b/addons/decimal_precision/i18n/nl.po index 947fca9ffa2..04c9120e6e7 100644 --- a/addons/decimal_precision/i18n/nl.po +++ b/addons/decimal_precision/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl_BE.po b/addons/decimal_precision/i18n/nl_BE.po index 37d5921523f..a3fa06ec52c 100644 --- a/addons/decimal_precision/i18n/nl_BE.po +++ b/addons/decimal_precision/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 13:41+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pl.po b/addons/decimal_precision/i18n/pl.po index 4563b28f515..a2023b16c80 100644 --- a/addons/decimal_precision/i18n/pl.po +++ b/addons/decimal_precision/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -26,7 +26,7 @@ msgstr "Cyfry" #: model:ir.actions.act_window,name:decimal_precision.action_decimal_precision_form #: model:ir.ui.menu,name:decimal_precision.menu_decimal_precision_form msgid "Decimal Accuracy" -msgstr "" +msgstr "Dokładność po przecinku" #. module: decimal_precision #: field:decimal.precision,name:0 @@ -37,11 +37,12 @@ msgstr "Użycie" #: sql_constraint:decimal.precision:0 msgid "Only one value can be defined for each given usage!" msgstr "" +"Tylko jedna wartość może zostać określona dla każdego podanego użycia!" #. module: decimal_precision #: view:decimal.precision:0 msgid "Decimal Precision" -msgstr "" +msgstr "Dokładność po przecinku" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision diff --git a/addons/decimal_precision/i18n/pt.po b/addons/decimal_precision/i18n/pt.po index e70e50fc0c6..b5c0316b219 100644 --- a/addons/decimal_precision/i18n/pt.po +++ b/addons/decimal_precision/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt_BR.po b/addons/decimal_precision/i18n/pt_BR.po index 4a180d701b8..02742015d43 100644 --- a/addons/decimal_precision/i18n/pt_BR.po +++ b/addons/decimal_precision/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ro.po b/addons/decimal_precision/i18n/ro.po index 83c5289372c..fbaf484797a 100644 --- a/addons/decimal_precision/i18n/ro.po +++ b/addons/decimal_precision/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ru.po b/addons/decimal_precision/i18n/ru.po index 951541473ca..b61de49dbdc 100644 --- a/addons/decimal_precision/i18n/ru.po +++ b/addons/decimal_precision/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sk.po b/addons/decimal_precision/i18n/sk.po index 06ea1cfd9cd..029dd35d1cd 100644 --- a/addons/decimal_precision/i18n/sk.po +++ b/addons/decimal_precision/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sl.po b/addons/decimal_precision/i18n/sl.po index 6a80f762b33..7f7bec9af29 100644 --- a/addons/decimal_precision/i18n/sl.po +++ b/addons/decimal_precision/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -26,7 +26,7 @@ msgstr "Števke" #: model:ir.actions.act_window,name:decimal_precision.action_decimal_precision_form #: model:ir.ui.menu,name:decimal_precision.menu_decimal_precision_form msgid "Decimal Accuracy" -msgstr "" +msgstr "Decimalna natančnost" #. module: decimal_precision #: field:decimal.precision,name:0 @@ -36,12 +36,12 @@ msgstr "Uporaba" #. module: decimal_precision #: sql_constraint:decimal.precision:0 msgid "Only one value can be defined for each given usage!" -msgstr "" +msgstr "Določena je lahko samo ena vrednost !" #. module: decimal_precision #: view:decimal.precision:0 msgid "Decimal Precision" -msgstr "" +msgstr "Decimalna natančnost" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision diff --git a/addons/decimal_precision/i18n/sr.po b/addons/decimal_precision/i18n/sr.po index 604514503b5..e551b08e3be 100644 --- a/addons/decimal_precision/i18n/sr.po +++ b/addons/decimal_precision/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr@latin.po b/addons/decimal_precision/i18n/sr@latin.po index 96d5ac1ab13..f53fab1088e 100644 --- a/addons/decimal_precision/i18n/sr@latin.po +++ b/addons/decimal_precision/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sv.po b/addons/decimal_precision/i18n/sv.po index c2fbd38a401..8b17d0c4921 100644 --- a/addons/decimal_precision/i18n/sv.po +++ b/addons/decimal_precision/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/tr.po b/addons/decimal_precision/i18n/tr.po index 4f6b3b1bc37..e5fb37b3221 100644 --- a/addons/decimal_precision/i18n/tr.po +++ b/addons/decimal_precision/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/vi.po b/addons/decimal_precision/i18n/vi.po index 2f974e3f83f..c03cecb8221 100644 --- a/addons/decimal_precision/i18n/vi.po +++ b/addons/decimal_precision/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_CN.po b/addons/decimal_precision/i18n/zh_CN.po index 3257dc79327..78e3f4c789c 100644 --- a/addons/decimal_precision/i18n/zh_CN.po +++ b/addons/decimal_precision/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_TW.po b/addons/decimal_precision/i18n/zh_TW.po index ba6bb3d619e..c1740fe359e 100644 --- a/addons/decimal_precision/i18n/zh_TW.po +++ b/addons/decimal_precision/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/security/ir.model.access.csv b/addons/decimal_precision/security/ir.model.access.csv index aa203eae141..d55da432c57 100644 --- a/addons/decimal_precision/security/ir.model.access.csv +++ b/addons/decimal_precision/security/ir.model.access.csv @@ -1,3 +1,4 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_decimal_precision_config,decimal.precision configuration,model_decimal_precision,base.group_system,1,1,1,1 access_decimal_precision_all,decimal.precision,model_decimal_precision,,1,0,0,0 +access_decimal_precision_test_all,decimal.precision.test,model_decimal_precision_test,,1,1,1,1 diff --git a/addons/decimal_precision/tests/__init__.py b/addons/decimal_precision/tests/__init__.py new file mode 100644 index 00000000000..feee24c8f15 --- /dev/null +++ b/addons/decimal_precision/tests/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +import test_qweb_float + +checks = [ + test_qweb_float +] diff --git a/addons/decimal_precision/tests/test_qweb_float.py b/addons/decimal_precision/tests/test_qweb_float.py new file mode 100644 index 00000000000..93334170f37 --- /dev/null +++ b/addons/decimal_precision/tests/test_qweb_float.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +from openerp.tests import common + +class TestFloatExport(common.TransactionCase): + def setUp(self): + super(TestFloatExport, self).setUp() + self.Model = self.registry('decimal.precision.test') + + def get_converter(self, name): + converter = self.registry('ir.qweb.field.float') + column = self.Model._all_columns[name].column + + return lambda value, options=None: converter.value_to_html( + self.cr, self.uid, value, column, options=options, context=None) + + def test_basic_float(self): + converter = self.get_converter('float') + self.assertEqual( + converter(42.0), + "42.0") + self.assertEqual( + converter(42.12345), + "42.12345") + + converter = self.get_converter('float_2') + self.assertEqual( + converter(42.0), + "42.00") + self.assertEqual( + converter(42.12345), + "42.12") + + converter = self.get_converter('float_4') + self.assertEqual( + converter(42.0), + '42.0000') + self.assertEqual( + converter(42.12345), + '42.1234') + + def test_precision_domain(self): + DP = self.registry('decimal.precision') + DP.create(self.cr, self.uid, { + 'name': 'A', + 'digits': 2, + }) + DP.create(self.cr, self.uid, { + 'name': 'B', + 'digits': 6, + }) + + converter = self.get_converter('float') + self.assertEqual( + converter(42.0, {'decimal_precision': 'A'}), + '42.00') + self.assertEqual( + converter(42.0, {'decimal_precision': 'B'}), + '42.000000') + + converter = self.get_converter('float_4') + self.assertEqual( + converter(42.12345, {'decimal_precision': 'A'}), + '42.12') + self.assertEqual( + converter(42.12345, {'decimal_precision': 'B'}), + '42.123450') diff --git a/addons/delivery/__openerp__.py b/addons/delivery/__openerp__.py index 0ea891bb6ae..1ee6bf413ec 100644 --- a/addons/delivery/__openerp__.py +++ b/addons/delivery/__openerp__.py @@ -32,7 +32,7 @@ You can define your own carrier and delivery grids for prices. When creating invoices from picking, OpenERP is able to add and compute the shipping line. """, 'author': 'OpenERP SA', - 'depends': ['sale', 'purchase', 'stock'], + 'depends': ['sale_stock'], 'data': [ 'security/ir.model.access.csv', 'delivery_report.xml', diff --git a/addons/delivery/delivery.py b/addons/delivery/delivery.py index c388b1dffaa..d4b697b26b6 100644 --- a/addons/delivery/delivery.py +++ b/addons/delivery/delivery.py @@ -110,11 +110,11 @@ class delivery_carrier(osv.osv): # not using advanced pricing per destination: override grid grid_id = grid_pool.search(cr, uid, [('carrier_id', '=', record.id)], context=context) - if grid_id and not (record.normal_price or record.free_if_more_than): grid_pool.unlink(cr, uid, grid_id, context=context) - if not (record.normal_price or record.free_if_more_than): + # Check that float, else 0.0 is False + if not (isinstance(record.normal_price,float) or record.free_if_more_than): continue if not grid_id: @@ -141,7 +141,7 @@ class delivery_carrier(osv.osv): 'list_price': 0.0, } grid_line_pool.create(cr, uid, line_data, context=context) - if record.normal_price: + if isinstance(record.normal_price,float): line_data = { 'grid_id': grid_id and grid_id[0], 'name': _('Default price'), @@ -192,7 +192,7 @@ class delivery_grid(osv.osv): weight = 0 volume = 0 for line in order.order_line: - if not line.product_id: + if not line.product_id or line.is_delivery: continue total += line.price_subtotal or 0.0 weight += (line.product_id.weight or 0.0) * line.product_uom_qty @@ -205,9 +205,8 @@ class delivery_grid(osv.osv): grid = self.browse(cr, uid, id, context=context) price = 0.0 ok = False - + price_dict = {'price': total, 'volume':volume, 'weight': weight, 'wv':volume*weight} for line in grid.line_ids: - price_dict = {'price': total, 'volume':volume, 'weight': weight, 'wv':volume*weight} test = eval(line.type+line.operator+str(line.max_value), price_dict) if test: if line.price_type=='variable': diff --git a/addons/delivery/delivery_demo.xml b/addons/delivery/delivery_demo.xml index 9c412b24957..f090947d57f 100644 --- a/addons/delivery/delivery_demo.xml +++ b/addons/delivery/delivery_demo.xml @@ -32,13 +32,15 @@ The Poste + 20 + Free delivery charges - 10 + 0 True 1000 diff --git a/addons/delivery/i18n/ar.po b/addons/delivery/i18n/ar.po index e381a633a77..1584ca2e1f3 100644 --- a/addons/delivery/i18n/ar.po +++ b/addons/delivery/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bg.po b/addons/delivery/i18n/bg.po index f2dbc5ddda8..cee1cdc9b09 100644 --- a/addons/delivery/i18n/bg.po +++ b/addons/delivery/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bs.po b/addons/delivery/i18n/bs.po index 6f67899e47b..9185c7fe457 100644 --- a/addons/delivery/i18n/bs.po +++ b/addons/delivery/i18n/bs.po @@ -13,51 +13,51 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 msgid "Order Ref." -msgstr "" +msgstr "Ref. narudžbe" #. module: delivery #: model:product.template,name:delivery.product_product_delivery_product_template msgid "Delivery by Poste" -msgstr "" +msgstr "Dostava poštom" #. module: delivery #: view:delivery.grid.line:0 msgid " in Function of " -msgstr "" +msgstr " u funkciji " #. module: delivery #: view:delivery.carrier:0 #: view:delivery.grid:0 msgid "Destination" -msgstr "" +msgstr "Odredište" #. module: delivery #: field:stock.move,weight_net:0 msgid "Net weight" -msgstr "" +msgstr "Neto težina" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid_line msgid "Delivery Grid Line" -msgstr "" +msgstr "Stavka isporuke" #. module: delivery #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Jedinica mjere" #. module: delivery #: view:delivery.carrier:0 #: view:delivery.grid:0 msgid "Delivery grids" -msgstr "" +msgstr "Dostavne mreže" #. module: delivery #: selection:delivery.grid.line,type:0 @@ -65,54 +65,56 @@ msgstr "" #: field:stock.picking,volume:0 #: field:stock.picking.out,volume:0 msgid "Volume" -msgstr "" +msgstr "Volumen" #. module: delivery #: view:delivery.carrier:0 msgid "Zip" -msgstr "" +msgstr "Poštanski broj" #. module: delivery #: field:delivery.grid,line_ids:0 msgid "Grid Line" -msgstr "" +msgstr "Linija mreže" #. module: delivery #: help:delivery.carrier,partner_id:0 msgid "The partner that is doing the delivery service." -msgstr "" +msgstr "Partner koji obavlja uslugu dostave." #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping msgid "Delivery order" -msgstr "" +msgstr "Otpremna narudžba" #. module: delivery #: code:addons/delivery/delivery.py:221 #, python-format msgid "No line matched this product or order in the chosen delivery grid." msgstr "" +"Nema linije koja se podudara sa ovim proizvodom ili narudžbom za odabranu " +"mrežu dostave." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 msgid "Picking to be invoiced" -msgstr "" +msgstr "Prikupljeni proizvodi koje će biti fakturisani" #. module: delivery #: field:delivery.carrier,pricelist_ids:0 msgid "Advanced Pricing" -msgstr "" +msgstr "Napredni sistem cijena" #. module: delivery #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." -msgstr "" +msgstr "Daje redosljed sekvenci kada prikazujete listu mreža isporuke." #. module: delivery #: view:delivery.grid:0 #: field:delivery.grid,country_ids:0 msgid "Countries" -msgstr "" +msgstr "Države" #. module: delivery #: model:ir.actions.act_window,help:delivery.action_delivery_grid_form @@ -131,99 +133,113 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite da kreirate listu cijena dostave za specifičnu " +"regiju.\n" +"

\n" +" Lista cijena dostave dozvoljava Vam da izračunate troškove " +"i\n" +" prodajnu cijenu dostave u zavisnosti od težine proizvoda\n" +" i drugih kriterijuma. Možete da definišete nekoliko " +"cjenovnih \n" +" lista za svaku metodu dostave: po državi ili zoni u " +"određenoj\n" +" državi definisanih po rasponu poštanskih brojeva.\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 msgid "Delivery Order :" -msgstr "" +msgstr "Narudžba dostave:" #. module: delivery #: field:delivery.grid.line,variable_factor:0 msgid "Variable Factor" -msgstr "" +msgstr "Varijabilni Faktor" #. module: delivery #: field:delivery.carrier,amount:0 msgid "Amount" -msgstr "" +msgstr "Iznos" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "" +msgstr "Dodaj u predračun" #. module: delivery #: selection:delivery.grid.line,price_type:0 msgid "Fixed" -msgstr "" +msgstr "Fiksni" #. module: delivery #: field:delivery.carrier,name:0 #: field:res.partner,property_delivery_carrier:0 #: field:sale.order,carrier_id:0 msgid "Delivery Method" -msgstr "" +msgstr "Način Dostave" #. module: delivery #: code:addons/delivery/delivery.py:221 #, python-format msgid "No price available!" -msgstr "" +msgstr "CIjene nisu dostupne!" #. module: delivery #: model:ir.model,name:delivery.model_stock_move msgid "Stock Move" -msgstr "" +msgstr "Kretanje zalihe" #. module: delivery #: field:stock.picking,carrier_tracking_ref:0 #: field:stock.picking.out,carrier_tracking_ref:0 msgid "Carrier Tracking Ref" -msgstr "" +msgstr "Ref. praćenja prevoznika" #. module: delivery #: field:stock.picking,weight_net:0 #: field:stock.picking.in,weight_net:0 #: field:stock.picking.out,weight_net:0 msgid "Net Weight" -msgstr "" +msgstr "Neto težina" #. module: delivery #: view:delivery.grid.line:0 msgid "Grid Lines" -msgstr "" +msgstr "Linije Mreže" #. module: delivery #: view:delivery.carrier:0 #: view:delivery.grid:0 msgid "Grid definition" -msgstr "" +msgstr "Definicija mreže" #. module: delivery #: code:addons/delivery/stock.py:90 #, python-format msgid "Warning!" -msgstr "" +msgstr "Upozorenje!" #. module: delivery #: field:delivery.grid.line,operator:0 msgid "Operator" -msgstr "" +msgstr "Operater" #. module: delivery #: model:ir.model,name:delivery.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: delivery #: model:ir.model,name:delivery.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Prodajna narudžba" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Narudžba dostave" #. module: delivery #: view:sale.order:0 @@ -231,31 +247,33 @@ msgid "" "If you don't 'Add in Quote', the exact price will be computed when invoicing " "based on delivery order(s)." msgstr "" +"Ako ne dodate na narudžbu, doslovna cijena će biti izračunata kada budete " +"fakturisali bazirano na nalozima dostave." #. module: delivery #: field:delivery.carrier,partner_id:0 msgid "Transport Company" -msgstr "" +msgstr "Prevoznik" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid msgid "Delivery Grid" -msgstr "" +msgstr "Dostavna Mreža" #. module: delivery #: report:sale.shipping:0 msgid "Invoiced to" -msgstr "" +msgstr "Fakturirano na" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Lista prikupljanja proizvoda" #. module: delivery #: field:delivery.grid.line,name:0 msgid "Name" -msgstr "" +msgstr "Naziv" #. module: delivery #: help:delivery.carrier,free_if_more_than:0 @@ -263,6 +281,8 @@ msgid "" "If the order is more expensive than a certain amount, the customer can " "benefit from a free shipping" msgstr "" +"Ako je narudžba skuplja od određenog iznosa, kupac može profitirati " +"besplatnom dostavom." #. module: delivery #: help:delivery.carrier,amount:0 @@ -270,16 +290,17 @@ msgid "" "Amount of the order to benefit from a free shipping, expressed in the " "company currency" msgstr "" +"Iznos narudžbe da bi dostava bila besplatna, izražena u valuti kompanije" #. module: delivery #: field:delivery.carrier,free_if_more_than:0 msgid "Free If Order Total Amount Is More Than" -msgstr "" +msgstr "Besplatno ako je iznos narudžbe veći od" #. module: delivery #: field:delivery.grid.line,grid_id:0 msgid "Grid" -msgstr "" +msgstr "Meža" #. module: delivery #: help:delivery.grid,active:0 @@ -287,38 +308,40 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "grid without removing it." msgstr "" +"Ako su aktivna polja postavljena na netačno, dozvoliti će Vam da sakrijete " +"mrežu dostave bez da je uklanjate." #. module: delivery #: field:delivery.grid,zip_to:0 msgid "To Zip" -msgstr "" +msgstr "Na Pošt. Broj" #. module: delivery #: code:addons/delivery/delivery.py:147 #, python-format msgid "Default price" -msgstr "" +msgstr "Zadana cijena" #. module: delivery #: field:delivery.carrier,normal_price:0 msgid "Normal Price" -msgstr "" +msgstr "Normalna cijena" #. module: delivery #: report:sale.shipping:0 msgid "Order Date" -msgstr "" +msgstr "Datum narudžbe" #. module: delivery #: field:delivery.grid,name:0 msgid "Grid Name" -msgstr "" +msgstr "Naziv Mreže" #. module: delivery #: field:stock.picking,number_of_packages:0 #: field:stock.picking.out,number_of_packages:0 msgid "Number of Packages" -msgstr "" +msgstr "Broj paketa" #. module: delivery #: selection:delivery.grid.line,type:0 @@ -331,7 +354,7 @@ msgstr "" #: field:stock.picking.in,weight:0 #: field:stock.picking.out,weight:0 msgid "Weight" -msgstr "" +msgstr "Težina" #. module: delivery #: help:delivery.carrier,use_detailed_pricelist:0 @@ -339,71 +362,75 @@ msgid "" "Check this box if you want to manage delivery prices that depends on the " "destination, the weight, the total of the order, etc." msgstr "" +"Zakačite ovu kućicu ako želite da upravljate cijenama dostave koje zavise od " +"destinacije, težine, ukupne vrijednosti narudžbe, itd." #. module: delivery #: help:delivery.carrier,normal_price:0 msgid "" "Keep empty if the pricing depends on the advanced pricing per destination" msgstr "" +"Ostavite prazno ako cjena zavisi od naprednih postavki cijena po destinaciji" #. module: delivery #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid available !" -msgstr "" +msgstr "Mreža nije dostupna !" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid ">=" -msgstr "" +msgstr ">=" #. module: delivery #: code:addons/delivery/sale.py:57 #, python-format msgid "Order not in draft state !" -msgstr "" +msgstr "Nalog nije u pripremi !" #. module: delivery #: report:sale.shipping:0 msgid "Lot" -msgstr "" +msgstr "Lot" #. module: delivery #: field:delivery.carrier,active:0 #: field:delivery.grid,active:0 msgid "Active" -msgstr "" +msgstr "Aktivan" #. module: delivery #: report:sale.shipping:0 msgid "Shipping Date" -msgstr "" +msgstr "Datum Otpreme" #. module: delivery #: field:delivery.carrier,product_id:0 msgid "Delivery Product" -msgstr "" +msgstr "Proizvod dostave" #. module: delivery #: view:delivery.grid.line:0 msgid "Condition" -msgstr "" +msgstr "Uslov" #. module: delivery #: field:delivery.grid.line,standard_price:0 msgid "Cost Price" -msgstr "" +msgstr "Cijena koštanja" #. module: delivery #: selection:delivery.grid.line,price_type:0 #: field:delivery.grid.line,type:0 msgid "Variable" -msgstr "" +msgstr "Promjenljiva" #. module: delivery #: help:res.partner,property_delivery_carrier:0 msgid "This delivery method will be used when invoicing from picking." msgstr "" +"Metoda dostave će se koristiti kada se fakturiše iz prikupljanja proizvoda." #. module: delivery #: model:ir.actions.act_window,help:delivery.action_delivery_carrier_form @@ -425,53 +452,72 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite da definišete novu metodu dostave. \n" +"

\n" +" Svaki prevoznik (npr.: UPS) može da ima nekoliko metoda " +"dostave \n" +" (npr.: UPS Express, UPS Standard) sa skupom cjenovnih " +"pravila\n" +" pridruženih svakoj metodi.\n" +"

\n" +" Ove metode Vam dozvoljavaju da automatski izračunate cijenu " +"dostave\n" +" u odnosu na vaše postavke; na prodajnim narudžbama " +"(baziranim na\n" +" predračunima) ili fakturama (baziranim na nalozima " +"dostave).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 msgid "Maximum Value" -msgstr "" +msgstr "Maksimalna vrijednost" #. module: delivery #: report:sale.shipping:0 msgid "Quantity" -msgstr "" +msgstr "Količina" #. module: delivery #: field:delivery.grid,zip_from:0 msgid "Start Zip" -msgstr "" +msgstr "Početni poštanski broj" #. module: delivery #: help:sale.order,carrier_id:0 msgid "" "Complete this field if you plan to invoice the shipping based on picking." msgstr "" +"Dovršite ovo polje ako planirate da fakturišete isporuku bazirano na " +"prikupljanju proizvoda." #. module: delivery #: code:addons/delivery/delivery.py:136 #, python-format msgid "Free if more than %.2f" -msgstr "" +msgstr "Besplatno za više od %.2f" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Pošiljke u dolasku" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid "<=" -msgstr "" +msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Jedinica mjere za težinu" #. module: delivery #: report:sale.shipping:0 msgid "Description" -msgstr "" +msgstr "Opis" #. module: delivery #: help:delivery.carrier,active:0 @@ -479,52 +525,54 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "carrier without removing it." msgstr "" +"Ako je aktivno polje postavljeno na netačno, dozvoliti će Vam da sakrijete " +"prevoznika bez da ga uklonite." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_delivery_grid_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_grid_form msgid "Delivery Pricelist" -msgstr "" +msgstr "Cjenovnik dostave" #. module: delivery #: field:delivery.carrier,price:0 #: selection:delivery.grid.line,type:0 #: selection:delivery.grid.line,variable_factor:0 msgid "Price" -msgstr "" +msgstr "Cijena" #. module: delivery #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid matching for this carrier !" -msgstr "" +msgstr "Nema mreže koja odgovara ovom prevozniku !" #. module: delivery #: model:ir.ui.menu,name:delivery.menu_delivery msgid "Delivery" -msgstr "" +msgstr "Dostava" #. module: delivery #: selection:delivery.grid.line,type:0 #: selection:delivery.grid.line,variable_factor:0 msgid "Weight * Volume" -msgstr "" +msgstr "Težina * Zapremina" #. module: delivery #: code:addons/delivery/stock.py:91 #, python-format msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "" +msgstr "Prevoznik %s (id: %d) nema mrežu dostave!" #. module: delivery #: view:delivery.carrier:0 msgid "Pricing Information" -msgstr "" +msgstr "Informacije o cijenama" #. module: delivery #: field:delivery.carrier,use_detailed_pricelist:0 msgid "Advanced Pricing per Destination" -msgstr "" +msgstr "Napredne postavke cijena po destinaciji" #. module: delivery #: view:delivery.carrier:0 @@ -534,56 +582,56 @@ msgstr "" #: field:stock.picking,carrier_id:0 #: field:stock.picking.out,carrier_id:0 msgid "Carrier" -msgstr "" +msgstr "Prevoznik" #. module: delivery #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Metode dostave" #. module: delivery #: code:addons/delivery/sale.py:57 #, python-format msgid "The order state have to be draft to add delivery lines." -msgstr "" +msgstr "Status narudžbe mora biti u pripremi da bi ste dodali stavke." #. module: delivery #: field:delivery.carrier,grids_id:0 msgid "Delivery Grids" -msgstr "" +msgstr "Dostavne Mreže" #. module: delivery #: field:delivery.grid,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sekvenca" #. module: delivery #: field:delivery.grid.line,list_price:0 msgid "Sale Price" -msgstr "" +msgstr "Prodajne cijene" #. module: delivery #: view:stock.picking.out:0 msgid "Print Delivery Order" -msgstr "" +msgstr "Štampaj narudžbu dostave" #. module: delivery #: view:delivery.grid:0 #: field:delivery.grid,state_ids:0 msgid "States" -msgstr "" +msgstr "Status" #. module: delivery #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "Jedinica mjere je JM težine." #. module: delivery #: field:delivery.grid.line,price_type:0 msgid "Price Type" -msgstr "" +msgstr "Tip cijene" #~ msgid "Sales & Purchases" #~ msgstr "Prodaja i nabava" diff --git a/addons/delivery/i18n/ca.po b/addons/delivery/i18n/ca.po index 8f8c01c8c84..bece057bb8e 100644 --- a/addons/delivery/i18n/ca.po +++ b/addons/delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/cs.po b/addons/delivery/i18n/cs.po index 910a4bc167c..5cb5708e609 100644 --- a/addons/delivery/i18n/cs.po +++ b/addons/delivery/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: delivery @@ -193,7 +193,7 @@ msgstr "Pohyb zásob" #: field:stock.picking,carrier_tracking_ref:0 #: field:stock.picking.out,carrier_tracking_ref:0 msgid "Carrier Tracking Ref" -msgstr "Odkaz sledování přepravce" +msgstr "Sledovací číslo přepravce" #. module: delivery #: field:stock.picking,weight_net:0 @@ -232,7 +232,7 @@ msgstr "Partner" #. module: delivery #: model:ir.model,name:delivery.model_sale_order msgid "Sales Order" -msgstr "Potvrzení objednávky" +msgstr "Prodejní objednávka" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out diff --git a/addons/delivery/i18n/da.po b/addons/delivery/i18n/da.po index d2519419678..b1a52afbdbc 100644 --- a/addons/delivery/i18n/da.po +++ b/addons/delivery/i18n/da.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 msgid "Order Ref." -msgstr "" +msgstr "Ordre ref." #. module: delivery #: model:product.template,name:delivery.product_product_delivery_product_template @@ -52,7 +52,7 @@ msgstr "" #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Enhed" #. module: delivery #: view:delivery.carrier:0 @@ -66,12 +66,12 @@ msgstr "" #: field:stock.picking,volume:0 #: field:stock.picking.out,volume:0 msgid "Volume" -msgstr "" +msgstr "Volumen" #. module: delivery #: view:delivery.carrier:0 msgid "Zip" -msgstr "" +msgstr "Postnummer" #. module: delivery #: field:delivery.grid,line_ids:0 @@ -81,12 +81,12 @@ msgstr "" #. module: delivery #: help:delivery.carrier,partner_id:0 msgid "The partner that is doing the delivery service." -msgstr "" +msgstr "Partner der står for leveringen." #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping msgid "Delivery order" -msgstr "" +msgstr "Leverings ordre" #. module: delivery #: code:addons/delivery/delivery.py:221 @@ -97,12 +97,12 @@ msgstr "" #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 msgid "Picking to be invoiced" -msgstr "" +msgstr "Pluk til fakturering" #. module: delivery #: field:delivery.carrier,pricelist_ids:0 msgid "Advanced Pricing" -msgstr "" +msgstr "Avanceret prissætning" #. module: delivery #: help:delivery.grid,sequence:0 @@ -136,51 +136,51 @@ msgstr "" #. module: delivery #: report:sale.shipping:0 msgid "Delivery Order :" -msgstr "" +msgstr "Leverings ordre :" #. module: delivery #: field:delivery.grid.line,variable_factor:0 msgid "Variable Factor" -msgstr "" +msgstr "Variabel faktor" #. module: delivery #: field:delivery.carrier,amount:0 msgid "Amount" -msgstr "" +msgstr "Mængde/beløb" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "" +msgstr "Tilføj i tilbud" #. module: delivery #: selection:delivery.grid.line,price_type:0 msgid "Fixed" -msgstr "" +msgstr "Fast" #. module: delivery #: field:delivery.carrier,name:0 #: field:res.partner,property_delivery_carrier:0 #: field:sale.order,carrier_id:0 msgid "Delivery Method" -msgstr "" +msgstr "Leveringsmåde" #. module: delivery #: code:addons/delivery/delivery.py:221 #, python-format msgid "No price available!" -msgstr "" +msgstr "Ingen pris findes !" #. module: delivery #: model:ir.model,name:delivery.model_stock_move msgid "Stock Move" -msgstr "" +msgstr "Lager flytning" #. module: delivery #: field:stock.picking,carrier_tracking_ref:0 #: field:stock.picking.out,carrier_tracking_ref:0 msgid "Carrier Tracking Ref" -msgstr "" +msgstr "Transportør sporings reference" #. module: delivery #: field:stock.picking,weight_net:0 @@ -204,17 +204,17 @@ msgstr "" #: code:addons/delivery/stock.py:90 #, python-format msgid "Warning!" -msgstr "" +msgstr "Advarsel!" #. module: delivery #: field:delivery.grid.line,operator:0 msgid "Operator" -msgstr "" +msgstr "Operatør" #. module: delivery #: model:ir.model,name:delivery.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: delivery #: model:ir.model,name:delivery.model_sale_order @@ -224,7 +224,7 @@ msgstr "Salgsordre" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Leverings-ordrer" #. module: delivery #: view:sale.order:0 @@ -236,7 +236,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,partner_id:0 msgid "Transport Company" -msgstr "" +msgstr "Transport firma" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid @@ -246,12 +246,12 @@ msgstr "" #. module: delivery #: report:sale.shipping:0 msgid "Invoiced to" -msgstr "" +msgstr "Faktureret til" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Plukliste" #. module: delivery #: field:delivery.grid.line,name:0 @@ -263,19 +263,19 @@ msgstr "Navn" msgid "" "If the order is more expensive than a certain amount, the customer can " "benefit from a free shipping" -msgstr "" +msgstr "Hvis ordren overstiger et vist beløb, kan kunden få fri levering" #. module: delivery #: help:delivery.carrier,amount:0 msgid "" "Amount of the order to benefit from a free shipping, expressed in the " "company currency" -msgstr "" +msgstr "Ordrebeløb for at få fri levering, angivet i firmaets valuta" #. module: delivery #: field:delivery.carrier,free_if_more_than:0 msgid "Free If Order Total Amount Is More Than" -msgstr "" +msgstr "Fri hvis ordre total er mere end" #. module: delivery #: field:delivery.grid.line,grid_id:0 @@ -298,12 +298,12 @@ msgstr "" #: code:addons/delivery/delivery.py:147 #, python-format msgid "Default price" -msgstr "" +msgstr "Standard pris" #. module: delivery #: field:delivery.carrier,normal_price:0 msgid "Normal Price" -msgstr "" +msgstr "Normal Pris" #. module: delivery #: report:sale.shipping:0 @@ -319,7 +319,7 @@ msgstr "" #: field:stock.picking,number_of_packages:0 #: field:stock.picking.out,number_of_packages:0 msgid "Number of Packages" -msgstr "" +msgstr "Antal pakker" #. module: delivery #: selection:delivery.grid.line,type:0 @@ -356,24 +356,24 @@ msgstr "" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid ">=" -msgstr "" +msgstr ">=" #. module: delivery #: code:addons/delivery/sale.py:57 #, python-format msgid "Order not in draft state !" -msgstr "" +msgstr "Ordren er ikke i kladde status !" #. module: delivery #: report:sale.shipping:0 msgid "Lot" -msgstr "" +msgstr "Lot" #. module: delivery #: field:delivery.carrier,active:0 #: field:delivery.grid,active:0 msgid "Active" -msgstr "" +msgstr "Aktiv" #. module: delivery #: report:sale.shipping:0 @@ -388,7 +388,7 @@ msgstr "" #. module: delivery #: view:delivery.grid.line:0 msgid "Condition" -msgstr "" +msgstr "Betingelse" #. module: delivery #: field:delivery.grid.line,standard_price:0 @@ -399,12 +399,12 @@ msgstr "Kost pris" #: selection:delivery.grid.line,price_type:0 #: field:delivery.grid.line,type:0 msgid "Variable" -msgstr "" +msgstr "variabel" #. module: delivery #: help:res.partner,property_delivery_carrier:0 msgid "This delivery method will be used when invoicing from picking." -msgstr "" +msgstr "Leveringsmåden bruges ved fakturering fra pluk." #. module: delivery #: model:ir.actions.act_window,help:delivery.action_delivery_carrier_form @@ -430,7 +430,7 @@ msgstr "" #. module: delivery #: field:delivery.grid.line,max_value:0 msgid "Maximum Value" -msgstr "" +msgstr "Maksimal værdi" #. module: delivery #: report:sale.shipping:0 @@ -446,28 +446,28 @@ msgstr "" #: help:sale.order,carrier_id:0 msgid "" "Complete this field if you plan to invoice the shipping based on picking." -msgstr "" +msgstr "Udfyld dette felt hvis du vil fakturere transport baseret på pluk." #. module: delivery #: code:addons/delivery/delivery.py:136 #, python-format msgid "Free if more than %.2f" -msgstr "" +msgstr "Gratis hvis større end %.2f" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Indkommende leverancer" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid "<=" -msgstr "" +msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Vægt enhed" #. module: delivery #: report:sale.shipping:0 @@ -485,7 +485,7 @@ msgstr "" #: model:ir.actions.act_window,name:delivery.action_delivery_grid_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_grid_form msgid "Delivery Pricelist" -msgstr "" +msgstr "Leverings prisliste" #. module: delivery #: field:delivery.carrier,price:0 @@ -509,7 +509,7 @@ msgstr "Levering" #: selection:delivery.grid.line,type:0 #: selection:delivery.grid.line,variable_factor:0 msgid "Weight * Volume" -msgstr "" +msgstr "Vægt * volumen" #. module: delivery #: code:addons/delivery/stock.py:91 @@ -520,12 +520,12 @@ msgstr "" #. module: delivery #: view:delivery.carrier:0 msgid "Pricing Information" -msgstr "" +msgstr "Pris information" #. module: delivery #: field:delivery.carrier,use_detailed_pricelist:0 msgid "Advanced Pricing per Destination" -msgstr "" +msgstr "Avanceret prisstyring pr. destination" #. module: delivery #: view:delivery.carrier:0 @@ -535,19 +535,20 @@ msgstr "" #: field:stock.picking,carrier_id:0 #: field:stock.picking.out,carrier_id:0 msgid "Carrier" -msgstr "" +msgstr "Transportør" #. module: delivery #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Leveringsmåder" #. module: delivery #: code:addons/delivery/sale.py:57 #, python-format msgid "The order state have to be draft to add delivery lines." msgstr "" +"Ordren skal være i kladde-status for at man kan tilføje leverings-linier." #. module: delivery #: field:delivery.carrier,grids_id:0 @@ -567,7 +568,7 @@ msgstr "Salgspris" #. module: delivery #: view:stock.picking.out:0 msgid "Print Delivery Order" -msgstr "" +msgstr "Udskriv leverings ordre" #. module: delivery #: view:delivery.grid:0 @@ -579,12 +580,12 @@ msgstr "" #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "Enhed er enheden for vægt." #. module: delivery #: field:delivery.grid.line,price_type:0 msgid "Price Type" -msgstr "" +msgstr "Pris type" #, python-format #~ msgid "No price available !" diff --git a/addons/delivery/i18n/de.po b/addons/delivery/i18n/de.po index 97c83c0e758..b7ccb3fdcc9 100644 --- a/addons/delivery/i18n/de.po +++ b/addons/delivery/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/el.po b/addons/delivery/i18n/el.po index a592a21ae07..1eee61614c9 100644 --- a/addons/delivery/i18n/el.po +++ b/addons/delivery/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index c23a79f387e..8db9a20d2f9 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index ac155506c1d..099dc205326 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_CR.po b/addons/delivery/i18n/es_CR.po index e38d243cefa..d8d1a521c54 100644 --- a/addons/delivery/i18n/es_CR.po +++ b/addons/delivery/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: delivery diff --git a/addons/delivery/i18n/es_EC.po b/addons/delivery/i18n/es_EC.po index f457bc0f328..a2719d13537 100644 --- a/addons/delivery/i18n/es_EC.po +++ b/addons/delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_MX.po b/addons/delivery/i18n/es_MX.po index ffff1bd9397..273d015a9db 100644 --- a/addons/delivery/i18n/es_MX.po +++ b/addons/delivery/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_PY.po b/addons/delivery/i18n/es_PY.po index c2c4a94cd79..6d6d2e331ef 100644 --- a/addons/delivery/i18n/es_PY.po +++ b/addons/delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/et.po b/addons/delivery/i18n/et.po index 020766d1e1c..1040091d8ae 100644 --- a/addons/delivery/i18n/et.po +++ b/addons/delivery/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fi.po b/addons/delivery/i18n/fi.po index 783a66d277a..5592d84ebe9 100644 --- a/addons/delivery/i18n/fi.po +++ b/addons/delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 @@ -30,7 +30,7 @@ msgstr "Toimitus postilla" #. module: delivery #: view:delivery.grid.line:0 msgid " in Function of " -msgstr "" +msgstr " toiminto " #. module: delivery #: view:delivery.carrier:0 @@ -46,13 +46,13 @@ msgstr "Nettopaino" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid_line msgid "Delivery Grid Line" -msgstr "Toimitus ruudukko" +msgstr "Toimitustaulukon rivi" #. module: delivery #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Yksikkö" #. module: delivery #: view:delivery.carrier:0 @@ -71,17 +71,17 @@ msgstr "Tilavuus" #. module: delivery #: view:delivery.carrier:0 msgid "Zip" -msgstr "" +msgstr "Postinumero" #. module: delivery #: field:delivery.grid,line_ids:0 msgid "Grid Line" -msgstr "Taulukkorivi" +msgstr "Taulukon rivi" #. module: delivery #: help:delivery.carrier,partner_id:0 msgid "The partner that is doing the delivery service." -msgstr "Kumppani joka toteuttaa toimituspalvelun" +msgstr "Kumppani joka toteuttaa huolintapalvelun" #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping @@ -93,6 +93,7 @@ msgstr "Toimitustilaus" #, python-format msgid "No line matched this product or order in the chosen delivery grid." msgstr "" +"Valitun toimitustaulukon yksikään rivi ei vastaa tätä tuotetta tai tilausta." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 @@ -102,12 +103,12 @@ msgstr "Laskutettava keräily" #. module: delivery #: field:delivery.carrier,pricelist_ids:0 msgid "Advanced Pricing" -msgstr "Kehittynyt hinnoittelu" +msgstr "Edistyksellinen hinnoittelu" #. module: delivery #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." -msgstr "Antaa järjestyksen näytettäessä luetteloa toimitusruudukosta" +msgstr "Antaa järjestyksen näytettäessä luetteloa toimitustaulukosta." #. module: delivery #: view:delivery.grid:0 @@ -132,16 +133,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi toimitushinnastoa tietylle alueelle.\n" +"

\n" +" Toimitushinnasto sallii kustannusten laskennan ja\n" +" toimituksen myyntihinnoittelun perustuen tuotteiden \n" +" painoon ja muihin kriteereihin. Voit luoda useita hinnastoja " +"\n" +" kullekin menetelmälle: maittain, alueittain tietyyn maahan\n" +" postinumeroittain ryhmiteltynä.\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 msgid "Delivery Order :" -msgstr "Toimitusjärjestys :" +msgstr "Toimitustilaus :" #. module: delivery #: field:delivery.grid.line,variable_factor:0 msgid "Variable Factor" -msgstr "Vaihteleva kerroin" +msgstr "Muunnoskerroin" #. module: delivery #: field:delivery.carrier,amount:0 @@ -151,7 +163,7 @@ msgstr "Määrä" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "" +msgstr "Lisäys tarjoukseen" #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -180,7 +192,7 @@ msgstr "Varastosiirto" #: field:stock.picking,carrier_tracking_ref:0 #: field:stock.picking.out,carrier_tracking_ref:0 msgid "Carrier Tracking Ref" -msgstr "Kuljetusyhtiön seurantakoodi" +msgstr "Huolitsijan seurantakoodi" #. module: delivery #: field:stock.picking,weight_net:0 @@ -204,7 +216,7 @@ msgstr "Taulukon määrittely" #: code:addons/delivery/stock.py:90 #, python-format msgid "Warning!" -msgstr "" +msgstr "Varoitus!" #. module: delivery #: field:delivery.grid.line,operator:0 @@ -224,7 +236,7 @@ msgstr "Myyntitilaus" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "Toimitustilaukset" #. module: delivery #: view:sale.order:0 @@ -232,6 +244,8 @@ msgid "" "If you don't 'Add in Quote', the exact price will be computed when invoicing " "based on delivery order(s)." msgstr "" +"Jos et käytä \"Lisäys tarjoukseen\" -toimintoa, tarkka hinta lasketaan kun " +"laskutetaan toimitustilauksia." #. module: delivery #: field:delivery.carrier,partner_id:0 @@ -251,7 +265,7 @@ msgstr "Laskutuksen kohde" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking msgid "Picking List" -msgstr "Keräilylista" +msgstr "Keräilyluettelo" #. module: delivery #: field:delivery.grid.line,name:0 @@ -265,7 +279,7 @@ msgid "" "benefit from a free shipping" msgstr "" "Jos tilaus on arvokkaampi kuin tietty määrä, asiakas hyötyy ilmaisesta " -"toimituksesta" +"toimituksesta." #. module: delivery #: help:delivery.carrier,amount:0 @@ -278,7 +292,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,free_if_more_than:0 msgid "Free If Order Total Amount Is More Than" -msgstr "" +msgstr "Ilmainen jos tilauksen kokonaisarvo on enemmän kuin" #. module: delivery #: field:delivery.grid.line,grid_id:0 @@ -291,13 +305,13 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "grid without removing it." msgstr "" -"Jos aktiivisen kentän tila on epätosi (false), voit piilottaa jakeluruudukon " -"poistamatta sitä." +"Jos aktiivisen kentän tilaksi on asetettu epätosi, voit piilottaa " +"toimitustaulukon poistamatta sitä." #. module: delivery #: field:delivery.grid,zip_to:0 msgid "To Zip" -msgstr "Kohde postinumero" +msgstr "Kohteen postinumero" #. module: delivery #: code:addons/delivery/delivery.py:147 @@ -313,7 +327,7 @@ msgstr "Normaalihinta" #. module: delivery #: report:sale.shipping:0 msgid "Order Date" -msgstr "Tilauksen päivämäärä" +msgstr "Tilauspäivä" #. module: delivery #: field:delivery.grid,name:0 @@ -345,22 +359,22 @@ msgid "" "Check this box if you want to manage delivery prices that depends on the " "destination, the weight, the total of the order, etc." msgstr "" -"Valitse tämä ruutu jos haluat hallita toimitushintoja, jotka riippuvat " -"kohteesta, painosta ja tilauksen summasta yms." +"Valitse tämä valintaruutu, jos haluat hallita toimitushintoja. Hinnat voivat " +"riippua kohteesta, painosta ja tilauksen summasta yms." #. module: delivery #: help:delivery.carrier,normal_price:0 msgid "" "Keep empty if the pricing depends on the advanced pricing per destination" msgstr "" -"Jätä tyhjäksi jos hinnoittelu riippuu kohdekohtaisesta kehittyneestä " +"Jätä tyhjäksi jos hinnoittelu riippuu kohdekohtaisesta edistyksellisestä " "hinnoittelusta" #. module: delivery #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid available !" -msgstr "Ruudukkoa ei saatavilla !" +msgstr "Taulukkoa ei ole saatavilla !" #. module: delivery #: selection:delivery.grid.line,operator:0 @@ -371,7 +385,7 @@ msgstr ">=" #: code:addons/delivery/sale.py:57 #, python-format msgid "Order not in draft state !" -msgstr "Tilaus ei ole luonnostilassa!" +msgstr "Tila ei ole tilausehdotus!" #. module: delivery #: report:sale.shipping:0 @@ -387,12 +401,12 @@ msgstr "Aktiivinen" #. module: delivery #: report:sale.shipping:0 msgid "Shipping Date" -msgstr "Toimituspäivä" +msgstr "Lähetyspäivä" #. module: delivery #: field:delivery.carrier,product_id:0 msgid "Delivery Product" -msgstr "Kuljetustuote" +msgstr "Toimitustuote" #. module: delivery #: view:delivery.grid.line:0 @@ -435,6 +449,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa määritelläksesi uuden toimitustavan. \n" +"

\n" +" Jokaisella huolintaliikkeellä voi olla useita " +"logistiikkapalveluita, \n" +" joiden hinnoittelusääntöjen joukko on kytketty kuhunkin " +"toimitustapaan.\n" +"

\n" +" Hinnoittelutavat sallivat toimitushinnan automaattisen " +"laskennan\n" +" perustuen annettuihin sääntöihin: Myyntitilauksilla " +"perustuen tarjouksiin\n" +" tai laskulla perustuen toimitustilauksiin.\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -449,14 +478,14 @@ msgstr "Määrä" #. module: delivery #: field:delivery.grid,zip_from:0 msgid "Start Zip" -msgstr "Lähtö postinumero" +msgstr "Alku pnro" #. module: delivery #: help:sale.order,carrier_id:0 msgid "" "Complete this field if you plan to invoice the shipping based on picking." msgstr "" -"Täytä tämä kenttä jos suunnittelet laskuttavasi toimituksen keräilyn " +"Täytä tämä kenttä, jos suunnittelet laskuttavasi toimituksen keräilyn " "perusteella." #. module: delivery @@ -468,7 +497,7 @@ msgstr "Ilmainen jos enemmän kuin %.2f" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Vastaanotot" #. module: delivery #: selection:delivery.grid.line,operator:0 @@ -478,7 +507,7 @@ msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Painoyksikkö" #. module: delivery #: report:sale.shipping:0 @@ -491,8 +520,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "carrier without removing it." msgstr "" -"Jos aktiivisen kentän tila on epätosi (false), voit piilottaa jakelijan " -"poistamatta sitä." +"Jos aktiivisen kentän tila on epätosi, voit piilottaa toimituksen " +"huolitsijan poistamatta tätä." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_delivery_grid_form @@ -511,7 +540,7 @@ msgstr "Hinta" #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid matching for this carrier !" -msgstr "Kuljetusliikkeen taulukossa ei ole lähetystä vastaavia kohtia!" +msgstr "Tälle huolitsijalle ei ole määritelty kuljetustaulukkoa !" #. module: delivery #: model:ir.ui.menu,name:delivery.menu_delivery @@ -528,17 +557,17 @@ msgstr "Paino * Tilavuus" #: code:addons/delivery/stock.py:91 #, python-format msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "Kuljetusliikkeellä %s (tunnus: %d) ei ole taulukkoa kuljetuksille!" +msgstr "Huolitsijalla %s (tunnus: %d) ei ole kuljetustaulukkoa!" #. module: delivery #: view:delivery.carrier:0 msgid "Pricing Information" -msgstr "Hinnoittelun tiedot" +msgstr "Hinnoittelutiedot" #. module: delivery #: field:delivery.carrier,use_detailed_pricelist:0 msgid "Advanced Pricing per Destination" -msgstr "Kehittynyt hinnoittelu kohteen mukaan" +msgstr "Edistyksellinen hinnoittelu kohteen mukaan" #. module: delivery #: view:delivery.carrier:0 @@ -548,20 +577,19 @@ msgstr "Kehittynyt hinnoittelu kohteen mukaan" #: field:stock.picking,carrier_id:0 #: field:stock.picking.out,carrier_id:0 msgid "Carrier" -msgstr "Kuljetusliike" +msgstr "Huolitsija" #. module: delivery #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Toimitustavat" #. module: delivery #: code:addons/delivery/sale.py:57 #, python-format msgid "The order state have to be draft to add delivery lines." -msgstr "" -"Tilauksen tilan täytyy olla luonnos jos haluat lisätä toimitusrivejä." +msgstr "Vain tilausehdotuksille voi lisätä tilausrivejä." #. module: delivery #: field:delivery.carrier,grids_id:0 @@ -581,19 +609,19 @@ msgstr "Myyntihinta" #. module: delivery #: view:stock.picking.out:0 msgid "Print Delivery Order" -msgstr "" +msgstr "Tulosta toimitustilaus" #. module: delivery #: view:delivery.grid:0 #: field:delivery.grid,state_ids:0 msgid "States" -msgstr "Osavaltiot" +msgstr "Valtiot" #. module: delivery #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "Yksikkö (Yksikkö) on painoyksikkö" #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index cf14a586344..d62ea4602ce 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "XML non valide pour l'architecture de la vue !" diff --git a/addons/delivery/i18n/gl.po b/addons/delivery/i18n/gl.po index c550af9b781..a2eca68e0bc 100644 --- a/addons/delivery/i18n/gl.po +++ b/addons/delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hi.po b/addons/delivery/i18n/hi.po index 1c6073f8a11..c9eaefe0115 100644 --- a/addons/delivery/i18n/hi.po +++ b/addons/delivery/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index d3120f37dc9..5c8d1ebbecb 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: hr\n" #. module: delivery @@ -133,6 +133,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje cjenika dostave za određenu regiju.\n" +"

\n" +" Cjenik dostave omogućava izračun nabavne i prodajne cijene\n" +" dostave sukladno težini proizvoda i ostalim kriterijima.\n" +" Možete definirati nekoliko cjenika za svaku vrstu dostave:\n" +" za državu ili regiju u određenoj državi\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 @@ -170,12 +179,12 @@ msgstr "Način Dostave" #: code:addons/delivery/delivery.py:221 #, python-format msgid "No price available!" -msgstr "" +msgstr "Cijena nije dostupna !" #. module: delivery #: model:ir.model,name:delivery.model_stock_move msgid "Stock Move" -msgstr "" +msgstr "Skladišni prijenos" #. module: delivery #: field:stock.picking,carrier_tracking_ref:0 @@ -237,7 +246,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,partner_id:0 msgid "Transport Company" -msgstr "" +msgstr "Dostavljačka tvrtka" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid @@ -247,12 +256,12 @@ msgstr "Dostavna Mreža" #. module: delivery #: report:sale.shipping:0 msgid "Invoiced to" -msgstr "" +msgstr "Fakturirano na" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Skladišni dokument" #. module: delivery #: field:delivery.grid.line,name:0 @@ -299,12 +308,12 @@ msgstr "Na Pošt. Broj" #: code:addons/delivery/delivery.py:147 #, python-format msgid "Default price" -msgstr "" +msgstr "Predefinirana cijena" #. module: delivery #: field:delivery.carrier,normal_price:0 msgid "Normal Price" -msgstr "" +msgstr "Standardna cijena" #. module: delivery #: report:sale.shipping:0 @@ -379,7 +388,7 @@ msgstr "Aktivno" #. module: delivery #: report:sale.shipping:0 msgid "Shipping Date" -msgstr "" +msgstr "Datum Otpreme" #. module: delivery #: field:delivery.carrier,product_id:0 @@ -427,6 +436,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog načina dostave. \n" +"

\n" +" Svaki dostavljač (npr. UPS, Overseas ...) može imati više " +"vrsta dostave (npr.\n" +" Ekspresna dostava, Standardna dostava) sa različitim " +"cijenama.\n" +"

\n" +" Svaka metoda dostave omogućava automatski izračun cijene " +"dostave\n" +" sukladno postavkama; na prodajnom nalogu (baziranom na " +"ponudi) \n" +" ili računu (baziran na otpremnicama).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -499,7 +523,7 @@ msgstr "Cijena" #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid matching for this carrier !" -msgstr "" +msgstr "Ne postoji odgovarajuća mreža za ovog dostavljača" #. module: delivery #: model:ir.ui.menu,name:delivery.menu_delivery @@ -516,7 +540,7 @@ msgstr "Težina * Volumen" #: code:addons/delivery/stock.py:91 #, python-format msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "" +msgstr "Dostavljač %s(id: %d) nema dostavne mreže!" #. module: delivery #: view:delivery.carrier:0 @@ -526,7 +550,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,use_detailed_pricelist:0 msgid "Advanced Pricing per Destination" -msgstr "" +msgstr "Napredna cijene po odredištu" #. module: delivery #: view:delivery.carrier:0 @@ -542,13 +566,13 @@ msgstr "Prijevoznik" #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Načini dostave" #. module: delivery #: code:addons/delivery/sale.py:57 #, python-format msgid "The order state have to be draft to add delivery lines." -msgstr "" +msgstr "Stanje nalog mora biti 'Nacrt' da biste mogli dodavati stavke." #. module: delivery #: field:delivery.carrier,grids_id:0 diff --git a/addons/delivery/i18n/hu.po b/addons/delivery/i18n/hu.po index c8239e4ea17..e1771f2b57f 100644 --- a/addons/delivery/i18n/hu.po +++ b/addons/delivery/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/id.po b/addons/delivery/i18n/id.po index a55701ede88..f40125552ac 100644 --- a/addons/delivery/i18n/id.po +++ b/addons/delivery/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/it.po b/addons/delivery/i18n/it.po index ed8dc588f82..b53fc231da1 100644 --- a/addons/delivery/i18n/it.po +++ b/addons/delivery/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ja.po b/addons/delivery/i18n/ja.po index 965bf4a40b4..b95d3e00bc5 100644 --- a/addons/delivery/i18n/ja.po +++ b/addons/delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ko.po b/addons/delivery/i18n/ko.po index 634eaedd89f..bcf7e2bc8e1 100644 --- a/addons/delivery/i18n/ko.po +++ b/addons/delivery/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lt.po b/addons/delivery/i18n/lt.po index d487d5685ee..ae44f307ce3 100644 --- a/addons/delivery/i18n/lt.po +++ b/addons/delivery/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lv.po b/addons/delivery/i18n/lv.po index e86fda07b6e..79d031e5c6d 100644 --- a/addons/delivery/i18n/lv.po +++ b/addons/delivery/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mk.po b/addons/delivery/i18n/mk.po index c794a1f5587..0f84b3051b8 100644 --- a/addons/delivery/i18n/mk.po +++ b/addons/delivery/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mn.po b/addons/delivery/i18n/mn.po index b41597cf2c9..1101a00ad29 100644 --- a/addons/delivery/i18n/mn.po +++ b/addons/delivery/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 @@ -107,6 +107,7 @@ msgstr "Дэлгэрэнгүй үнэлэлт" #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." msgstr "" +"Хүргэлтийн хүснэгтийн харуулахад хэрэглэгдэх дарааллын эрэмбийг өгнө." #. module: delivery #: view:delivery.grid:0 diff --git a/addons/delivery/i18n/nb.po b/addons/delivery/i18n/nb.po index 0392363fd48..18c94edac5b 100644 --- a/addons/delivery/i18n/nb.po +++ b/addons/delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index aff12182acc..aa8dd736f4c 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index 1482be82019..5a83d2a53f8 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pl.po b/addons/delivery/i18n/pl.po index 811f7e2f635..430faeb18d4 100644 --- a/addons/delivery/i18n/pl.po +++ b/addons/delivery/i18n/pl.po @@ -13,13 +13,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 msgid "Order Ref." -msgstr "Odn. zamówienia" +msgstr "Numer zlecenia" #. module: delivery #: model:product.template,name:delivery.product_product_delivery_product_template @@ -51,7 +51,7 @@ msgstr "Pozycja tabeli opłat za dostawy" #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Jednostka Miary" #. module: delivery #: view:delivery.carrier:0 @@ -85,7 +85,7 @@ msgstr "Partner, który świadczy usługi transportowe." #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping msgid "Delivery order" -msgstr "Wydanie zewnętrzne" +msgstr "Polecenie dostawy" #. module: delivery #: code:addons/delivery/delivery.py:221 @@ -137,7 +137,7 @@ msgstr "" " Kliknij, aby utworzyć cennik dostaw dla regionu.\n" "

\n" " Cennik dostaw pozwoli ci obliczyć koszt i cenę dostawy w\n" -" w zależności od wagi produktów i n=innych kryteriów. \n" +" w zależności od wagi produktów i innych kryteriów. \n" " Możesz zdefiniować kilka cenników dla każdej metody:\n" " dla krajów lub regionów określanych kodem pocztowym.\n" "

\n" @@ -146,7 +146,7 @@ msgstr "" #. module: delivery #: report:sale.shipping:0 msgid "Delivery Order :" -msgstr "Wydanie zewnętrzne :" +msgstr "Polecenie dostawy" #. module: delivery #: field:delivery.grid.line,variable_factor:0 @@ -161,7 +161,7 @@ msgstr "Kwota" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "Dodaj cudzysłów" +msgstr "Dodaj do oferty" #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -190,7 +190,7 @@ msgstr "Przesunięcie zapasu" #: field:stock.picking,carrier_tracking_ref:0 #: field:stock.picking.out,carrier_tracking_ref:0 msgid "Carrier Tracking Ref" -msgstr "Odn. śledzenia przewoźnika" +msgstr "Numer przewozowy" #. module: delivery #: field:stock.picking,weight_net:0 @@ -224,7 +224,7 @@ msgstr "Operator" #. module: delivery #: model:ir.model,name:delivery.model_res_partner msgid "Partner" -msgstr "Partner" +msgstr "Kontrahent" #. module: delivery #: model:ir.model,name:delivery.model_sale_order @@ -234,7 +234,7 @@ msgstr "Zamówienie sprzedaży" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out msgid "Delivery Orders" -msgstr "Wydania zewnętrzne" +msgstr "Zlecenie dostawy" #. module: delivery #: view:sale.order:0 @@ -242,7 +242,8 @@ msgid "" "If you don't 'Add in Quote', the exact price will be computed when invoicing " "based on delivery order(s)." msgstr "" -"Jeśli nie dodasz 'Dodaj do oferty', to cena będzie wyliczona według wydania." +"Jeśli nie użyjesz 'Dodaj do oferty', dokładna cena zostanie obliczona " +"podczas fakturowania na podstawie poleceń dostaw(y)." #. module: delivery #: field:delivery.carrier,partner_id:0 @@ -289,7 +290,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,free_if_more_than:0 msgid "Free If Order Total Amount Is More Than" -msgstr "Bezpłatnie jeśli wartość przekroczy" +msgstr "Bezpłatnie jeśli łączna wartość zamówienia jest większa niż" #. module: delivery #: field:delivery.grid.line,grid_id:0 @@ -381,7 +382,7 @@ msgstr ">=" #: code:addons/delivery/sale.py:57 #, python-format msgid "Order not in draft state !" -msgstr "Zamówienie nie jest w stanie Projekt !" +msgstr "Zamówieni nie jest w fazie Projektowanie!" #. module: delivery #: report:sale.shipping:0 @@ -445,6 +446,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknij by zdefiniować nową metodę dostawy. \n" +"

\n" +" Każdy spedytor (np. UPS) może mieć kilka metod dostawy (np.\n" +" UPS Express, UPS Standard) razem z zasadami kalkulowania\n" +" ceny dla każdej metody dostawy.\n" +"

\n" +" Te metody pozwalają na automatyczne kalkulowanie ceny\n" +" dostawy w zależności od twoich ustawień; na zleceniu " +"sprzedaży\n" +" (bazującym na ofercie) lub fakturze (bazującej na zleceniu " +"dostawy).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -459,7 +474,7 @@ msgstr "Ilość" #. module: delivery #: field:delivery.grid,zip_from:0 msgid "Start Zip" -msgstr "Początek kodu" +msgstr "Kod pocztowy wysyłki" #. module: delivery #: help:sale.order,carrier_id:0 @@ -482,12 +497,12 @@ msgstr "Przyjęcia zewnętrzne" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid "<=" -msgstr "" +msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Jednostka miary dla wagi" #. module: delivery #: report:sale.shipping:0 @@ -569,7 +584,9 @@ msgstr "Metody dostaw" #: code:addons/delivery/sale.py:57 #, python-format msgid "The order state have to be draft to add delivery lines." -msgstr "Zamówienie musi być w stanie Projekt, aby dodawać pozycje dostaw" +msgstr "" +"Zamówienie musi być w fazie Projektowanie aby można było dodać pozycje " +"dostaw." #. module: delivery #: field:delivery.carrier,grids_id:0 @@ -601,7 +618,7 @@ msgstr "Regiony" #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "Jednostka miar (Unit of Measure) jest jednostką pomiaru wagi." #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index 10767cbddeb..656230f38e3 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index 183781ebe8d..696b8516bfe 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-22 01:08+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index 1a66c4f34cc..b752411a478 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index 3550719dcbf..34848adb166 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sl.po b/addons/delivery/i18n/sl.po index 9c5d2f3d316..ee355496200 100644 --- a/addons/delivery/i18n/sl.po +++ b/addons/delivery/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 @@ -29,7 +29,7 @@ msgstr "Dostava po pošti" #. module: delivery #: view:delivery.grid.line:0 msgid " in Function of " -msgstr "" +msgstr " v vlogi " #. module: delivery #: view:delivery.carrier:0 @@ -45,7 +45,7 @@ msgstr "Neto teža" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid_line msgid "Delivery Grid Line" -msgstr "" +msgstr "Dostavna pot" #. module: delivery #: field:stock.move,weight_uom_id:0 @@ -57,7 +57,7 @@ msgstr "Enota mere" #: view:delivery.carrier:0 #: view:delivery.grid:0 msgid "Delivery grids" -msgstr "" +msgstr "Dostavne mreže" #. module: delivery #: selection:delivery.grid.line,type:0 @@ -75,12 +75,12 @@ msgstr "Pošta" #. module: delivery #: field:delivery.grid,line_ids:0 msgid "Grid Line" -msgstr "" +msgstr "pot" #. module: delivery #: help:delivery.carrier,partner_id:0 msgid "The partner that is doing the delivery service." -msgstr "" +msgstr "Partner, ki izvaja dostavo." #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping @@ -92,21 +92,23 @@ msgstr "Dobavnica" #, python-format msgid "No line matched this product or order in the chosen delivery grid." msgstr "" +"Nobena pot se ne ujema s tem proizvodom ali naročilom v izbrani dostavni " +"mreži." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 msgid "Picking to be invoiced" -msgstr "" +msgstr "Odpreme za fakturiranje" #. module: delivery #: field:delivery.carrier,pricelist_ids:0 msgid "Advanced Pricing" -msgstr "" +msgstr "Napredno določanje cen" #. module: delivery #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." -msgstr "" +msgstr "Poda zaporedje naročila pri izpisu liste dostavne mreže." #. module: delivery #: view:delivery.grid:0 @@ -131,6 +133,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje cenika dostave za določeno regijo.\n" +"

\n" +" Cenik dostave omogoča izračun stroškov in \n" +" prodajne cene dostave na osnovi teže proizvodov\n" +" in drugih kriterijev. Definirate lahko več cenikov\n" +" za vsako dostavno metodo: po državi, po coni ali specifični\n" +" državi, definirano glede na rang poštnih številk.\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 @@ -150,7 +162,7 @@ msgstr "Znesek" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "" +msgstr "Dodaj v kvoti" #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -168,7 +180,7 @@ msgstr "Način dostave" #: code:addons/delivery/delivery.py:221 #, python-format msgid "No price available!" -msgstr "" +msgstr "Cena ni na voljo!" #. module: delivery #: model:ir.model,name:delivery.model_stock_move @@ -179,7 +191,7 @@ msgstr "Premik zaloge" #: field:stock.picking,carrier_tracking_ref:0 #: field:stock.picking.out,carrier_tracking_ref:0 msgid "Carrier Tracking Ref" -msgstr "" +msgstr "Prevoznikova referenca sledenja" #. module: delivery #: field:stock.picking,weight_net:0 @@ -197,7 +209,7 @@ msgstr "Mrežne črte" #: view:delivery.carrier:0 #: view:delivery.grid:0 msgid "Grid definition" -msgstr "" +msgstr "Definiranje mreže" #. module: delivery #: code:addons/delivery/stock.py:90 @@ -231,16 +243,18 @@ msgid "" "If you don't 'Add in Quote', the exact price will be computed when invoicing " "based on delivery order(s)." msgstr "" +"Če ne dodate v kvoti, bo točna cena izračunana na v trenutku fakturiranja na " +"osnovi dobavnic." #. module: delivery #: field:delivery.carrier,partner_id:0 msgid "Transport Company" -msgstr "" +msgstr "Transportno podjetje" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid msgid "Delivery Grid" -msgstr "" +msgstr "Dostavna mreža" #. module: delivery #: report:sale.shipping:0 @@ -263,6 +277,8 @@ msgid "" "If the order is more expensive than a certain amount, the customer can " "benefit from a free shipping" msgstr "" +"Če je naročilo večje vrednosti kot določen znesek, lahko kupec pridobi z " +"brezplačno dostavo" #. module: delivery #: help:delivery.carrier,amount:0 @@ -270,11 +286,12 @@ msgid "" "Amount of the order to benefit from a free shipping, expressed in the " "company currency" msgstr "" +"Znesek naročila za pridobitev brezplačne dostave, izražen v valuti podjetja" #. module: delivery #: field:delivery.carrier,free_if_more_than:0 msgid "Free If Order Total Amount Is More Than" -msgstr "" +msgstr "Brezplačno, če skupni znesek naročila presega" #. module: delivery #: field:delivery.grid.line,grid_id:0 @@ -287,6 +304,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "grid without removing it." msgstr "" +"Če je aktivno polje označeno kot Napačno, bo dovoljeno skriti dostavno mrežo " +"brez brisanja le te." #. module: delivery #: field:delivery.grid,zip_to:0 @@ -297,12 +316,12 @@ msgstr "do poštbe številke" #: code:addons/delivery/delivery.py:147 #, python-format msgid "Default price" -msgstr "" +msgstr "Privzeta cena" #. module: delivery #: field:delivery.carrier,normal_price:0 msgid "Normal Price" -msgstr "" +msgstr "Normalna cena" #. module: delivery #: report:sale.shipping:0 @@ -312,13 +331,13 @@ msgstr "Datum naročila" #. module: delivery #: field:delivery.grid,name:0 msgid "Grid Name" -msgstr "" +msgstr "Ime mreže" #. module: delivery #: field:stock.picking,number_of_packages:0 #: field:stock.picking.out,number_of_packages:0 msgid "Number of Packages" -msgstr "" +msgstr "Število paketov" #. module: delivery #: selection:delivery.grid.line,type:0 @@ -339,18 +358,22 @@ msgid "" "Check this box if you want to manage delivery prices that depends on the " "destination, the weight, the total of the order, etc." msgstr "" +"Označite to polje, če želite upravljati cene dobave v odvisnosti od " +"razdalje, teže, skupnega zneska naročila itd." #. module: delivery #: help:delivery.carrier,normal_price:0 msgid "" "Keep empty if the pricing depends on the advanced pricing per destination" msgstr "" +"Pusti prazno, če je določanje cene odvisno od naprednega določanja cen po " +"destinacijah" #. module: delivery #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid available !" -msgstr "" +msgstr "Nobena mreža ni na voljo!" #. module: delivery #: selection:delivery.grid.line,operator:0 @@ -361,12 +384,12 @@ msgstr ">=" #: code:addons/delivery/sale.py:57 #, python-format msgid "Order not in draft state !" -msgstr "" +msgstr "Naročilo ni v statusu \"Osnutek\"!" #. module: delivery #: report:sale.shipping:0 msgid "Lot" -msgstr "" +msgstr "Sklop" #. module: delivery #: field:delivery.carrier,active:0 @@ -382,7 +405,7 @@ msgstr "Datum dostave" #. module: delivery #: field:delivery.carrier,product_id:0 msgid "Delivery Product" -msgstr "" +msgstr "Dostavni proizvod" #. module: delivery #: view:delivery.grid.line:0 @@ -404,6 +427,7 @@ msgstr "Spremenljivka" #: help:res.partner,property_delivery_carrier:0 msgid "This delivery method will be used when invoicing from picking." msgstr "" +"Ta dostavna metoda bo uporabljena pri fakturiranju na osnovi odpreme." #. module: delivery #: model:ir.actions.act_window,help:delivery.action_delivery_carrier_form @@ -425,6 +449,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za določitev nove dostavne metode. \n" +"

\n" +" Vsak prevoznik (npr. UPS) ima lahko več dostavnih metod " +"(npr.\n" +" UPS Express, UPS Standard) s setom cenovnih pravil, ki " +"veljajo\n" +" za izbrano metodo.\n" +"

\n" +" Te metode vam omogočajo avtomatični izračun cene dostave\n" +" glede na nastavitve; na prodajnih nalogih (osnovanih na\n" +" ponudbah) ali na računu (osnovanem na prodajnem nalogu).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -446,12 +484,13 @@ msgstr "Zažetna poštna številka" msgid "" "Complete this field if you plan to invoice the shipping based on picking." msgstr "" +"Izpolnite to polje, če načrtujete fakturiranje dobave na osnovi odpremnic." #. module: delivery #: code:addons/delivery/delivery.py:136 #, python-format msgid "Free if more than %.2f" -msgstr "" +msgstr "Brezplačno, če je več kot %.2f" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_in @@ -466,7 +505,7 @@ msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Enota mere za težo" #. module: delivery #: report:sale.shipping:0 @@ -479,6 +518,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "carrier without removing it." msgstr "" +"Če je aktivno polje označeno kot Napačno, boste lahko skrili prevoznika, ne " +"da ga izbrišete." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_delivery_grid_form @@ -497,7 +538,7 @@ msgstr "Cena" #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid matching for this carrier !" -msgstr "" +msgstr "Za tega prevoznika ni določena mreža!" #. module: delivery #: model:ir.ui.menu,name:delivery.menu_delivery @@ -514,17 +555,17 @@ msgstr "Teža * prostornina" #: code:addons/delivery/stock.py:91 #, python-format msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "" +msgstr "Prevoznik %s (id: %d) nima dostavne mreže!" #. module: delivery #: view:delivery.carrier:0 msgid "Pricing Information" -msgstr "" +msgstr "Cenovna informacija" #. module: delivery #: field:delivery.carrier,use_detailed_pricelist:0 msgid "Advanced Pricing per Destination" -msgstr "" +msgstr "Napredno določanje cen po destinacijah" #. module: delivery #: view:delivery.carrier:0 @@ -540,18 +581,18 @@ msgstr "Nosilec" #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Načini dostave" #. module: delivery #: code:addons/delivery/sale.py:57 #, python-format msgid "The order state have to be draft to add delivery lines." -msgstr "" +msgstr "Status naročila mora biti \"Osnutek\", če želite dodati postavke." #. module: delivery #: field:delivery.carrier,grids_id:0 msgid "Delivery Grids" -msgstr "" +msgstr "Dostavne mreže" #. module: delivery #: field:delivery.grid,sequence:0 @@ -578,7 +619,7 @@ msgstr "Pokrajine" #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "Enota mere je enota mere za težo." #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/delivery/i18n/sq.po b/addons/delivery/i18n/sq.po index 6ba2dcb3272..37437f9382e 100644 --- a/addons/delivery/i18n/sq.po +++ b/addons/delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr.po b/addons/delivery/i18n/sr.po index 0fe906320fd..b9154e4821d 100644 --- a/addons/delivery/i18n/sr.po +++ b/addons/delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr@latin.po b/addons/delivery/i18n/sr@latin.po index 2f585063a2f..91e28ce36cf 100644 --- a/addons/delivery/i18n/sr@latin.po +++ b/addons/delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sv.po b/addons/delivery/i18n/sv.po index 8daa659c1d3..eefbc164403 100644 --- a/addons/delivery/i18n/sv.po +++ b/addons/delivery/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/th.po b/addons/delivery/i18n/th.po index 270f725d0fe..e3732006545 100644 --- a/addons/delivery/i18n/th.po +++ b/addons/delivery/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tlh.po b/addons/delivery/i18n/tlh.po index 04e1fdaa39b..3bf0d941044 100644 --- a/addons/delivery/i18n/tlh.po +++ b/addons/delivery/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index d9fd5d00e1a..ef180b0851b 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/uk.po b/addons/delivery/i18n/uk.po index a145f4af021..3bcbbb2b2d1 100644 --- a/addons/delivery/i18n/uk.po +++ b/addons/delivery/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/vi.po b/addons/delivery/i18n/vi.po index 84ff63585a9..951837cc0ef 100644 --- a/addons/delivery/i18n/vi.po +++ b/addons/delivery/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index a3c03ed57a5..f5d74243847 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index 26c7f8b3d15..d83d4aca17b 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: delivery #: report:sale.shipping:0 @@ -101,7 +101,7 @@ msgstr "要開立發票的提貨" #. module: delivery #: field:delivery.carrier,pricelist_ids:0 msgid "Advanced Pricing" -msgstr "" +msgstr "進階定價" #. module: delivery #: help:delivery.grid,sequence:0 @@ -150,7 +150,7 @@ msgstr "金額" #. module: delivery #: view:sale.order:0 msgid "Add in Quote" -msgstr "" +msgstr "加至報價" #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -230,12 +230,12 @@ msgstr "交貨單" msgid "" "If you don't 'Add in Quote', the exact price will be computed when invoicing " "based on delivery order(s)." -msgstr "" +msgstr "如果您不打算「加至報價」,則確切的價格會在依出貨單開立發票時計算。" #. module: delivery #: field:delivery.carrier,partner_id:0 msgid "Transport Company" -msgstr "" +msgstr "貨運公司" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid @@ -439,7 +439,7 @@ msgstr "數量" #. module: delivery #: field:delivery.grid,zip_from:0 msgid "Start Zip" -msgstr "" +msgstr "郵遞區號開頭" #. module: delivery #: help:sale.order,carrier_id:0 diff --git a/addons/delivery/sale.py b/addons/delivery/sale.py index 1b797290632..dbebd01ef1e 100644 --- a/addons/delivery/sale.py +++ b/addons/delivery/sale.py @@ -20,21 +20,37 @@ ############################################################################## import time -from openerp.osv import fields,osv +from openerp.osv import fields, osv from openerp.tools.translate import _ -# Overloaded sale_order to manage carriers : -class sale_order(osv.osv): + +class sale_order_line(osv.Model): + _inherit = 'sale.order.line' + + _columns = { + 'is_delivery': fields.boolean("Is a Delivery"), + } + + _defaults = { + 'is_delivery': False + } + + +class sale_order(osv.Model): _inherit = 'sale.order' _columns = { - 'carrier_id':fields.many2one("delivery.carrier", "Delivery Method", help="Complete this field if you plan to invoice the shipping based on picking."), + 'carrier_id': fields.many2one( + "delivery.carrier", string="Delivery Method", + help="Complete this field if you plan to invoice the shipping based on picking."), } def onchange_partner_id(self, cr, uid, ids, part, context=None): result = super(sale_order, self).onchange_partner_id(cr, uid, ids, part, context=context) if part: dtype = self.pool.get('res.partner').browse(cr, uid, part, context=context).property_delivery_carrier.id - result['value']['carrier_id'] = dtype + # TDE NOTE: not sure the aded 'if dtype' is valid + if dtype: + result['value']['carrier_id'] = dtype return result def _prepare_order_picking(self, cr, uid, order, context=None): @@ -42,18 +58,25 @@ class sale_order(osv.osv): result.update(carrier_id=order.carrier_id.id) return result + def _delivery_unset(self, cr, uid, order, context=None): + line_ids = [line.id for line in order.order_line if line.is_delivery] + self.pool['sale.order.line'].unlink(cr, uid, line_ids, context=context) + order.refresh() + return True + def delivery_set(self, cr, uid, ids, context=None): - order_obj = self.pool.get('sale.order') line_obj = self.pool.get('sale.order.line') grid_obj = self.pool.get('delivery.grid') carrier_obj = self.pool.get('delivery.carrier') acc_fp_obj = self.pool.get('account.fiscal.position') + for order in self.browse(cr, uid, ids, context=context): + self._delivery_unset(cr, uid, order, context=context) grid_id = carrier_obj.grid_get(cr, uid, [order.carrier_id.id], order.partner_shipping_id.id) if not grid_id: raise osv.except_osv(_('No Grid Available!'), _('No grid matching for this carrier!')) - if not order.state in ('draft'): + if order.state != 'draft': raise osv.except_osv(_('Order not in Draft State!'), _('The order state have to be draft to add delivery lines.')) grid = grid_obj.browse(cr, uid, grid_id, context=context) @@ -69,13 +92,7 @@ class sale_order(osv.osv): 'product_uom': grid.carrier_id.product_id.uom_id.id, 'product_id': grid.carrier_id.product_id.id, 'price_unit': grid_obj.get_price(cr, uid, grid.id, order, time.strftime('%Y-%m-%d'), context), - 'tax_id': [(6,0,taxes_ids)], - 'type': 'make_to_stock' + 'tax_id': [(6, 0, taxes_ids)], + 'type': 'make_to_stock', + 'is_delivery': True }) - #remove the value of the carrier_id field on the sale order - return self.write(cr, uid, ids, {'carrier_id': False}, context=context) - #return {'type': 'ir.actions.act_window_close'} action reload? - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index 0cdfc63ae3d..dc27d78926c 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bg.po b/addons/document/i18n/bg.po index da5a5d1e478..cbd2e824492 100644 --- a/addons/document/i18n/bg.po +++ b/addons/document/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bs.po b/addons/document/i18n/bs.po index b0ef624af2e..7b2ae495bcc 100644 --- a/addons/document/i18n/bs.po +++ b/addons/document/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ca.po b/addons/document/i18n/ca.po index 07264395163..3973bba720e 100644 --- a/addons/document/i18n/ca.po +++ b/addons/document/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/cs.po b/addons/document/i18n/cs.po index 66bf097e41f..a9009d2b1bb 100644 --- a/addons/document/i18n/cs.po +++ b/addons/document/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: document diff --git a/addons/document/i18n/da.po b/addons/document/i18n/da.po index a21e8a4aa57..156d9237ca8 100644 --- a/addons/document/i18n/da.po +++ b/addons/document/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/de.po b/addons/document/i18n/de.po index ee01d6c86e3..43695617bd7 100644 --- a/addons/document/i18n/de.po +++ b/addons/document/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 @@ -61,7 +61,7 @@ msgstr "Ressourcen" #: field:document.directory,file_ids:0 #: view:report.document.user:0 msgid "Files" -msgstr "Dokument" +msgstr "Dateien" #. module: document #: field:document.directory.content.type,mimetype:0 diff --git a/addons/document/i18n/el.po b/addons/document/i18n/el.po index c01e25b4f73..ab24d54793e 100644 --- a/addons/document/i18n/el.po +++ b/addons/document/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es.po b/addons/document/i18n/es.po index b02c1b16317..f00efee2209 100644 --- a/addons/document/i18n/es.po +++ b/addons/document/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index 2466f599645..f35c6c81835 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_CR.po b/addons/document/i18n/es_CR.po index c0b9f8e5e1b..e3e872f1ef4 100644 --- a/addons/document/i18n/es_CR.po +++ b/addons/document/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: document diff --git a/addons/document/i18n/es_EC.po b/addons/document/i18n/es_EC.po index 20928dfa07b..95f5d6f34c8 100644 --- a/addons/document/i18n/es_EC.po +++ b/addons/document/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_PY.po b/addons/document/i18n/es_PY.po index 8d296d6db0e..2951ea75c37 100644 --- a/addons/document/i18n/es_PY.po +++ b/addons/document/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/et.po b/addons/document/i18n/et.po index eed565c2546..f21556c8bc9 100644 --- a/addons/document/i18n/et.po +++ b/addons/document/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fi.po b/addons/document/i18n/fi.po index 4af9addb778..30a7a3e5bde 100644 --- a/addons/document/i18n/fi.po +++ b/addons/document/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 @@ -50,7 +50,7 @@ msgstr "Ryhmittely.." #. module: document #: view:ir.attachment:0 msgid "Modification" -msgstr "" +msgstr "Muokkaus" #. module: document #: view:document.directory:0 @@ -92,7 +92,7 @@ msgstr "Hakemiston sisältö" #. module: document #: view:ir.attachment:0 msgid "My Document(s)" -msgstr "" +msgstr "Oma(t) dokumenttini" #. module: document #: model:ir.ui.menu,name:document.menu_document_management_configuration @@ -113,7 +113,7 @@ msgstr "" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "Kentän nimi" #. module: document #: code:addons/document/document.py:340 @@ -203,6 +203,14 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" Dokumenttiarkisto mahdollistaa sinulle pääsyn kaikkiin " +"liitteisiin,\n" +" kuten sähköpostit, projektodokumentit, laskut jne.\n" +"

\n" +" " #. module: document #: code:addons/document/document.py:340 @@ -215,7 +223,7 @@ msgstr "Tarkistusvirhe" #. module: document #: model:ir.model,name:document.model_ir_actions_report_xml msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: document #: model:ir.actions.act_window,name:document.action_document_file_form @@ -250,14 +258,14 @@ msgstr "Tyyppi" #. module: document #: sql_constraint:ir.attachment:0 msgid "The filename must be unique in a directory !" -msgstr "" +msgstr "Hakemistossa olevan tiedostonimen pitää olla yksilöllinen!" #. module: document #: code:addons/document/document.py:110 #: code:addons/document/document.py:310 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopio)" #. module: document #: help:document.directory,ressource_type_id:0 @@ -278,7 +286,7 @@ msgstr "" #. module: document #: constraint:document.directory:0 msgid "Error! You cannot create recursive directories." -msgstr "" +msgstr "Virhe! Ei saa luoda rekursiivista hakemistoa." #. module: document #: field:document.directory,resource_field:0 @@ -333,6 +341,8 @@ msgid "" "When executing this wizard, it will configure your directories automatically " "according to modules installed." msgstr "" +"Tämä ohjattu toiminto konfiguroi sinulle hakemistot automaattisesti kaikille " +"asennetuille moduuleille." #. module: document #: field:document.directory.content,directory_id:0 @@ -360,12 +370,12 @@ msgstr "Viimeksi muuttanut käyttäjä" #: model:ir.actions.act_window,name:document.action_view_files_by_user_graph #: view:report.document.user:0 msgid "Files by User" -msgstr "" +msgstr "Käyttäjän tiedostot" #. module: document #: view:ir.attachment:0 msgid "on" -msgstr "" +msgstr "käytössä" #. module: document #: field:document.directory,domain:0 @@ -424,7 +434,7 @@ msgstr "Kiinteä" #. module: document #: field:report.document.user,user:0 msgid "unknown" -msgstr "" +msgstr "tuntematon" #. module: document #: view:document.directory:0 @@ -501,7 +511,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:6 #, python-format msgid "Attachment(s)" -msgstr "" +msgstr "Liite (liitteet)" #. module: document #: selection:report.document.user,month:0 @@ -588,7 +598,7 @@ msgstr "Hakemiston nimen tulee olla uniikki !" #. module: document #: view:ir.attachment:0 msgid "Attachments" -msgstr "" +msgstr "Liitteet" #. module: document #: field:document.directory,create_uid:0 @@ -669,12 +679,12 @@ msgstr "" #. module: document #: model:ir.model,name:document.model_ir_attachment msgid "ir.attachment" -msgstr "" +msgstr "ir.attachment" #. module: document #: view:report.document.user:0 msgid "Users File" -msgstr "" +msgstr "Käyttäjän tiedosto" #. module: document #: model:ir.model,name:document.model_document_configuration @@ -741,7 +751,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:17 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #. module: document #: field:document.directory.content,sequence:0 @@ -766,7 +776,7 @@ msgstr "Puurakenne" #. module: document #: view:document.configuration:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: document #: model:ir.actions.act_window,name:document.action_document_directory_tree diff --git a/addons/document/i18n/fr.po b/addons/document/i18n/fr.po index 855b2fa9f2a..710c3dbb136 100644 --- a/addons/document/i18n/fr.po +++ b/addons/document/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gl.po b/addons/document/i18n/gl.po index 7ae96552982..a901cc9d1e1 100644 --- a/addons/document/i18n/gl.po +++ b/addons/document/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gu.po b/addons/document/i18n/gu.po index f10b3a488a6..44532c2d070 100644 --- a/addons/document/i18n/gu.po +++ b/addons/document/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/he.po b/addons/document/i18n/he.po index 644f64141fd..b26c0359a46 100644 --- a/addons/document/i18n/he.po +++ b/addons/document/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-31 04:47+0000\n" -"X-Generator: Launchpad (build 16877)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hi.po b/addons/document/i18n/hi.po index 0c54931e3be..3b0e82e5a63 100644 --- a/addons/document/i18n/hi.po +++ b/addons/document/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hr.po b/addons/document/i18n/hr.po index 2bde511940f..7bd2ed2ab3e 100644 --- a/addons/document/i18n/hr.po +++ b/addons/document/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: hr\n" #. module: document diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index 2d0cbb44568..eae3732b82d 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/id.po b/addons/document/i18n/id.po index 73c7d12d914..59f6d8587d0 100644 --- a/addons/document/i18n/id.po +++ b/addons/document/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/it.po b/addons/document/i18n/it.po index c4691f98ead..912e83c48c9 100644 --- a/addons/document/i18n/it.po +++ b/addons/document/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ja.po b/addons/document/i18n/ja.po index 56dafd1d60b..7d71e8f2433 100644 --- a/addons/document/i18n/ja.po +++ b/addons/document/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 @@ -488,7 +488,7 @@ msgstr "このIDは、親モデルの特定のレコードにこのフォルダ #: code:addons/document/static/src/js/document.js:6 #, python-format msgid "Attachment(s)" -msgstr "" +msgstr "添付" #. module: document #: selection:report.document.user,month:0 @@ -574,7 +574,7 @@ msgstr "ディレクトリ名は固有でなければいけません。" #. module: document #: view:ir.attachment:0 msgid "Attachments" -msgstr "" +msgstr "添付" #. module: document #: field:document.directory,create_uid:0 diff --git a/addons/document/i18n/ko.po b/addons/document/i18n/ko.po index 0f14009319e..092d92a90ae 100644 --- a/addons/document/i18n/ko.po +++ b/addons/document/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lt.po b/addons/document/i18n/lt.po index 7671fe8e2e0..a802835a69a 100644 --- a/addons/document/i18n/lt.po +++ b/addons/document/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lv.po b/addons/document/i18n/lv.po index b64d8920408..c25ac3fa442 100644 --- a/addons/document/i18n/lv.po +++ b/addons/document/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mk.po b/addons/document/i18n/mk.po index caf056c70e7..58bbd7c3faa 100644 --- a/addons/document/i18n/mk.po +++ b/addons/document/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mn.po b/addons/document/i18n/mn.po index 82edfa14562..bd83b3eec09 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nb.po b/addons/document/i18n/nb.po index 5bdc4c46246..e5c709b8963 100644 --- a/addons/document/i18n/nb.po +++ b/addons/document/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index d8b96879b3b..08cf4c8d9f9 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index 7dc83c2a87e..490f6018b9b 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pl.po b/addons/document/i18n/pl.po index d3be5ad3759..10c198b536c 100644 --- a/addons/document/i18n/pl.po +++ b/addons/document/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 @@ -65,7 +65,7 @@ msgstr "Pliki" #. module: document #: field:document.directory.content.type,mimetype:0 msgid "Mime Type" -msgstr "" +msgstr "Typ MIME" #. module: document #: selection:report.document.user,month:0 @@ -105,11 +105,14 @@ msgid "" "You can use 'dir_id' for current dir, 'res_id', 'res_model' as a reference " "to the current record, in dynamic folders" msgstr "" +"Polecenie python używane do oceny pola.\n" +"Możesz użyć 'dir_id' dla bieżących katalogów, 'res_id', 'res_model' jako " +"odniesienie do bieżących rekordów, w dynamicznych katalogach" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "Nazwa pola." #. module: document #: code:addons/document/document.py:340 @@ -135,6 +138,9 @@ msgid "" "If true, all attachments that match this resource will be located. If " "false, only ones that have this as parent." msgstr "" +"Jeśli prawdziwe, wszystkie załączniki, które odpowiadają temu zasobowi " +"zostaną zlokalizowane. Jeśli nieprawdziwe, tylko te, które mają to jako " +"nadrzędne." #. module: document #: view:document.directory:0 @@ -197,6 +203,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknij aby utworzyć nowy dokument.\n" +"

\n" +" Repozytorium dokumentów daje tobie dostęp do wszystkich " +"załaczników, jak\n" +" maile, dokumenty projektów, faktury itp.\n" +"

\n" +" " #. module: document #: code:addons/document/document.py:340 @@ -221,7 +235,7 @@ msgstr "Dokumenty" #. module: document #: field:document.directory,ressource_type_id:0 msgid "Resource model" -msgstr "" +msgstr "Model zasobów" #. module: document #: field:report.document.file,file_size:0 @@ -244,7 +258,7 @@ msgstr "Typ" #. module: document #: sql_constraint:ir.attachment:0 msgid "The filename must be unique in a directory !" -msgstr "" +msgstr "Nazwa pliku musi być niepowtarzalna w katalogu!" #. module: document #: code:addons/document/document.py:110 @@ -258,18 +272,19 @@ msgstr "%s (kopia)" msgid "" "Select an object here and there will be one folder per record of that " "resource." -msgstr "" +msgstr "Wybierz tu obiekt i powstanie jeden folder na rekord tego zasobu." #. module: document #: help:document.directory,domain:0 msgid "" "Use a domain if you want to apply an automatic filter on visible resources." msgstr "" +"Użyj domeny jeśli chcesz stosować automatyczny filtr na widoczne zasoby." #. module: document #: constraint:document.directory:0 msgid "Error! You cannot create recursive directories." -msgstr "" +msgstr "Błąd! Nie możesz tworzyć rekurencyjnych katalogów." #. module: document #: field:document.directory,resource_field:0 @@ -279,7 +294,7 @@ msgstr "Nazwa pola" #. module: document #: field:document.directory,dctx_ids:0 msgid "Context fields" -msgstr "" +msgstr "Pole kontekstowe" #. module: document #: view:document.directory:0 @@ -324,6 +339,8 @@ msgid "" "When executing this wizard, it will configure your directories automatically " "according to modules installed." msgstr "" +"Kiedy uruchomisz tego kreatora, to skonfiguruje twoje katalogi automatycznie " +"w zależności od zainstalowanych modułów." #. module: document #: field:document.directory.content,directory_id:0 @@ -351,7 +368,7 @@ msgstr "Autor ostatniej modyfikacji" #: model:ir.actions.act_window,name:document.action_view_files_by_user_graph #: view:report.document.user:0 msgid "Files by User" -msgstr "" +msgstr "Pliki według użytkowników" #. module: document #: view:ir.attachment:0 @@ -449,12 +466,14 @@ msgid "" "name.\n" "If set, the directory will have to be a resource one." msgstr "" +"Zaznacz to pole jeśli chcesz żeby nazwa pliku zawierała nazwę rekordu.\n" +"Jeśli ustawione, katalog będzie musiał stać się jednym zasobem." #. module: document #: view:document.configuration:0 #: model:ir.actions.act_window,name:document.action_config_auto_directory msgid "Configure Directories" -msgstr "" +msgstr "Konfiguracja katalogów" #. module: document #: field:document.directory.content,include_name:0 @@ -472,6 +491,8 @@ msgid "" "Check this if you want to use the same tree structure as the object selected " "in the system." msgstr "" +"Zaznacz to pole jeśli chcesz używać takiej samej struktury katalogów jak " +"obiekt wybrany w systemie." #. module: document #: help:document.directory,ressource_id:0 @@ -479,6 +500,8 @@ msgid "" "Along with Parent Model, this ID attaches this folder to a specific record " "of Parent Model." msgstr "" +"Wraz z Modelem Macierzystym, ten numer identyfikacyjny dołącza ten folder do " +"określonego rekordu Modelu Macierzystego." #. module: document #. openerp-web @@ -530,6 +553,10 @@ msgid "" "record, just like attachments. Don't put a parent directory if you select a " "parent model." msgstr "" +"Jeśli wprowadzisz tu obiekt, to ten szablon katalogu pojawi się poniżej tych " +"wszystkich obiektów. Takie katalogi są \"załączane\" do konkretnych modeli " +"lub rekordów, tak jak załączniki. Nie wprowadzaj katalogu macierzystego " +"jeśli wybierzesz model macierzysty." #. module: document #: view:document.directory:0 @@ -584,6 +611,11 @@ msgid "" "attached to the document, or to print and download any report. This tool " "will create directories automatically according to modules installed." msgstr "" +"System Zarządzania Dokumentami OpenERP wspiera mapowanie wirtualnych " +"folderów z dokumentami. Wirtualne foldery dokumentów mogą być używane do " +"zarządzania plikami załączonymi do dokumentu lub do drukowania i ściągania " +"wszelkich raportów.Te narzędzie utworzy katalogi automatycznie w odniesieniu " +"do zainstalowanych modułów." #. module: document #: model:ir.actions.act_window,name:document.action_view_files_by_month_graph @@ -619,7 +651,7 @@ msgstr "Pole" #. module: document #: model:ir.model,name:document.model_document_directory_dctx msgid "Directory Dynamic Context" -msgstr "" +msgstr "Katalog z Dynamiczną Zawartością" #. module: document #: field:document.directory,ressource_parent_type_id:0 @@ -632,6 +664,8 @@ msgid "" "These groups, however, do NOT apply to children directories, which must " "define their own groups." msgstr "" +"Te grupy, jakkolwiek, nie mają zastosowania do katalogów podrzędnych, które " +"muszą definiować swoje własne grupy." #. module: document #: selection:report.document.user,month:0 @@ -641,7 +675,7 @@ msgstr "Maj" #. module: document #: view:document.directory:0 msgid "For each entry here, virtual files will appear in this folder." -msgstr "" +msgstr "Dla każdego wpisu tu, wirtualne pliki pojawią się w tym katalogu." #. module: document #: model:ir.model,name:document.model_ir_attachment @@ -651,12 +685,12 @@ msgstr "" #. module: document #: view:report.document.user:0 msgid "Users File" -msgstr "" +msgstr "Plik użytkowników" #. module: document #: model:ir.model,name:document.model_document_configuration msgid "Directory Configuration" -msgstr "" +msgstr "Konfiguracja katalogów" #. module: document #: help:document.directory,type:0 @@ -667,6 +701,11 @@ msgid "" "resources automatically possess sub-directories for each of resource types " "defined in the parent directory." msgstr "" +"Każdy katalog może być typu statycznego lub dynamicznego wskazującego do " +"innego zasobu. Statyczny katalog jest klasycznym katalogiem, który może " +"zawierać zestaw plików. Katalogi dynamiczne wskazujące do zasobów " +"systemowych automatycznie posiadają podkatalogi dla każdego typu zasobów " +"zdefiniowanych w katalogu macierzystym." #. module: document #: selection:report.document.user,month:0 @@ -705,6 +744,7 @@ msgid "" "Only members of these groups will have access to this directory and its " "files." msgstr "" +"Tylko członkowie tych grup będą mieli dostęp do tego katalogu i jego plików." #. module: document #. openerp-web diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index be148af373d..b0a73f715db 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 46d4321e792..b4570fa2816 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-22 01:15+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index 782cae43dca..decba9517b0 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index 722e8e4cd93..a6586331d4d 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sk.po b/addons/document/i18n/sk.po index 7fa97207485..57fd3a78745 100644 --- a/addons/document/i18n/sk.po +++ b/addons/document/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index 99a1f8df422..33e9c5391e0 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 @@ -38,6 +38,7 @@ msgid "" "Field to be used as name on resource directories. If empty, the \"name\" " "will be used." msgstr "" +"Polje, namenjeno imenu izvorne mape. Če je prazno, bo uporabljeno \"ime\"." #. module: document #: view:document.directory:0 @@ -110,7 +111,7 @@ msgstr "" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "Ime polja." #. module: document #: code:addons/document/document.py:340 @@ -136,6 +137,8 @@ msgid "" "If true, all attachments that match this resource will be located. If " "false, only ones that have this as parent." msgstr "" +"Če je označeno, bodo poiskane vse priponke, ki ustrezajo temu viru. V " +"nasprotnem primeru samo tiste, kateri je ta vir nadrejen." #. module: document #: view:document.directory:0 @@ -152,7 +155,7 @@ msgstr "Podrobnosti datotek po uporabnikih" #. module: document #: field:document.directory,resource_find_all:0 msgid "Find all resources" -msgstr "" +msgstr "Najdi vse vire" #. module: document #: selection:document.directory,type:0 @@ -172,7 +175,7 @@ msgstr "Datum spremembe" #. module: document #: view:document.configuration:0 msgid "Knowledge Application Configuration" -msgstr "" +msgstr "Nastaviteve" #. module: document #: view:ir.attachment:0 @@ -184,7 +187,7 @@ msgstr "Partner" #: model:ir.actions.act_window,name:document.act_res_partner_document #: model:ir.actions.act_window,name:document.zoom_directory msgid "Related Documents" -msgstr "" +msgstr "Povezani dokumenti" #. module: document #: model:ir.actions.act_window,help:document.action_document_file_form @@ -198,6 +201,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje novega dokumenta. \n" +"

\n" +" Nabor dokumentov vam omogoča dostop do vseh priponk, kot so\n" +" elektronska pošta, projektni dokumenti, računi itd.\n" +"

\n" +" " #. module: document #: code:addons/document/document.py:340 @@ -222,7 +232,7 @@ msgstr "Dokumenti" #. module: document #: field:document.directory,ressource_type_id:0 msgid "Resource model" -msgstr "" +msgstr "Model virov" #. module: document #: field:report.document.file,file_size:0 @@ -245,7 +255,7 @@ msgstr "Tip" #. module: document #: sql_constraint:ir.attachment:0 msgid "The filename must be unique in a directory !" -msgstr "" +msgstr "Ime v mapi mora biti enolično!" #. module: document #: code:addons/document/document.py:110 @@ -266,16 +276,17 @@ msgstr "" msgid "" "Use a domain if you want to apply an automatic filter on visible resources." msgstr "" +"Uporabite domeno, če želite aktivirati avtomatično filtriranje vidnih virov." #. module: document #: constraint:document.directory:0 msgid "Error! You cannot create recursive directories." -msgstr "" +msgstr "Napaka! Ne morete kreirati rekurzivnih map." #. module: document #: field:document.directory,resource_field:0 msgid "Name field" -msgstr "" +msgstr "Polje imena" #. module: document #: field:document.directory,dctx_ids:0 @@ -312,12 +323,12 @@ msgstr "Navidezne datoteke" #: code:addons/document/document.py:576 #, python-format msgid "Error at doc write!" -msgstr "" +msgstr "Napaka pri pisanju dokumenta." #. module: document #: view:document.directory:0 msgid "Generated Files" -msgstr "" +msgstr "Generirana polja" #. module: document #: view:document.configuration:0 @@ -325,6 +336,8 @@ msgid "" "When executing this wizard, it will configure your directories automatically " "according to modules installed." msgstr "" +"Z izvedbo tega čarovnika bodo vaše mape ustvarjene avtomatično glede na " +"instalirane module." #. module: document #: field:document.directory.content,directory_id:0 @@ -352,12 +365,12 @@ msgstr "Uporabnik, ki je zadnji spreminjal" #: model:ir.actions.act_window,name:document.action_view_files_by_user_graph #: view:report.document.user:0 msgid "Files by User" -msgstr "" +msgstr "Datoteke po uporabniku" #. module: document #: view:ir.attachment:0 msgid "on" -msgstr "" +msgstr "vklopljeno" #. module: document #: field:document.directory,domain:0 @@ -378,7 +391,7 @@ msgstr "Podrobnosti datotek po imenikih" #. module: document #: view:report.document.user:0 msgid "All users files" -msgstr "" +msgstr "Vse uporabnikove datoteke" #. module: document #: model:ir.actions.act_window,name:document.action_view_size_month @@ -405,7 +418,7 @@ msgstr "Mesec" #. module: document #: view:document.directory:0 msgid "Define words in the context, for all child directories and files" -msgstr "" +msgstr "Določite besede v kontekstu, za vse podrejene mape in datoteke." #. module: document #: view:document.directory:0 @@ -454,7 +467,7 @@ msgstr "" #: view:document.configuration:0 #: model:ir.actions.act_window,name:document.action_config_auto_directory msgid "Configure Directories" -msgstr "" +msgstr "Konfiguriraj mape" #. module: document #: field:document.directory.content,include_name:0 @@ -472,6 +485,8 @@ msgid "" "Check this if you want to use the same tree structure as the object selected " "in the system." msgstr "" +"Označite, če želite uporabiti isto drevesno strukturo kot objekt, izbran " +"sistemsko." #. module: document #: help:document.directory,ressource_id:0 @@ -479,13 +494,15 @@ msgid "" "Along with Parent Model, this ID attaches this folder to a specific record " "of Parent Model." msgstr "" +"Skladno z nadrejenim modelom ta ID pripne to mapo k ustreznemu zapisu " +"nadrejenega modela." #. module: document #. openerp-web #: code:addons/document/static/src/js/document.js:6 #, python-format msgid "Attachment(s)" -msgstr "" +msgstr "Priponke" #. module: document #: selection:report.document.user,month:0 @@ -495,12 +512,12 @@ msgstr "Avgust" #. module: document #: view:document.directory:0 msgid "Dynamic context" -msgstr "" +msgstr "Dinamična vsebina" #. module: document #: sql_constraint:document.directory:0 msgid "Directory cannot be parent of itself!" -msgstr "" +msgstr "Mapa ne more biti sama sebi nadrejena!" #. module: document #: selection:report.document.user,month:0 @@ -564,7 +581,7 @@ msgstr "" #. module: document #: sql_constraint:document.directory:0 msgid "The directory name must be unique !" -msgstr "" +msgstr "Ime mape mora biti enolično!" #. module: document #: view:ir.attachment:0 @@ -651,12 +668,12 @@ msgstr "ir.attachment" #. module: document #: view:report.document.user:0 msgid "Users File" -msgstr "" +msgstr "Uporabniška datoteka" #. module: document #: model:ir.model,name:document.model_document_configuration msgid "Directory Configuration" -msgstr "" +msgstr "Konfiguracija mape" #. module: document #: help:document.directory,type:0 @@ -705,6 +722,7 @@ msgid "" "Only members of these groups will have access to this directory and its " "files." msgstr "" +"Samo člani te skupine bodo imeli dostop do te mape in njenih datotek." #. module: document #. openerp-web @@ -742,17 +760,17 @@ msgstr "res_config_contents" #: model:ir.actions.act_window,name:document.action_document_directory_tree #: model:ir.ui.menu,name:document.menu_document_directories_tree msgid "Directories' Structure" -msgstr "" +msgstr "Struktura map" #. module: document #: field:report.document.user,name:0 msgid "Year" -msgstr "" +msgstr "Leto" #. module: document #: model:ir.model,name:document.model_document_storage msgid "Storage Media" -msgstr "" +msgstr "Nosilci za hrambo" #. module: document #: field:document.directory.content,extension:0 diff --git a/addons/document/i18n/sq.po b/addons/document/i18n/sq.po index 3915005e617..184060a915e 100644 --- a/addons/document/i18n/sq.po +++ b/addons/document/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:02+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr.po b/addons/document/i18n/sr.po index a4f828fcc8b..069dfb0c744 100644 --- a/addons/document/i18n/sr.po +++ b/addons/document/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr@latin.po b/addons/document/i18n/sr@latin.po index 6690e632a63..85909dc46df 100644 --- a/addons/document/i18n/sr@latin.po +++ b/addons/document/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sv.po b/addons/document/i18n/sv.po index 5cfc3c32590..54e5de8863b 100644 --- a/addons/document/i18n/sv.po +++ b/addons/document/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tlh.po b/addons/document/i18n/tlh.po index 6362ff8c79d..88ab277ffcf 100644 --- a/addons/document/i18n/tlh.po +++ b/addons/document/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index 676e9db6bc2..68ab319ef4a 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/uk.po b/addons/document/i18n/uk.po index a8eb9043564..7db065e1b69 100644 --- a/addons/document/i18n/uk.po +++ b/addons/document/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/vi.po b/addons/document/i18n/vi.po index d442270a696..8fdfabc93ac 100644 --- a/addons/document/i18n/vi.po +++ b/addons/document/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 0c5d79f240d..d79f838ef14 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_HK.po b/addons/document/i18n/zh_HK.po index 50da47a8b0f..6e4d239d2f8 100644 --- a/addons/document/i18n/zh_HK.po +++ b/addons/document/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index 0ac0dd2effe..889b4f104b1 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:20+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document_ftp/ftpserver/abstracted_fs.py b/addons/document_ftp/ftpserver/abstracted_fs.py index 4a2d6e5e1ec..514ba10f2f6 100644 --- a/addons/document_ftp/ftpserver/abstracted_fs.py +++ b/addons/document_ftp/ftpserver/abstracted_fs.py @@ -262,6 +262,7 @@ class abstracted_fs(object): if path == '/' and mode in ('list', 'cwd'): return (None, None, None ) + if path == '..': path = self.cwd + '/..' path = _to_unicode(os.path.normpath(path)) # again, for '/db/../ss' if path == '.': path = '' diff --git a/addons/document_ftp/i18n/ar.po b/addons/document_ftp/i18n/ar.po index dfe53b94d9f..48d269ea83c 100644 --- a/addons/document_ftp/i18n/ar.po +++ b/addons/document_ftp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -44,7 +44,7 @@ msgstr "" #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings msgid "knowledge.config.settings" -msgstr "" +msgstr "knowledge.config.settings" #. module: document_ftp #: model:ir.actions.act_url,name:document_ftp.action_document_browse diff --git a/addons/document_ftp/i18n/bg.po b/addons/document_ftp/i18n/bg.po index 1a290d71119..3aa90e572b1 100644 --- a/addons/document_ftp/i18n/bg.po +++ b/addons/document_ftp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ca.po b/addons/document_ftp/i18n/ca.po index 8a05230a4b8..bdbaf618066 100644 --- a/addons/document_ftp/i18n/ca.po +++ b/addons/document_ftp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/cs.po b/addons/document_ftp/i18n/cs.po index ab7a9363a43..3ad1023d7c1 100644 --- a/addons/document_ftp/i18n/cs.po +++ b/addons/document_ftp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/da.po b/addons/document_ftp/i18n/da.po index 40678dc444d..9b318e39bc3 100644 --- a/addons/document_ftp/i18n/da.po +++ b/addons/document_ftp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/de.po b/addons/document_ftp/i18n/de.po index fe5ae033ad5..50035cc8ca0 100644 --- a/addons/document_ftp/i18n/de.po +++ b/addons/document_ftp/i18n/de.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 06:50+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" +"Last-Translator: Ferdinand \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 msgid "Configure FTP Server" -msgstr "Konfigurieren FTP Server" +msgstr "FTP Server konfigurieren" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration @@ -38,10 +38,10 @@ msgid "" msgstr "" "Zeigt die Netzwerk IP Adresse über die der OpenERP Server für Endbenutzer " "erreicht werden kann. Diese Adresse hängt ab von der Architektur des " -"Netzwerks, und wird lediglich einen Einfluss auf die Anzeige der Adresse " -"beim Benutzer haben. Das Format der Adresse ist HOST:PORT, wobei der " -"Standard Host (localhost) lediglich gültig ist für einen direkten Zugriff " -"vom Server selbst." +"Netzwerks und wird lediglich einen Einfluss auf die Anzeige der Adresse beim " +"Benutzer haben. Das Format der Adresse ist HOST:PORT, wobei der Standard " +"Host (localhost) lediglich gültig ist für einen direkten Zugriff vom Server " +"selbst." #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings @@ -56,17 +56,17 @@ msgstr "Dateien durchsuchen" #. module: document_ftp #: help:knowledge.config.settings,document_ftp_url:0 msgid "Click the url to browse the documents" -msgstr "Die URL klicken um die Dokumente anzuzeigen" +msgstr "URL klicken, um die Dokumente anzuzeigen" #. module: document_ftp #: field:document.ftp.browse,url:0 msgid "FTP Server" -msgstr "FTP Server" +msgstr "FTP-Server" #. module: document_ftp #: model:ir.actions.act_window,name:document_ftp.action_config_auto_directory msgid "FTP Server Configuration" -msgstr "Konfiguration FTP Server" +msgstr "Konfiguration FTP-Server" #. module: document_ftp #: field:knowledge.config.settings,document_ftp_url:0 @@ -88,7 +88,7 @@ msgstr "" #. module: document_ftp #: model:ir.ui.menu,name:document_ftp.menu_document_browse msgid "Shared Repository (FTP)" -msgstr "Gemeinsames Verzeichnis (FTP)" +msgstr "" #. module: document_ftp #: field:document.ftp.configuration,host:0 @@ -103,17 +103,17 @@ msgstr "Abbrechen" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_browse msgid "Document FTP Browse" -msgstr "Suche per FTP Dokument" +msgstr "Suche per FTP-Dokument" #. module: document_ftp #: view:document.ftp.configuration:0 msgid "Knowledge Application Configuration" -msgstr "Konfiguration Knowledge" +msgstr "Knowledge-Anwendung konfigurieren" #. module: document_ftp #: model:ir.actions.act_window,name:document_ftp.action_ftp_browse msgid "Document Browse" -msgstr "Suche Dokument" +msgstr "Dokument suchen" #. module: document_ftp #: view:document.ftp.browse:0 @@ -123,7 +123,7 @@ msgstr "oder" #. module: document_ftp #: view:document.ftp.browse:0 msgid "Browse Document" -msgstr "Suche Dokument" +msgstr "Dokument suchen" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/el.po b/addons/document_ftp/i18n/el.po index ee48da92212..8d069dd5ee6 100644 --- a/addons/document_ftp/i18n/el.po +++ b/addons/document_ftp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/en_GB.po b/addons/document_ftp/i18n/en_GB.po index 6a15fa857cd..0a43abe0df0 100644 --- a/addons/document_ftp/i18n/en_GB.po +++ b/addons/document_ftp/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es.po b/addons/document_ftp/i18n/es.po index 8d3a2ce6f76..02665cd6b85 100644 --- a/addons/document_ftp/i18n/es.po +++ b/addons/document_ftp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_CR.po b/addons/document_ftp/i18n/es_CR.po index f86b2125298..0fff0fd4321 100644 --- a/addons/document_ftp/i18n/es_CR.po +++ b/addons/document_ftp/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/es_EC.po b/addons/document_ftp/i18n/es_EC.po index 08eba636007..e53e8985eba 100644 --- a/addons/document_ftp/i18n/es_EC.po +++ b/addons/document_ftp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_PY.po b/addons/document_ftp/i18n/es_PY.po index 72e38303375..481e53809e8 100644 --- a/addons/document_ftp/i18n/es_PY.po +++ b/addons/document_ftp/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/et.po b/addons/document_ftp/i18n/et.po index 6fa0cb83439..a16ab73f19f 100644 --- a/addons/document_ftp/i18n/et.po +++ b/addons/document_ftp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fi.po b/addons/document_ftp/i18n/fi.po index f66e055021c..19a2137a7a0 100644 --- a/addons/document_ftp/i18n/fi.po +++ b/addons/document_ftp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fr.po b/addons/document_ftp/i18n/fr.po index b251ffbabce..4207abbff9f 100644 --- a/addons/document_ftp/i18n/fr.po +++ b/addons/document_ftp/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-29 10:19+0000\n" -"Last-Translator: lholivier \n" +"Last-Translator: Olivier Lenoir \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/gl.po b/addons/document_ftp/i18n/gl.po index 525c7e6c724..1dc4adaa2ed 100644 --- a/addons/document_ftp/i18n/gl.po +++ b/addons/document_ftp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hr.po b/addons/document_ftp/i18n/hr.po index cfcbaf87285..a075de5800a 100644 --- a/addons/document_ftp/i18n/hr.po +++ b/addons/document_ftp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hu.po b/addons/document_ftp/i18n/hu.po index 025de1fceb6..19cf340ed9f 100644 --- a/addons/document_ftp/i18n/hu.po +++ b/addons/document_ftp/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/it.po b/addons/document_ftp/i18n/it.po index 7b1a341d542..a710eb953e3 100644 --- a/addons/document_ftp/i18n/it.po +++ b/addons/document_ftp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ja.po b/addons/document_ftp/i18n/ja.po index 47ef947657b..1a46ce5c5bb 100644 --- a/addons/document_ftp/i18n/ja.po +++ b/addons/document_ftp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/mk.po b/addons/document_ftp/i18n/mk.po index d40bbba0ef8..4c70813c307 100644 --- a/addons/document_ftp/i18n/mk.po +++ b/addons/document_ftp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/mn.po b/addons/document_ftp/i18n/mn.po index 074ee90cad5..ee21255d794 100644 --- a/addons/document_ftp/i18n/mn.po +++ b/addons/document_ftp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nb.po b/addons/document_ftp/i18n/nb.po index 479e93dadb6..7548ab9477b 100644 --- a/addons/document_ftp/i18n/nb.po +++ b/addons/document_ftp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nl.po b/addons/document_ftp/i18n/nl.po index c2e266e3323..3913f57ce54 100644 --- a/addons/document_ftp/i18n/nl.po +++ b/addons/document_ftp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pl.po b/addons/document_ftp/i18n/pl.po index f9cd717c81f..7d58b270f7b 100644 --- a/addons/document_ftp/i18n/pl.po +++ b/addons/document_ftp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -36,11 +36,15 @@ msgid "" "format is HOST:PORT and the default host (localhost) is only suitable for " "access from the server machine itself.." msgstr "" +"Wskazuje adres sieciowy na którym twój serwer OpenERP powinien być dostępny " +"dla użytkowników końcowych. To zależy od topologii sieci i ustawień i ma " +"efekt tylko w odniesieniu do linków wyświetlanych użytkownikom. Format to " +"HOST:PORT i domyślny (localhost) jest do użytku tylko z poziomu serwera." #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings msgid "knowledge.config.settings" -msgstr "" +msgstr "knowledge.config.settings" #. module: document_ftp #: model:ir.actions.act_url,name:document_ftp.action_document_browse @@ -50,7 +54,7 @@ msgstr "Przeglądaj pliki" #. module: document_ftp #: help:knowledge.config.settings,document_ftp_url:0 msgid "Click the url to browse the documents" -msgstr "" +msgstr "Kliknij adres url żeby przeglądać dokumenty" #. module: document_ftp #: field:document.ftp.browse,url:0 @@ -65,7 +69,7 @@ msgstr "Konfiguracja serwera FTP" #. module: document_ftp #: field:knowledge.config.settings,document_ftp_url:0 msgid "Browse Documents" -msgstr "" +msgstr "Przeglądaj Dokumenty" #. module: document_ftp #: view:document.ftp.browse:0 @@ -77,6 +81,8 @@ msgstr "_Przeglądaj" msgid "" "Server address or IP and port to which users should connect to for DMS access" msgstr "" +"Adres serwera lub IP i port do którego użytkownik powinien się podłączyć dla " +"dostępu do DMS (System Zarządzania Dokumentami)." #. module: document_ftp #: model:ir.ui.menu,name:document_ftp.menu_document_browse @@ -91,12 +97,12 @@ msgstr "Adresy" #. module: document_ftp #: view:document.ftp.browse:0 msgid "Cancel" -msgstr "" +msgstr "Anuluj" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_browse msgid "Document FTP Browse" -msgstr "" +msgstr "FTP Przeglądaj dokument" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -111,7 +117,7 @@ msgstr "Przeglądanie dokumentów" #. module: document_ftp #: view:document.ftp.browse:0 msgid "or" -msgstr "" +msgstr "lub" #. module: document_ftp #: view:document.ftp.browse:0 diff --git a/addons/document_ftp/i18n/pt.po b/addons/document_ftp/i18n/pt.po index fbdeb1e91a8..eb6a5ecdb70 100644 --- a/addons/document_ftp/i18n/pt.po +++ b/addons/document_ftp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pt_BR.po b/addons/document_ftp/i18n/pt_BR.po index 8821529cc9e..249b7306097 100644 --- a/addons/document_ftp/i18n/pt_BR.po +++ b/addons/document_ftp/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ro.po b/addons/document_ftp/i18n/ro.po index 2378b0ff4ab..579826c4bdb 100644 --- a/addons/document_ftp/i18n/ro.po +++ b/addons/document_ftp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ru.po b/addons/document_ftp/i18n/ru.po index c978027ba3a..7ac0ca41a53 100644 --- a/addons/document_ftp/i18n/ru.po +++ b/addons/document_ftp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sk.po b/addons/document_ftp/i18n/sk.po index ca646247f6e..467811e5afc 100644 --- a/addons/document_ftp/i18n/sk.po +++ b/addons/document_ftp/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sl.po b/addons/document_ftp/i18n/sl.po index b8abd546ed8..405d9b6d5bf 100644 --- a/addons/document_ftp/i18n/sl.po +++ b/addons/document_ftp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -36,11 +36,15 @@ msgid "" "format is HOST:PORT and the default host (localhost) is only suitable for " "access from the server machine itself.." msgstr "" +"Določa omrežni naslov, na katerem bo dosegljiv vaš OpenERP server za končne " +"uporabnike. To je odvisno od topologije in nastavitev vašega omrežja. Vpliva " +"samo na povezavo, ki se izpiše uporabniku. Format je HOST:PORT in privzeti " +"strežnik (localhost) je primeren samo za dostop iz serverja samega." #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings msgid "knowledge.config.settings" -msgstr "" +msgstr "knowledge.config.settings" #. module: document_ftp #: model:ir.actions.act_url,name:document_ftp.action_document_browse @@ -50,7 +54,7 @@ msgstr "Brskanje Datoteke" #. module: document_ftp #: help:knowledge.config.settings,document_ftp_url:0 msgid "Click the url to browse the documents" -msgstr "" +msgstr "Potrdite url za brskanje po dokumentih" #. module: document_ftp #: field:document.ftp.browse,url:0 @@ -65,7 +69,7 @@ msgstr "Konfiguracija FTP strežnika" #. module: document_ftp #: field:knowledge.config.settings,document_ftp_url:0 msgid "Browse Documents" -msgstr "" +msgstr "brskanje po dokumentih" #. module: document_ftp #: view:document.ftp.browse:0 @@ -83,7 +87,7 @@ msgstr "" #. module: document_ftp #: model:ir.ui.menu,name:document_ftp.menu_document_browse msgid "Shared Repository (FTP)" -msgstr "" +msgstr "Deljeni repozitorij (FTP)" #. module: document_ftp #: field:document.ftp.configuration,host:0 @@ -93,32 +97,32 @@ msgstr "Naslov" #. module: document_ftp #: view:document.ftp.browse:0 msgid "Cancel" -msgstr "" +msgstr "Preklic" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_browse msgid "Document FTP Browse" -msgstr "" +msgstr "FTP brskanje po dokumentih" #. module: document_ftp #: view:document.ftp.configuration:0 msgid "Knowledge Application Configuration" -msgstr "" +msgstr "Nastavitev aplikacije znanja" #. module: document_ftp #: model:ir.actions.act_window,name:document_ftp.action_ftp_browse msgid "Document Browse" -msgstr "" +msgstr "Brskanje po dokumentih" #. module: document_ftp #: view:document.ftp.browse:0 msgid "or" -msgstr "" +msgstr "ali" #. module: document_ftp #: view:document.ftp.browse:0 msgid "Browse Document" -msgstr "" +msgstr "Brskanje po dokumentu" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr.po b/addons/document_ftp/i18n/sr.po index 3b1b4e3dc24..3232fe91a89 100644 --- a/addons/document_ftp/i18n/sr.po +++ b/addons/document_ftp/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr@latin.po b/addons/document_ftp/i18n/sr@latin.po index e166fef6b16..1aef0679b78 100644 --- a/addons/document_ftp/i18n/sr@latin.po +++ b/addons/document_ftp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sv.po b/addons/document_ftp/i18n/sv.po index c5650aeeb4f..04597d42f9a 100644 --- a/addons/document_ftp/i18n/sv.po +++ b/addons/document_ftp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/tr.po b/addons/document_ftp/i18n/tr.po index 6e02a88aa0f..7378e24293c 100644 --- a/addons/document_ftp/i18n/tr.po +++ b/addons/document_ftp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/vi.po b/addons/document_ftp/i18n/vi.po index dd06e989d18..5fc0ae5a3fa 100644 --- a/addons/document_ftp/i18n/vi.po +++ b/addons/document_ftp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/zh_CN.po b/addons/document_ftp/i18n/zh_CN.po index f80e5345645..2fdd4a888c7 100644 --- a/addons/document_ftp/i18n/zh_CN.po +++ b/addons/document_ftp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/zh_TW.po b/addons/document_ftp/i18n/zh_TW.po index 696557d532c..b6ab5b1d499 100644 --- a/addons/document_ftp/i18n/zh_TW.po +++ b/addons/document_ftp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:35+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_page/document_page.py b/addons/document_page/document_page.py deleted file mode 100644 index 7f885018001..00000000000 --- a/addons/document_page/document_page.py +++ /dev/null @@ -1,133 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from openerp.osv import fields, osv -from openerp.tools.translate import _ -import difflib -from openerp import tools - -class document_page(osv.osv): - _name = "document.page" - _description = "Document Page" - _order = 'name' - - def _get_page_index(self, cr, uid, page, link=True): - index = [] - for subpage in page.child_ids: - index += ["
  • "+ self._get_page_index(cr, uid, subpage) +"
  • "] - r = '' - if link: - r = '%s'%(page.id,page.name) - if index: - r += "
      " + "".join(index) + "
    " - return r - - def _get_display_content(self, cr, uid, ids, name, args, context=None): - res = {} - for page in self.browse(cr, uid, ids, context=context): - if page.type == "category": - content = self._get_page_index(cr, uid, page, link=False) - else: - content = page.content - res[page.id] = content - return res - - _columns = { - 'name': fields.char('Title', required=True), - 'type':fields.selection([('content','Content'), ('category','Category')], 'Type', help="Page type"), - - 'parent_id': fields.many2one('document.page', 'Category', domain=[('type','=','category')]), - 'child_ids': fields.one2many('document.page', 'parent_id', 'Children'), - - 'content': fields.text("Content"), - 'display_content': fields.function(_get_display_content, string='Displayed Content', type='text'), - - 'history_ids': fields.one2many('document.page.history', 'page_id', 'History'), - 'menu_id': fields.many2one('ir.ui.menu', "Menu", readonly=True), - - 'create_date': fields.datetime("Created on", select=True, readonly=True), - 'create_uid': fields.many2one('res.users', 'Author', select=True, readonly=True), - 'write_date': fields.datetime("Modification Date", select=True, readonly=True), - 'write_uid': fields.many2one('res.users', "Last Contributor", select=True, readonly=True), - } - _defaults = { - 'type':'content', - } - - def onchange_parent_id(self, cr, uid, ids, parent_id, content, context=None): - res = {} - if parent_id and not content: - parent = self.browse(cr, uid, parent_id, context=context) - if parent.type == "category": - res['value'] = { - 'content': parent.content, - } - return res - - def create_history(self, cr, uid, ids, vals, context=None): - for i in ids: - history = self.pool.get('document.page.history') - if vals.get('content'): - res = { - 'content': vals.get('content', ''), - 'page_id': i, - } - history.create(cr, uid, res) - - def create(self, cr, uid, vals, context=None): - page_id = super(document_page, self).create(cr, uid, vals, context) - self.create_history(cr, uid, [page_id], vals, context) - return page_id - - def write(self, cr, uid, ids, vals, context=None): - result = super(document_page, self).write(cr, uid, ids, vals, context) - self.create_history(cr, uid, ids, vals, context) - return result - -class document_page_history(osv.osv): - _name = "document.page.history" - _description = "Document Page History" - _order = 'id DESC' - _rec_name = "create_date" - - _columns = { - 'page_id': fields.many2one('document.page', 'Page'), - 'summary': fields.char('Summary', size=256, select=True), - 'content': fields.text("Content"), - 'create_date': fields.datetime("Date"), - 'create_uid': fields.many2one('res.users', "Modified By"), - } - - def getDiff(self, cr, uid, v1, v2, context=None): - history_pool = self.pool.get('document.page.history') - text1 = history_pool.read(cr, uid, [v1], ['content'])[0]['content'] - text2 = history_pool.read(cr, uid, [v2], ['content'])[0]['content'] - line1 = line2 = '' - if text1: - line1 = text1.splitlines(1) - if text2: - line2 = text2.splitlines(1) - if (not line1 and not line2) or (line1 == line2): - raise osv.except_osv(_('Warning!'), _('There are no changes in revisions.')) - diff = difflib.HtmlDiff() - return diff.make_table(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=True) - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document_page/document_page_data.xml b/addons/document_page/document_page_data.xml deleted file mode 100644 index 1cef65694d8..00000000000 --- a/addons/document_page/document_page_data.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - The OpenERP wiki - help, quick start, wiki, formatting - 0 - 1 - Initial Page - ==The OpenERP wiki== - -[[File:http://www.openerp.com/sites/all/themes/openerp/logo.png OpenERP]] - -The OpenERP wiki allows you to manage your enterprise's contents using wiki -restructured texts. This module provides a collaborative way to manage internal -FAQs, quality manuals, technical references, etc. - -==Keypoints== -* Same formating style than MediaWiki, -* Any number of wiki group for different purposes, -* Detailed history on all pages, -* Integrated with the document management system. - -==Why you should use the OpenERP integrated wiki than a separate wiki system ?== -* Allows links to any document of the system, -* Uses the access controls of OpenERP for uniq access rights management, -* Use it to describe projects, tasks, products, -* Integrated with customer portal to provide restricted external accesses, -* Linked to users processes for quality manuals. - -==To get more information== -* [[Basic Wiki Editing]] -* [[Wiki Documentation]] -* [http://openerp.com The OpenERP website] - - - - - - - diff --git a/addons/document_page/document_page_demo.xml b/addons/document_page/document_page_demo.xml deleted file mode 100644 index f779ea8313f..00000000000 --- a/addons/document_page/document_page_demo.xml +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - OpenERP Features - category - -Summary of the feature - -Long explanation - -Conclusion - -Additional ressources - - - - - - OpenERP 6.1. Functional Demo - - - -
    -The news is out, OpenERP's latest version 6.1. is here. It's more
    -user-friendly, even more business oriented and efficient to manage your company
    -
    -How to discover the latest version 6.1.?
    -
    -Demo :
    -Online:
    -Download:
    -
    -We have also put together a functional demo that presents 6.1. Watch this video
    -to learn directly from us what OpenERP 6.1. can do for you. Share it in your
    -company, with your clients and implement it now for your business.
    -
    -

    Watch on Youtube!


    -
    -
    -
    -
    -]]> -
    -
    - - - Personalise Dashboards - - - -You like OpenERP, but feel like you want to personalise it more? Now, OpenERP
    -goes a step further and lets you customize your dashboard. Thanks to a new
    -feature that allows you to customize your dashboard by adding new boards of any
    -search view.
    -
    -

    How is it done?


    -
    -Step 1: access one search view
    -
    -Step 2: apply the filter you want to see at each connection to the application
    -(eg. on sales, manufacturing, etc)
    -
    -Step 3: add it into the dashboard in the same space where you can save the filter
    -
    -Step 4: choose the application you want it visible on and the name of the array
    -
    -Look at this simple example below from Purchase, where I want to put on the
    -application's dashboard "Purchases to Approve". After I access the search view
    -and apply the filter for "Purchases to Approve", I can add it immediately to my
    -Purchase dashboard.
    -
    -
    -
    -In less than a minute, the search view is visible on the dashboard
    -
    -
    -
    -Of course, you are free to delete what you don't need or like, but just in case
    -you change your mind there is a reset button to return to the default view.
    -
    -
    -]]> -
    -
    - - - Touchscreen Point of Sale - - - -The brand new OpenERP touchscreen point of sale available with 6.1 allows you
    -to manage your shop sales very easily. It's fully web based so that you don't
    -have to install or deploy any software and all the sales shops can be easily
    -consolidated. It works in connected and disconnected modes so that you can
    -continue to sell if you lose your internet connection.
    -
    -
    -
    -

    Here's a summary of its main features and benefits:


    -
    -100% WEB based
    -
    -
    • available for any touchscreen device (ipod, ipad, any tablet)mobile (with portable devices)
    • no installation required
    • no synchronization needed, completely integrated
    • continue working even when your connection is down if you close your browser, data won't be lost
    • fully web based with a clean interface smart interface

    -
    -You have different options to select your products. You can do it through the
    -barcode reader, just browse through the categories you have put in place (ie.
    -drinks, snacks, meals, etc.), or text search in case neither of the other
    -options work for you. If you need to use the POS for your restaurant, for
    -example, your employees can record at the same time multiple tickets without
    -having to wait to do one transaction at a time. Along, to facilitate payment,
    -the application allows multiple payment methods.
    -
    -The POS application is so simple and accessible to use that your shop or
    -restaurant will never need any other tool to manage orders. Due to its smart
    -and user-friendly interface you don't need any training to learn how to use it.
    -Think of it as an out-of-the-box solution to boost your business' productivity.
    -
    -]]> -
    -
    - -
    -
    diff --git a/addons/document_page/document_page_view.xml b/addons/document_page/document_page_view.xml deleted file mode 100644 index 9afb29c787a..00000000000 --- a/addons/document_page/document_page_view.xml +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - document.page.tree - document.page - child_ids - 100 - - - - - - - - - - - document.page.list - document.page - - - - - - - - - - - - - document.page.form - document.page - - - -

    - - - - - - - - - - -
    -
    - -
    - -
    - -
    -
    - - - document.page.search - document.page - - - - - - - - - - - - - - - - Pages - document.page - [('type','=','content')] - {'default_type': 'content'} - form - tree,form - - - -

    - Click to create a new web page. -

    -
    -
    - - - Category - document.page - [('type','=','category')] - {'default_type': 'category'} - form - tree,form - - - - - - - - document.page.history.tree - document.page.history - - - - - - - - - - - document.page.history.form - document.page.history - -
    -
    - - - Page history - document.page.history - form - tree,form - - - - - -
    -
    diff --git a/addons/document_page/i18n/ar.po b/addons/document_page/i18n/ar.po deleted file mode 100644 index 4a5d1cca30a..00000000000 --- a/addons/document_page/i18n/ar.po +++ /dev/null @@ -1,255 +0,0 @@ -# Arabic translation for openobject-addons -# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:08+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Arabic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "الفئة" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "المشارك الاخير" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "الكاتب" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "القائمة" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "تاريخ الصفحة" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "المحتوى" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "تجميع حسب..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "الاسم" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "النوع" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "تم التعديل عليها بواسطة" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "أو" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "نوع الصفحة" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "معلومات القائمة" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/bg.po b/addons/document_page/i18n/bg.po deleted file mode 100644 index 49bef90299d..00000000000 --- a/addons/document_page/i18n/bg.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:12+0000\n" -"Last-Translator: Boris \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Меню" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Съдържание" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Групиране по..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Заглавие" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Информация за меню" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Страници" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Надменю" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Създадено на" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Резюме" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Име на меню" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата на редакция" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Създай меню" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Отказ" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Различия" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/bs.po b/addons/document_page/i18n/bs.po deleted file mode 100644 index 0df98abacb7..00000000000 --- a/addons/document_page/i18n/bs.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:14+0000\n" -"Last-Translator: Fabien (Open ERP) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/ca.po b/addons/document_page/i18n/ca.po deleted file mode 100644 index fa3b94a4e4b..00000000000 --- a/addons/document_page/i18n/ca.po +++ /dev/null @@ -1,255 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:13+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Últim col·laborador" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menú" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Històric pàgina" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Contingut" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Agrupa per..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Títol" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Assistent 'Crea menú'" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informació del menú" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Diferència" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Pàgines" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menú pare" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Creat el" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Resum" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nom menú" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data modificació" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Crea menú" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancel·la" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Dif." - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/cs.po b/addons/document_page/i18n/cs.po deleted file mode 100644 index 32a3acd3e6b..00000000000 --- a/addons/document_page/i18n/cs.po +++ /dev/null @@ -1,255 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:12+0000\n" -"Last-Translator: Jiří Hajda \n" -"Language-Team: Czech \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" -"X-Poedit-Language: Czech\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Poslední přispěvatel" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Nabídka" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Historie stránky" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Obsah" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Seskupit podle..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Název" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Průvodce vytvořením nabídky" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informace nabídky" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Rozdíly" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Stránky" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Rodičovská nabídka" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Vytvořeno" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Shrnutí" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Jméno nabídky" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum změny" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Vytvořit nabídku" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Zrušit" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Rozdíl" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po deleted file mode 100644 index d5cad430131..00000000000 --- a/addons/document_page/i18n/da.po +++ /dev/null @@ -1,255 +0,0 @@ -# Danish translation for openobject-addons -# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:08+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-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/de.po b/addons/document_page/i18n/de.po deleted file mode 100644 index 80fcf858d9a..00000000000 --- a/addons/document_page/i18n/de.po +++ /dev/null @@ -1,255 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -# Ferdinand Gassauer , 2010. -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-18 06:54+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Kategorie" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Letzer Beitragender" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menü" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Dokumentenseite" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Seitenänderungsverlauf" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Inhalt" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Gruppiert je..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Vorlage" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "diese wird für alle neuen Dokumente dieser Kategorie verwendet" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Titel" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Assistent für Menüerzeugung" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Typ" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Geändert von" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "oder" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Seitentyp" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Menü" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Dokumenten Seite Historie" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Seiten Historie" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Es gibt keine Veränderungen in den Revisionen" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Differenz" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Seiten" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Kategorien" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Obermenü" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Erzeugt am" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Sie müssen zumindest 1 und maximal 2 Revisionen auswählen" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Seiten Historie" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Zusammenfassung" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Webseiten erstellen" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Dokument Historie" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menü Bezeichnung" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Seite" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historie" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Änderung am" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Erzeuge Menü" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Zeige Inhalt" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Warnung!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Abbrechen" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Differenz" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Dokumententyp" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "abhängige Elemente" diff --git a/addons/document_page/i18n/document_page.pot b/addons/document_page/i18n/document_page.pot deleted file mode 100644 index e6332cc864a..00000000000 --- a/addons/document_page/i18n/document_page.pot +++ /dev/null @@ -1,253 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * document_page -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" - diff --git a/addons/document_page/i18n/el.po b/addons/document_page/i18n/el.po deleted file mode 100644 index 7bfc1a2c988..00000000000 --- a/addons/document_page/i18n/el.po +++ /dev/null @@ -1,257 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:12+0000\n" -"Last-Translator: Panagiotis Kranidiotis \n" -"Language-Team: nls@hellug.gr \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" -"X-Poedit-Country: GREECE\n" -"X-Poedit-Language: Greek\n" -"X-Poedit-SourceCharset: utf-8\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Δημιουργός" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Μενού" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Περιεχόμενα" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Τίτλος" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Πληροφορίες Μενού" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Ημερομηνία" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Σελίδες" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Μενού Προέλευσης" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Δημιουργήθηκε στις" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Περίληψη" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Όνομα Μενού" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Ημερομηνία Τροποποίησης" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Δημιουργία Μενού" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Ακύρωση" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Διαφ." - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po deleted file mode 100644 index f046777b380..00000000000 --- a/addons/document_page/i18n/es.po +++ /dev/null @@ -1,257 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-11 21:47+0000\n" -"Last-Translator: Ana Juaristi Olalde \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Categoría" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Último colaborador" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menú" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Página de documento" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Historial página" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Contenido" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Plantilla" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"esto será usado como una plantilla de contenido para todas las páginas de " -"esta categoría." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Título" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Asistente crear menú" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "o" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Tipo de página" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Información del menú" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Historia de página de documento" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Historial de páginas" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "No hay cambios en las revisiones." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Fecha" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Diferencia" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Páginas" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Categorías" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menú padre" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Creado en" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Historial de página" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Resumen" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Crear páginas Web" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Historial del Documento" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nombre menú" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Página" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historial" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Crear menú" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Contenido mostrado" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "¡Advertencia!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Dif." - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Hijos" diff --git a/addons/document_page/i18n/es_AR.po b/addons/document_page/i18n/es_AR.po deleted file mode 100644 index 180e3281a22..00000000000 --- a/addons/document_page/i18n/es_AR.po +++ /dev/null @@ -1,494 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-09-23 14:54+0000\n" -"Last-Translator: Silvana Herrera \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" - -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páginas Wiki" - -#. module: wiki -#: field:wiki.groups,method:0 -msgid "Display Method" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 -msgid "Open Page" -msgstr "Abrir página" - -#. module: wiki -#: field:wiki.groups,menu_id:0 -msgid "Menu" -msgstr "Menú" - -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sección" - -#. module: wiki -#: help:wiki.wiki,toc:0 -msgid "Indicates that this pages have a table of contents or not" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historial Wiki" - -#. module: wiki -#: field:wiki.wiki,minor_edit:0 -msgid "Minor edit" -msgstr "Edición menor" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 -msgid "Content" -msgstr "Contenido" - -#. module: wiki -#: field:wiki.wiki,child_ids:0 -msgid "Child Pages" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,parent_id:0 -msgid "Parent Page" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menú padre" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 -msgid "Title" -msgstr "Título" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,history_id:0 -msgid "History Lines" -msgstr "Líneas del historial" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Page Content" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wiki.py:237 -#, python-format -msgid "There are no changes in revisions" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilice código de sección de la página, por ejemplo 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nombre del menú" - -#. module: wiki -#: field:wiki.groups,notes:0 -msgid "Description" -msgstr "Descripción" - -#. module: wiki -#: field:wiki.wiki,review:0 -msgid "Needs Review" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,review:0 -msgid "" -"Indicates that this page should be reviewed, raising the attention of other " -"contributors" -msgstr "" - -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 -msgid "Menu Information" -msgstr "Información del menú" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history -msgid "Page History" -msgstr "" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "Tree" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Page Template" -msgstr "Plantilla de página" - -#. module: wiki -#: field:wiki.wiki,tags:0 -msgid "Keywords" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki -msgid "" -"With Wiki Pages you can share ideas and questions with your coworkers. You " -"can create a new document that can be linked to one or several applications " -"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " -"There is a basic wiki editing for text format." -msgstr "" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "Warning" -msgstr "Aviso" - -#. module: wiki -#: help:wiki.groups,home:0 -msgid "Required to select home page if display method is Home Page" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,create_date:0 -msgid "Date" -msgstr "Fecha" - -#. module: wiki -#: view:wiki.make.index:0 -msgid "Want to create a Index on Selected Pages ? " -msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: wiki -#: field:wiki.groups,page_ids:0 -msgid "Pages" -msgstr "Páginas" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Group Description" -msgstr "" - -#. module: wiki -#: view:wiki.wiki.page.open:0 -msgid "Want to open a wiki page? " -msgstr "" - -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "¿Crear sección?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 -msgid "Text area" -msgstr "Área de texto" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Meta Information" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,create_date:0 -msgid "Created on" -msgstr "Creado en" - -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 -msgid "Notes" -msgstr "Notas" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "List" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 -msgid "Summary" -msgstr "Resumen" - -#. module: wiki -#: field:wiki.groups,create_date:0 -msgid "Created Date" -msgstr "Fecha de creación" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history -msgid "All Page Histories" -msgstr "Todos los historiales de páginas" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" - -#. module: wiki -#: help:wiki.groups,method:0 -msgid "Define the default behaviour of the menu created on this group" -msgstr "" - -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 -msgid "Close" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "asistente.wiki.historial.mostrar_dif" - -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 -msgid "Wiki Id" -msgstr "ID Wiki" - -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 -msgid "Home Page" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,parent_id:0 -msgid "Allows you to link with the other page with in the current topic" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Modification Information" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 -msgid "Wiki" -msgstr "Wiki" - -#. module: wiki -#: field:wiki.wiki,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Configuration" -msgstr "Configuración" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 -msgid "Create Index" -msgstr "Crear índice" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" -"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Group By..." -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 -msgid "Create Menu" -msgstr "Crear menú" - -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 -msgid "This is a major edit ?" -msgstr "¿Es ésta una edición mayor?" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos Wiki" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Topic" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 -msgid "Modify By" -msgstr "Modificado por" - -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 -#, python-format -msgid "Table of Contents" -msgstr "Tabla de contenidos" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open -msgid "wiz open page" -msgstr "" - -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 -msgid "Diff" -msgstr "Dif." - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "" - -#~ msgid "Child Groups" -#~ msgstr "Grupos hijos" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Enlaces grupos wiki" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestión de documentos - Wiki" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuración Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crear un menú" - -#~ msgid "History Differance" -#~ msgstr "Diferencia de historial" - -#~ msgid "Group Home Page" -#~ msgstr "Página de inicio del grupo" - -#~ msgid "Differences" -#~ msgstr "Diferencias" - -#~ msgid "Last Author" -#~ msgstr "Último autor" - -#~ msgid "Document Management" -#~ msgstr "Gestión de documentos" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "XML inválido para la definición de la vista !" - -#~ msgid "Parent Group" -#~ msgstr "Grupo padre" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferencia Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ msgid "History" -#~ msgstr "Historial" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" diff --git a/addons/document_page/i18n/es_CR.po b/addons/document_page/i18n/es_CR.po deleted file mode 100644 index 79f50eaa0c8..00000000000 --- a/addons/document_page/i18n/es_CR.po +++ /dev/null @@ -1,520 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-02-20 01:10+0000\n" -"Last-Translator: Freddy Gonzalez \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-21 05:55+0000\n" -"X-Generator: Launchpad (build 14838)\n" -"Language: \n" - -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páginas Wiki" - -#. module: wiki -#: field:wiki.groups,method:0 -msgid "Display Method" -msgstr "Método de visualización" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 -msgid "Open Page" -msgstr "Abrir página" - -#. module: wiki -#: field:wiki.groups,menu_id:0 -msgid "Menu" -msgstr "Menú" - -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sección" - -#. module: wiki -#: help:wiki.wiki,toc:0 -msgid "Indicates that this pages have a table of contents or not" -msgstr "Indica si estas páginas tienen una tabla de contenidos o no." - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historial Wiki" - -#. module: wiki -#: field:wiki.wiki,minor_edit:0 -msgid "Minor edit" -msgstr "Edición menor" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 -msgid "Content" -msgstr "Contenido" - -#. module: wiki -#: field:wiki.wiki,child_ids:0 -msgid "Child Pages" -msgstr "Páginas hijas" - -#. module: wiki -#: field:wiki.wiki,parent_id:0 -msgid "Parent Page" -msgstr "Página padre" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 -msgid "Last Contributor" -msgstr "Último colaborador" - -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menú padre" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "No hay sección en esta página" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 -msgid "Title" -msgstr "Título" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu -msgid "Wizard Create Menu" -msgstr "Asistente crear menú" - -#. module: wiki -#: field:wiki.wiki,history_id:0 -msgid "History Lines" -msgstr "Líneas historial" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Page Content" -msgstr "Contenido página" - -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "Warning !" -msgstr "¡Aviso!" - -#. module: wiki -#: code:addons/wiki/wiki.py:237 -#, python-format -msgid "There are no changes in revisions" -msgstr "No hay cambios en revisiones" - -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilice código de sección de la página, por ejemplo 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nombre menú" - -#. module: wiki -#: field:wiki.groups,notes:0 -msgid "Description" -msgstr "Descripción" - -#. module: wiki -#: field:wiki.wiki,review:0 -msgid "Needs Review" -msgstr "Necesita revisión" - -#. module: wiki -#: help:wiki.wiki,review:0 -msgid "" -"Indicates that this page should be reviewed, raising the attention of other " -"contributors" -msgstr "" -"Indica que esta página debería ser revisada, captando la atención de otros " -"colaboradores." - -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 -msgid "Menu Information" -msgstr "Información del menú" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history -msgid "Page History" -msgstr "Historial página" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "Tree" -msgstr "Árbol" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Page Template" -msgstr "Plantilla de página" - -#. module: wiki -#: field:wiki.wiki,tags:0 -msgid "Keywords" -msgstr "Palabras clave" - -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki -msgid "" -"With Wiki Pages you can share ideas and questions with your coworkers. You " -"can create a new document that can be linked to one or several applications " -"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " -"There is a basic wiki editing for text format." -msgstr "" -"Con páginas wiki puede compartir ideas y preguntas con sus compañeros de " -"trabajo. Puede crear un nuevo documento que puede ser relacionado con una o " -"varias aplicaciones (CRM, Ventas, etc.). Puede utilizar palabras clave para " -"facilitar el acceso a sus páginas wiki. Existe un editor básico para el " -"formato texto del wiki." - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "Warning" -msgstr "Advertencia" - -#. module: wiki -#: help:wiki.groups,home:0 -msgid "Required to select home page if display method is Home Page" -msgstr "" -"Es obligado seleccionar la página de inicio si el método de visualización es " -"Página inicial." - -#. module: wiki -#: field:wiki.wiki.history,create_date:0 -msgid "Date" -msgstr "Fecha" - -#. module: wiki -#: view:wiki.make.index:0 -msgid "Want to create a Index on Selected Pages ? " -msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 -msgid "Difference" -msgstr "Diferencia" - -#. module: wiki -#: field:wiki.groups,page_ids:0 -msgid "Pages" -msgstr "Páginas" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Group Description" -msgstr "Descripción grupo" - -#. module: wiki -#: view:wiki.wiki.page.open:0 -msgid "Want to open a wiki page? " -msgstr "¿Desea abrir una página wiki? " - -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "¿Crear sección?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 -msgid "Text area" -msgstr "Área de texto" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Meta Information" -msgstr "Meta información" - -#. module: wiki -#: field:wiki.wiki,create_date:0 -msgid "Created on" -msgstr "Creado en" - -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 -msgid "Notes" -msgstr "Notas" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "List" -msgstr "Lista" - -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 -msgid "Summary" -msgstr "Resumen" - -#. module: wiki -#: field:wiki.groups,create_date:0 -msgid "Created Date" -msgstr "Fecha de creación" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history -msgid "All Page Histories" -msgstr "Todos los historiales de páginas" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" - -#. module: wiki -#: help:wiki.groups,method:0 -msgid "Define the default behaviour of the menu created on this group" -msgstr "Define el comportamiento por defecto del menú creado en este grupo." - -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 -msgid "Close" -msgstr "Cerrar" - -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "asistente.wiki.historial.mostrar_dif" - -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 -msgid "Wiki Id" -msgstr "ID Wiki" - -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 -msgid "Home Page" -msgstr "Página inicial" - -#. module: wiki -#: help:wiki.wiki,parent_id:0 -msgid "Allows you to link with the other page with in the current topic" -msgstr "Le permite enlazar con la otra página dentro del tema actual." - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Modification Information" -msgstr "Información modificación" - -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Tema, también denominado Grupo wiki." - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 -msgid "Wiki" -msgstr "Wiki" - -#. module: wiki -#: field:wiki.wiki,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Configuration" -msgstr "Configuración" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 -msgid "Create Index" -msgstr "Crear índice" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" -"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 -msgid "Create Menu" -msgstr "Crear menú" - -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 -msgid "This is a major edit ?" -msgstr "¿Es ésta una edición mayor?" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos Wiki" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Topic" -msgstr "Tema" - -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 -msgid "Modify By" -msgstr "Modificado por" - -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 -#, python-format -msgid "Table of Contents" -msgstr "Tabla de contenido" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Abrir página wiki" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open -msgid "wiz open page" -msgstr "asistente abrir página" - -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 -msgid "Diff" -msgstr "Dif." - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "Páginas esperando revisión" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "Buscar página" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Enlaces grupos wiki" - -#~ msgid "Child Groups" -#~ msgstr "Grupos hijos" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuración Wiki" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestión de documentos - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crear un menú" - -#~ msgid "History Differance" -#~ msgstr "Diferencia historial" - -#~ msgid "Group Home Page" -#~ msgstr "Página de inicio del grupo" - -#~ msgid "Last Author" -#~ msgstr "Último autor" - -#~ msgid "Differences" -#~ msgstr "Diferencias" - -#~ msgid "Document Management" -#~ msgstr "Gestión de documentos" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" - -#~ msgid "Parent Group" -#~ msgstr "Grupo padre" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferencia Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ msgid "History" -#~ msgstr "Historial" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "El módulo base para gestionar documentos (wiki)\n" -#~ "\n" -#~ "gestione los grupos, páginas e historial del wiki\n" -#~ " " diff --git a/addons/document_page/i18n/es_MX.po b/addons/document_page/i18n/es_MX.po deleted file mode 100644 index 13ac328d21e..00000000000 --- a/addons/document_page/i18n/es_MX.po +++ /dev/null @@ -1,535 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-11 11:16+0000\n" -"PO-Revision-Date: 2011-01-13 02:46+0000\n" -"Last-Translator: Carlos @ smile.fr \n" -"Language-Team: \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:38+0000\n" -"X-Generator: Launchpad (build 13830)\n" - -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páginas Wiki" - -#. module: wiki -#: field:wiki.groups,method:0 -msgid "Display Method" -msgstr "Método de visualización" - -#. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 -msgid "Open Page" -msgstr "Abrir página" - -#. module: wiki -#: field:wiki.groups,menu_id:0 -msgid "Menu" -msgstr "Menú" - -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sección" - -#. module: wiki -#: help:wiki.wiki,toc:0 -msgid "Indicates that this pages have a table of contents or not" -msgstr "Indica si estas páginas tienen una tabla de contenidos o no." - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history -#: view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historial Wiki" - -#. module: wiki -#: field:wiki.wiki,minor_edit:0 -msgid "Minor edit" -msgstr "Edición menor" - -#. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,text_area:0 -msgid "Content" -msgstr "Contenido" - -#. module: wiki -#: field:wiki.wiki,child_ids:0 -msgid "Child Pages" -msgstr "Páginas hijas" - -#. module: wiki -#: field:wiki.wiki,parent_id:0 -msgid "Parent Page" -msgstr "Página padre" - -#. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,write_uid:0 -msgid "Last Contributor" -msgstr "Último colaborador" - -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menú padre" - -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Tema, también denominado Grupo wiki." - -#. module: wiki -#: field:wiki.groups,name:0 -#: view:wiki.wiki:0 -#: field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 -msgid "Title" -msgstr "Título" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu -msgid "Wizard Create Menu" -msgstr "Asistente crear menú" - -#. module: wiki -#: field:wiki.wiki,history_id:0 -msgid "History Lines" -msgstr "Líneas historial" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Page Content" -msgstr "Contenido página" - -#. module: wiki -#: code:addons/wiki/wiki.py:236 -#, python-format -msgid "Warning !" -msgstr "¡Aviso!" - -#. module: wiki -#: code:addons/wiki/wiki.py:236 -#, python-format -msgid "There are no changes in revisions" -msgstr "No hay cambios en revisiones" - -#. module: wiki -#: model:ir.module.module,shortdesc:wiki.module_meta_information -msgid "Document Management - Wiki" -msgstr "Gestión de documentos - Wiki" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nombre menú" - -#. module: wiki -#: field:wiki.groups,notes:0 -msgid "Description" -msgstr "Descripción" - -#. module: wiki -#: field:wiki.wiki,review:0 -msgid "Needs Review" -msgstr "Necesita revisión" - -#. module: wiki -#: help:wiki.wiki,review:0 -msgid "" -"Indicates that this page should be reviewed, raising the attention of other " -"contributors" -msgstr "" -"Indica que esta página debería ser revisada, captando la atención de otros " -"colaboradores." - -#. module: wiki -#: view:wiki.create.menu:0 -#: view:wiki.make.index:0 -msgid "Menu Information" -msgstr "Información del menú" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history -msgid "Page History" -msgstr "Historial página" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "Tree" -msgstr "Árbol" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Page Template" -msgstr "Plantilla de página" - -#. module: wiki -#: field:wiki.wiki,tags:0 -msgid "Keywords" -msgstr "Palabras clave" - -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki -msgid "" -"With Wiki Pages you can share ideas and questions with your coworkers. You " -"can create a new document that can be linked to one or several applications " -"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " -"There is a basic wiki editing for text format." -msgstr "" -"Con páginas wiki puede compartir ideas y preguntas con sus compañeros de " -"trabajo. Puede crear un nuevo documento que puede ser relacionado con una o " -"varias aplicaciones (CRM, Ventas, etc.). Puede utilizar palabras clave para " -"facilitar el acceso a sus páginas wiki. Existe un editor básico para el " -"formato texto del wiki." - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "Warning" -msgstr "Advertencia" - -#. module: wiki -#: field:wiki.wiki,create_date:0 -msgid "Created on" -msgstr "Creado en" - -#. module: wiki -#: field:wiki.wiki.history,create_date:0 -msgid "Date" -msgstr "Fecha" - -#. module: wiki -#: view:wiki.make.index:0 -msgid "Want to create a Index on Selected Pages ? " -msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 -msgid "Difference" -msgstr "Diferencia" - -#. module: wiki -#: field:wiki.groups,page_ids:0 -msgid "Pages" -msgstr "Páginas" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Group Description" -msgstr "Descripción grupo" - -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilice código de sección de la página, por ejemplo 1.2.1" - -#. module: wiki -#: view:wiki.wiki.page.open:0 -msgid "Want to open a wiki page? " -msgstr "¿Desea abrir una página wiki? " - -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "¿Crear sección?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 -msgid "Text area" -msgstr "Área de texto" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Meta Information" -msgstr "Meta información" - -#. module: wiki -#: model:ir.module.module,description:wiki.module_meta_information -msgid "" -"\n" -"The base module to manage documents(wiki)\n" -"\n" -"keep track for the wiki groups, pages, and history\n" -" " -msgstr "" -"\n" -"El módulo base para gestionar documentos (wiki)\n" -"\n" -"gestione los grupos, páginas e historial del wiki\n" -" " - -#. module: wiki -#: view:wiki.groups:0 -#: view:wizard.wiki.history.show_diff:0 -msgid "Notes" -msgstr "Notas" - -#. module: wiki -#: help:wiki.groups,home:0 -msgid "Required to select home page if display method is Home Page" -msgstr "" -"Es obligado seleccionar la página de inicio si el método de visualización es " -"Página inicial." - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "List" -msgstr "Lista" - -#. module: wiki -#: field:wiki.wiki,summary:0 -#: field:wiki.wiki.history,summary:0 -msgid "Summary" -msgstr "Resumen" - -#. module: wiki -#: field:wiki.groups,create_date:0 -msgid "Created Date" -msgstr "Fecha de creación" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history -msgid "All Page Histories" -msgstr "Todos los historiales de páginas" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" - -#. module: wiki -#: help:wiki.groups,method:0 -msgid "Define the default behaviour of the menu created on this group" -msgstr "Define el comportamiento por defecto del menú creado en este grupo." - -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 -msgid "Close" -msgstr "Cerrar" - -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "asistente.wiki.historial.mostrar_dif" - -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 -msgid "Wiki Id" -msgstr "ID Wiki" - -#. module: wiki -#: field:wiki.groups,home:0 -#: selection:wiki.groups,method:0 -msgid "Home Page" -msgstr "Página inicial" - -#. module: wiki -#: help:wiki.wiki,parent_id:0 -msgid "Allows you to link with the other page with in the current topic" -msgstr "Le permite enlazar con la otra página dentro del tema actual." - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Modification Information" -msgstr "Información modificación" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration -#: view:wiki.wiki:0 -msgid "Wiki" -msgstr "Wiki" - -#. module: wiki -#: field:wiki.wiki,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Configuration" -msgstr "Configuración" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index -#: view:wiki.make.index:0 -msgid "Create Index" -msgstr "Crear índice" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" -"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 -#: view:wiki.groups:0 -#: view:wiki.make.index:0 -msgid "Create Menu" -msgstr "Crear menú" - -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 -msgid "This is a major edit ?" -msgstr "¿Es ésta una edición mayor?" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups -#: view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos Wiki" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Topic" -msgstr "Tema" - -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 -msgid "Modify By" -msgstr "Modificado por" - -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 -#, python-format -msgid "Table of Contents" -msgstr "Tabla de contenido" - -#. module: wiki -#: view:wiki.groups:0 -#: view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Abrir página wiki" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open -msgid "wiz open page" -msgstr "asistente abrir página" - -#. module: wiki -#: view:wiki.create.menu:0 -#: view:wiki.make.index:0 -#: view:wiki.wiki.page.open:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 -msgid "Diff" -msgstr "Dif." - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "Páginas esperando revisión" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "Buscar página" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Enlaces grupos wiki" - -#~ msgid "Child Groups" -#~ msgstr "Grupos hijos" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuración Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crear un menú" - -#~ msgid "History Differance" -#~ msgstr "Diferencia historial" - -#~ msgid "Group Home Page" -#~ msgstr "Página de inicio del grupo" - -#~ msgid "Last Author" -#~ msgstr "Último autor" - -#~ msgid "Differences" -#~ msgstr "Diferencias" - -#~ msgid "Document Management" -#~ msgstr "Gestión de documentos" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" - -#~ msgid "Parent Group" -#~ msgstr "Grupo padre" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferencia Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ msgid "History" -#~ msgstr "Historial" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." diff --git a/addons/document_page/i18n/es_VE.po b/addons/document_page/i18n/es_VE.po deleted file mode 100644 index 13ac328d21e..00000000000 --- a/addons/document_page/i18n/es_VE.po +++ /dev/null @@ -1,535 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-11 11:16+0000\n" -"PO-Revision-Date: 2011-01-13 02:46+0000\n" -"Last-Translator: Carlos @ smile.fr \n" -"Language-Team: \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:38+0000\n" -"X-Generator: Launchpad (build 13830)\n" - -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páginas Wiki" - -#. module: wiki -#: field:wiki.groups,method:0 -msgid "Display Method" -msgstr "Método de visualización" - -#. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 -msgid "Open Page" -msgstr "Abrir página" - -#. module: wiki -#: field:wiki.groups,menu_id:0 -msgid "Menu" -msgstr "Menú" - -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sección" - -#. module: wiki -#: help:wiki.wiki,toc:0 -msgid "Indicates that this pages have a table of contents or not" -msgstr "Indica si estas páginas tienen una tabla de contenidos o no." - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history -#: view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historial Wiki" - -#. module: wiki -#: field:wiki.wiki,minor_edit:0 -msgid "Minor edit" -msgstr "Edición menor" - -#. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,text_area:0 -msgid "Content" -msgstr "Contenido" - -#. module: wiki -#: field:wiki.wiki,child_ids:0 -msgid "Child Pages" -msgstr "Páginas hijas" - -#. module: wiki -#: field:wiki.wiki,parent_id:0 -msgid "Parent Page" -msgstr "Página padre" - -#. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,write_uid:0 -msgid "Last Contributor" -msgstr "Último colaborador" - -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menú padre" - -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Tema, también denominado Grupo wiki." - -#. module: wiki -#: field:wiki.groups,name:0 -#: view:wiki.wiki:0 -#: field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 -msgid "Title" -msgstr "Título" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu -msgid "Wizard Create Menu" -msgstr "Asistente crear menú" - -#. module: wiki -#: field:wiki.wiki,history_id:0 -msgid "History Lines" -msgstr "Líneas historial" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Page Content" -msgstr "Contenido página" - -#. module: wiki -#: code:addons/wiki/wiki.py:236 -#, python-format -msgid "Warning !" -msgstr "¡Aviso!" - -#. module: wiki -#: code:addons/wiki/wiki.py:236 -#, python-format -msgid "There are no changes in revisions" -msgstr "No hay cambios en revisiones" - -#. module: wiki -#: model:ir.module.module,shortdesc:wiki.module_meta_information -msgid "Document Management - Wiki" -msgstr "Gestión de documentos - Wiki" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nombre menú" - -#. module: wiki -#: field:wiki.groups,notes:0 -msgid "Description" -msgstr "Descripción" - -#. module: wiki -#: field:wiki.wiki,review:0 -msgid "Needs Review" -msgstr "Necesita revisión" - -#. module: wiki -#: help:wiki.wiki,review:0 -msgid "" -"Indicates that this page should be reviewed, raising the attention of other " -"contributors" -msgstr "" -"Indica que esta página debería ser revisada, captando la atención de otros " -"colaboradores." - -#. module: wiki -#: view:wiki.create.menu:0 -#: view:wiki.make.index:0 -msgid "Menu Information" -msgstr "Información del menú" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history -msgid "Page History" -msgstr "Historial página" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "Tree" -msgstr "Árbol" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Page Template" -msgstr "Plantilla de página" - -#. module: wiki -#: field:wiki.wiki,tags:0 -msgid "Keywords" -msgstr "Palabras clave" - -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki -msgid "" -"With Wiki Pages you can share ideas and questions with your coworkers. You " -"can create a new document that can be linked to one or several applications " -"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " -"There is a basic wiki editing for text format." -msgstr "" -"Con páginas wiki puede compartir ideas y preguntas con sus compañeros de " -"trabajo. Puede crear un nuevo documento que puede ser relacionado con una o " -"varias aplicaciones (CRM, Ventas, etc.). Puede utilizar palabras clave para " -"facilitar el acceso a sus páginas wiki. Existe un editor básico para el " -"formato texto del wiki." - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "Warning" -msgstr "Advertencia" - -#. module: wiki -#: field:wiki.wiki,create_date:0 -msgid "Created on" -msgstr "Creado en" - -#. module: wiki -#: field:wiki.wiki.history,create_date:0 -msgid "Date" -msgstr "Fecha" - -#. module: wiki -#: view:wiki.make.index:0 -msgid "Want to create a Index on Selected Pages ? " -msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 -msgid "Difference" -msgstr "Diferencia" - -#. module: wiki -#: field:wiki.groups,page_ids:0 -msgid "Pages" -msgstr "Páginas" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Group Description" -msgstr "Descripción grupo" - -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilice código de sección de la página, por ejemplo 1.2.1" - -#. module: wiki -#: view:wiki.wiki.page.open:0 -msgid "Want to open a wiki page? " -msgstr "¿Desea abrir una página wiki? " - -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "¿Crear sección?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 -msgid "Text area" -msgstr "Área de texto" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Meta Information" -msgstr "Meta información" - -#. module: wiki -#: model:ir.module.module,description:wiki.module_meta_information -msgid "" -"\n" -"The base module to manage documents(wiki)\n" -"\n" -"keep track for the wiki groups, pages, and history\n" -" " -msgstr "" -"\n" -"El módulo base para gestionar documentos (wiki)\n" -"\n" -"gestione los grupos, páginas e historial del wiki\n" -" " - -#. module: wiki -#: view:wiki.groups:0 -#: view:wizard.wiki.history.show_diff:0 -msgid "Notes" -msgstr "Notas" - -#. module: wiki -#: help:wiki.groups,home:0 -msgid "Required to select home page if display method is Home Page" -msgstr "" -"Es obligado seleccionar la página de inicio si el método de visualización es " -"Página inicial." - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "List" -msgstr "Lista" - -#. module: wiki -#: field:wiki.wiki,summary:0 -#: field:wiki.wiki.history,summary:0 -msgid "Summary" -msgstr "Resumen" - -#. module: wiki -#: field:wiki.groups,create_date:0 -msgid "Created Date" -msgstr "Fecha de creación" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history -msgid "All Page Histories" -msgstr "Todos los historiales de páginas" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" - -#. module: wiki -#: help:wiki.groups,method:0 -msgid "Define the default behaviour of the menu created on this group" -msgstr "Define el comportamiento por defecto del menú creado en este grupo." - -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 -msgid "Close" -msgstr "Cerrar" - -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "asistente.wiki.historial.mostrar_dif" - -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 -msgid "Wiki Id" -msgstr "ID Wiki" - -#. module: wiki -#: field:wiki.groups,home:0 -#: selection:wiki.groups,method:0 -msgid "Home Page" -msgstr "Página inicial" - -#. module: wiki -#: help:wiki.wiki,parent_id:0 -msgid "Allows you to link with the other page with in the current topic" -msgstr "Le permite enlazar con la otra página dentro del tema actual." - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Modification Information" -msgstr "Información modificación" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration -#: view:wiki.wiki:0 -msgid "Wiki" -msgstr "Wiki" - -#. module: wiki -#: field:wiki.wiki,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Configuration" -msgstr "Configuración" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index -#: view:wiki.make.index:0 -msgid "Create Index" -msgstr "Crear índice" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" -"¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 -#: view:wiki.groups:0 -#: view:wiki.make.index:0 -msgid "Create Menu" -msgstr "Crear menú" - -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 -msgid "This is a major edit ?" -msgstr "¿Es ésta una edición mayor?" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups -#: view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos Wiki" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Topic" -msgstr "Tema" - -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 -msgid "Modify By" -msgstr "Modificado por" - -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 -#, python-format -msgid "Table of Contents" -msgstr "Tabla de contenido" - -#. module: wiki -#: view:wiki.groups:0 -#: view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Abrir página wiki" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open -msgid "wiz open page" -msgstr "asistente abrir página" - -#. module: wiki -#: view:wiki.create.menu:0 -#: view:wiki.make.index:0 -#: view:wiki.wiki.page.open:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 -msgid "Diff" -msgstr "Dif." - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "Páginas esperando revisión" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "Buscar página" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Enlaces grupos wiki" - -#~ msgid "Child Groups" -#~ msgstr "Grupos hijos" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuración Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crear un menú" - -#~ msgid "History Differance" -#~ msgstr "Diferencia historial" - -#~ msgid "Group Home Page" -#~ msgstr "Página de inicio del grupo" - -#~ msgid "Last Author" -#~ msgstr "Último autor" - -#~ msgid "Differences" -#~ msgstr "Diferencias" - -#~ msgid "Document Management" -#~ msgstr "Gestión de documentos" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" - -#~ msgid "Parent Group" -#~ msgstr "Grupo padre" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferencia Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ msgid "History" -#~ msgstr "Historial" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." diff --git a/addons/document_page/i18n/et.po b/addons/document_page/i18n/et.po deleted file mode 100644 index 13cd9ce58be..00000000000 --- a/addons/document_page/i18n/et.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:11+0000\n" -"Last-Translator: Ahti Hinnov \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menüü" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Sisu" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Tiitel" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Menüü info" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Kuupäev" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Lehekülgi" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Ülemmenüü" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Loodud" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Kokkuvõte" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menüü nimi" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Muutmise kuupäev" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Loo menüü" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Loobu" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Erinevus" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/fi.po b/addons/document_page/i18n/fi.po deleted file mode 100644 index 1305adbc2b1..00000000000 --- a/addons/document_page/i18n/fi.po +++ /dev/null @@ -1,255 +0,0 @@ -# Finnish translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:13+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: Finnish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Viimeisin tiedon lisääjä" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Tekijä" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Valikko" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Sivuhistoria" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Sisältö" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Ryhmittely.." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Otsikko" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Menun luonti velho" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Valikon tiedot" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Päivämäärä" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Ero" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Sivut" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Ylätason valikko" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Luotu" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Yhteenveto" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Valikon nimi" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Muokkauspäivä" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Luo valikko" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Peruuta" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Erot" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/fr.po b/addons/document_page/i18n/fr.po deleted file mode 100644 index a303cce005f..00000000000 --- a/addons/document_page/i18n/fr.po +++ /dev/null @@ -1,258 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-18 23:39+0000\n" -"Last-Translator: Nicolas JEUDY \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Catégorie" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Dernier contributeur" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Auteur" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Gestion documentaire de pages Web" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Historique de la page" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Contenu" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Grouper par ..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Modèle" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"Ceci sera utilisé comment contenu initial de toutes les nouvelles pages de " -"cette catégorie." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Titre" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Menu de création d'un wizard" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Type" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modifié par" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "ou" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Type de page" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Menu Information" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Historique du document" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Historique des pages" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Il n'y a aucun changement dans les révisions." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Date" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Différence" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Pages" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Catégories" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu Parent" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Créé le" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"Vous devez sélectionner au minimum une et au maximum deux versions " -"d'historique" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Historique de la page" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Sommaire" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Créer des pages Web" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Historique du document" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nom du menu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Page" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historique" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Date de modification" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Créer un menu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Contenu affiché" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Avertissement!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Annuler" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Comparer" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Type de document" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Enfant" diff --git a/addons/document_page/i18n/gl.po b/addons/document_page/i18n/gl.po deleted file mode 100644 index 45768356720..00000000000 --- a/addons/document_page/i18n/gl.po +++ /dev/null @@ -1,256 +0,0 @@ -# translation of wiki-es.po to Galego -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -# Frco. Javier Rial Rodríguez , 2009. -msgid "" -msgstr "" -"Project-Id-Version: wiki-es\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:12+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: Galego \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menú" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Contido" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Título" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Información do menú" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Páxinas" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menú principal" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Creado o" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Resumo" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nome do menú" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data de modificación" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Crear menú" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Diff" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/hr.po b/addons/document_page/i18n/hr.po deleted file mode 100644 index 8a728d49132..00000000000 --- a/addons/document_page/i18n/hr.po +++ /dev/null @@ -1,256 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:11+0000\n" -"Last-Translator: Goran Kliska \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Kategorija" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Zadnji doprinos" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Izbornik" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Stranica dokumenata" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Povijest stranice" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Sadržaj" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Grupiraj po..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Predložak" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"ovo će biti korišteno kao predložak sadržaja za sve nove stranice u ovoj " -"kategoriji." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Naslov" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Wizard Create Menu" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tip" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Izmjenio" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "ili" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Tip stranice" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informacije o izborniku" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Povijest stranica Dokumenata" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Povijest stranice" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Nema izmjena u revizijama" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Razlika" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Stranice" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Kategorije" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Nadređeni izbornik" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Datum kreiranja" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Morate odabrati minimum jednu ili maksimum dvije revizije!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Povijest stranica" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Sažetak" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Kreiraj web stranice" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Povijest dokumenata" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Naziv izbornika" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Stranica" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Povijest" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum promjene" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Kreiraj izbornik" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Prikazani sadržaj" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Upozorenje!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Odustani" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Razlika" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Vrsta dokumenta" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Podređeni" diff --git a/addons/document_page/i18n/hu.po b/addons/document_page/i18n/hu.po deleted file mode 100644 index fa4c7af2edc..00000000000 --- a/addons/document_page/i18n/hu.po +++ /dev/null @@ -1,257 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:16+0000\n" -"Last-Translator: Krisztian Eyssen \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Kategória" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Utolsó közreműködő" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Szerző" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menü" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Documentum oldal" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Oldal előzmény" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Tartalom" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Csoportosítás..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Sablon" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"ez mint tartalom sablon lesz használva az összes ilyen kategóriájú új " -"oldalhoz." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Pozíció" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Menü létrehozás varázsló" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Típus" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Által módosítva" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "vagy" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Oldal típus" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Menü infrormáció" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Dokumantum oldal előzmény" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Oldal előzmény" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Az előzményekben nem történt változtatás." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dátum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Különbség" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Oldalok" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Kategóriák" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Főmenü" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Létrehozás dátuma" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"Ki kell választani minimum egy vagy maximum kettő átvizsgálás előzményt." - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Oldal előzmény" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Összegzés" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Weboldalak létrehozása" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Dokumentumok előzménye" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menü" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Oldal" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Előzmény" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Módosítás dátuma" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Menü létrehozás" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Tartalom megjelenítése" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Figyelem!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Mégsem" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Különbség" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Dokumentumtípus" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Alárendelt" diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po deleted file mode 100644 index b89b330dea7..00000000000 --- a/addons/document_page/i18n/id.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:08+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/it.po b/addons/document_page/i18n/it.po deleted file mode 100644 index d3e32520235..00000000000 --- a/addons/document_page/i18n/it.po +++ /dev/null @@ -1,258 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-20 23:11+0000\n" -"Last-Translator: Sergio Corato \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Categoria" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Ultimo collaboratore" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autore" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Pagina documento" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Cronologia pagina" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Contenuto" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Raggruppa per..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Modello" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"sarà usato come modello contenuto per tutte le nuove pagine di questa " -"categoria." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Titolo" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Wizard creazione menu" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificato Da" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "o" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Tipo di pagina" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informazioni Menu" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Cronologia Pagina Documento" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Cronologia pagine" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Non ci sono modifiche nelle revisioni." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Differenze" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Pagine" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Categorie" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu Superiore" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Creato il" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"E' necessario selezionare almeno una o massimo due revisioni della " -"cronologia!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Cronologia pagina" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Riepilogo" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Crea pagine web" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Cronologia documento" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nome Menu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Pagina" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Cronologia" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data di Modifica" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Crea Menu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Contenuto Visualizzato" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Attenzione!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancella" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Differenze" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Tipo Documento" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Figlio" diff --git a/addons/document_page/i18n/ja.po b/addons/document_page/i18n/ja.po deleted file mode 100644 index 06cd060d4d4..00000000000 --- a/addons/document_page/i18n/ja.po +++ /dev/null @@ -1,255 +0,0 @@ -# Japanese translation for openobject-addons -# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:11+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: Japanese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "最終貢献者" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "著者" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "メニュー" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "ページ履歴" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "コンテンツ" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "グループ化…" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "タイトル" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "メニュー作成ウィザード" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "メニュー情報" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日付" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "差分" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "ページ" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "親メニュー" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "作成日" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "要約" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "メニュー名" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "変更日" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "メニューの作成" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "キャンセル" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "差分" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/ko.po b/addons/document_page/i18n/ko.po deleted file mode 100644 index 4d78179833c..00000000000 --- a/addons/document_page/i18n/ko.po +++ /dev/null @@ -1,255 +0,0 @@ -# Korean translation for openobject-addons -# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:14+0000\n" -"Last-Translator: CSro \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "저자" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "메뉴" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "컨텐트" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "제목" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "메뉴 정보" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "날짜" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "페이지" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "부모 메뉴" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "생성 날짜" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "요약" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "메뉴 이름" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "수정 날짜" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "메뉴 만들기" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "취소" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Diff" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/lt.po b/addons/document_page/i18n/lt.po deleted file mode 100644 index 8cd187b5c9d..00000000000 --- a/addons/document_page/i18n/lt.po +++ /dev/null @@ -1,255 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# giedrius , 2010. -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:14+0000\n" -"Last-Translator: Giedrius Slavinskas - inovera.lt \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" -"Language: lt\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autorius" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Meniu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Turinys" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Antraštė" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Meniu informacija" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Puslapiai" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Bazinis meniu" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Sukurta" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Santrauka" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Meniu pavadinimas" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Modifikavimo data" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Sukurti meniu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Atšaukti" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Skirtumas" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po deleted file mode 100644 index 93def7a4fb8..00000000000 --- a/addons/document_page/i18n/lv.po +++ /dev/null @@ -1,255 +0,0 @@ -# Latvian translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:13+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: Latvian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Pēdējais Papildinājs" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autors" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Izvēlne" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Lapas Vēsture" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Saturs" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Grupēt pēc..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Virsraksts" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Izvēlnes Veidošanas Veidnis" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Izvēlnes Informācija" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datums" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Atšķirības" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Lapas" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "VirsIzvēlne" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Izveidots" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Kopsavilkums" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Izvēlnes Nosaukums" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Izmaiņu Datums" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Izveidot Izvēlni" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Atcelt" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Atšķirības" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/mk.po b/addons/document_page/i18n/mk.po deleted file mode 100644 index 36f44d12765..00000000000 --- a/addons/document_page/i18n/mk.po +++ /dev/null @@ -1,258 +0,0 @@ -# Macedonian translation for openobject-addons -# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-03-01 17:55+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Macedonian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Категорија" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Последен соработник" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Мени" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Страница на документ" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Историја на страница" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Содржина" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Групирај по..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Урнек" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"кој ќе биде употребен како урнек за содржина за сите нови страници од оваа " -"категорија." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Титула" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Мени Креирање на Волшебник" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tип" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Изменето од" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "или" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Тип на страница" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Мени Информации" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Историја на страница на документ" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Историја на страници" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Нема измени во ревизиите." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Датум" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Разлика" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Страници" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Категории" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Мени родител" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Креирано на" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"Треба да селектиарте минимум една или максимум две ревизии на историја!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Историја на страница" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Резиме" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Креирај веб странци" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Историја на документот" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Име на мени" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Страница" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Историја" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Датум на измена" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Креирај Мени" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Прикажана содржина" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Предупредување!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Откажи" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Разлика" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Тип документ" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Деца" diff --git a/addons/document_page/i18n/mn.po b/addons/document_page/i18n/mn.po deleted file mode 100644 index d416d5943a3..00000000000 --- a/addons/document_page/i18n/mn.po +++ /dev/null @@ -1,255 +0,0 @@ -# Mongolian translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:13+0000\n" -"Last-Translator: ub121 \n" -"Language-Team: Mongolian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Ангилал" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Зохиогч" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Цэс" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Баримтын Хуудас" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Агуулга" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Загвар" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Гарчиг" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Хуудасны төрөл" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Цэсний мэдээлэл" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Баримтын Хуудасны Түүх" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Хуудсуудын Түүх" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Огноо" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Хуудсууд" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Толгой цэс" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Үүсгэсэн" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Хуудсын Түүх" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Хураангуй" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Веб хуудсууд үүсгэх" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Баримтын Түүх" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Цэсний нэр" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Зассан огноо" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Цэс үүсгэх" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Цуцлах" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Зөрүү" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/nb.po b/addons/document_page/i18n/nb.po deleted file mode 100644 index f43adb661c2..00000000000 --- a/addons/document_page/i18n/nb.po +++ /dev/null @@ -1,255 +0,0 @@ -# Norwegian Bokmal translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:14+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: Norwegian Bokmal \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Siste forfatter" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Forfatter" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Meny" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Sidehistorikk" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Innhold" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Grupper etter..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Tittel" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Wizard Opprett meny" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Meny informasjon" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dato" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Endringer" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Sider" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Overordnet meny" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Opprettet den" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Sammendrag" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menynavn" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Dato for siste endring" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Opprett meny" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Avbryt" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Diff" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/nl.po b/addons/document_page/i18n/nl.po deleted file mode 100644 index da2ae5f4e3d..00000000000 --- a/addons/document_page/i18n/nl.po +++ /dev/null @@ -1,257 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-11-25 13:05+0000\n" -"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Categorie" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Laatste bijdrage" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Auteur" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Document pagina" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Pagina geschiedenis" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Inhoud" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Groepeer op..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Sjabloon" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"dit zal worden gebruikt als een inhoud sjabloon voor alle nieuwe pagina;s " -"van deze categorie." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Titel" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Assistent menu maken" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Soort" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Aangepast door" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "of" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Paginatype" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Menu informatie" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Document pagina historie" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Pagina historie" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Er zijn geen wijzigingen in de revisies." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Verschil" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Pagina's" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Categorieën" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Hoofdmenu" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Aangemaakt op" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"U dient minimaal één en maximaal twee historie revisies te selecteren.!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Pagina historie" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Samenvatting" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Webpagina's aanmaken" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Documenthistorie" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Naam menu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Pagina" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historie" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Wijzigingsdatum" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Menu maken" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Weergegeven inhoud" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Waarschuwing!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Annuleren" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Verschil" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Documenttype" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Onderliggende" diff --git a/addons/document_page/i18n/nl_BE.po b/addons/document_page/i18n/nl_BE.po deleted file mode 100644 index b7939a66044..00000000000 --- a/addons/document_page/i18n/nl_BE.po +++ /dev/null @@ -1,440 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-04-10 10:01+0000\n" -"Last-Translator: Fabien (Open ERP) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" - -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "" - -#. module: wiki -#: field:wiki.groups,method:0 -msgid "Display Method" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 -msgid "Author" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 -msgid "Open Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,toc:0 -msgid "Indicates that this pages have a table of contents or not" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,minor_edit:0 -msgid "Minor edit" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 -msgid "Content" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,child_ids:0 -msgid "Child Pages" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,parent_id:0 -msgid "Parent Page" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 -msgid "Title" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,history_id:0 -msgid "History Lines" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Page Content" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wiki.py:237 -#, python-format -msgid "There are no changes in revisions" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: wiki -#: field:wiki.groups,notes:0 -msgid "Description" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,review:0 -msgid "Needs Review" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,review:0 -msgid "" -"Indicates that this page should be reviewed, raising the attention of other " -"contributors" -msgstr "" - -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 -msgid "Menu Information" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history -msgid "Page History" -msgstr "" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "Tree" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Page Template" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,tags:0 -msgid "Keywords" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki -msgid "" -"With Wiki Pages you can share ideas and questions with your coworkers. You " -"can create a new document that can be linked to one or several applications " -"(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " -"There is a basic wiki editing for text format." -msgstr "" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "Warning" -msgstr "" - -#. module: wiki -#: help:wiki.groups,home:0 -msgid "Required to select home page if display method is Home Page" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: wiki -#: view:wiki.make.index:0 -msgid "Want to create a Index on Selected Pages ? " -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: wiki -#: field:wiki.groups,page_ids:0 -msgid "Pages" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Group Description" -msgstr "" - -#. module: wiki -#: view:wiki.wiki.page.open:0 -msgid "Want to open a wiki page? " -msgstr "" - -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 -msgid "Text area" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Meta Information" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,create_date:0 -msgid "Created on" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 -msgid "Notes" -msgstr "" - -#. module: wiki -#: selection:wiki.groups,method:0 -msgid "List" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: wiki -#: field:wiki.groups,create_date:0 -msgid "Created Date" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history -msgid "All Page Histories" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "" - -#. module: wiki -#: help:wiki.groups,method:0 -msgid "Define the default behaviour of the menu created on this group" -msgstr "" - -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 -msgid "Close" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 -msgid "Wiki Id" -msgstr "" - -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 -msgid "Home Page" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,parent_id:0 -msgid "Allows you to link with the other page with in the current topic" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Modification Information" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 -msgid "Wiki" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Configuration" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 -msgid "Create Index" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 -#, python-format -msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Group By..." -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 -msgid "Create Menu" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 -msgid "This is a major edit ?" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Topic" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 -msgid "Modify By" -msgstr "" - -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 -#, python-format -msgid "Table of Contents" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open -msgid "wiz open page" -msgstr "" - -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 -msgid "Cancel" -msgstr "" - -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 -msgid "Diff" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" diff --git a/addons/document_page/i18n/pl.po b/addons/document_page/i18n/pl.po deleted file mode 100644 index ee4728dae2d..00000000000 --- a/addons/document_page/i18n/pl.po +++ /dev/null @@ -1,256 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-17 10:25+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Kategoria" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Ostatni kontrybutor" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Strona dokumentu" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Historia strony" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Zawartość" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Grupuj wg..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Szablon" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"które będzie stosowane jako szablon zawartości dla nowych stron tej " -"kategorii." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Tytuł" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Typ" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Zmodyfikowane przez" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "lub" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Typ strony" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informacja o menu" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Historia strony dokumentu" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Historia strony" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Brak zmian w wersjach" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Różnica" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Strony" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Kategorie" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu nadrzędne" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Utworzono" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Musisz wybrać minimum jedną a maksymalnie dwie wersje historii !" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Historia strony" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Podsumowanie" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Twórz strony web" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Historia Dokumentu" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nazwa menu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Strona" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historia" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data modyfikacji" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Utwórz menu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Wyświetlana zawartość" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Ostrzeżenie !" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Anuluj" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Różnice" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Typ dokumentu" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Podrzędne" diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po deleted file mode 100644 index 5ad417d1a30..00000000000 --- a/addons/document_page/i18n/pt.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-12 16:52+0000\n" -"Last-Translator: Rui Franco (multibase.pt) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Categoria" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Último contribuinte" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Página do documento" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Histórico da página" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Conteúdo" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Modelo" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "que será usado como modelo para qualquer página desta categoria" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Título" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Assitente de criação de menu" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "ou" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Tipo de página" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informação do Menu" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Não há alterações de versão" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Diferença" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Páginas" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Categorias" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu do Ascendente" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Criado em" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Resumo" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Cria páginas na internet" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Histórico de documentos" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nome do Menu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Página" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Histórico" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data de Modificação" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Criar Menu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Aviso!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Diferenças" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/pt_BR.po b/addons/document_page/i18n/pt_BR.po deleted file mode 100644 index 349a81f71ec..00000000000 --- a/addons/document_page/i18n/pt_BR.po +++ /dev/null @@ -1,256 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-04 15:32+0000\n" -"Last-Translator: Cristiano Korndörfer \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Categoria" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Último Contribuidor(a)" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Página do Documento" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Histórico da Página" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Conteúdo" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Agrupar Por..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Modelo" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"isto será utilizado como um modelo de conteúdo para todas as páginas desta " -"categoria." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Título" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Assistente Para Criar Menu" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado Por" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "ou" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Tipo de página" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informação do Menu" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Histórico da Página de Documento" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Histórico das páginas" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Não há mudanças nas revisões." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Diferença" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Páginas" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Categorias" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu Superior" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Criado em" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Você deve selecionar de uma a duas revisões de histórico!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Histórico da página" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Resumo" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Criar páginas web" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Histórico de Documentos" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nome do Menu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Página" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Histórico" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data de Modificação" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Criar Menu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Conteúdo Exibido" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Atenção!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Diferença" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Tipo de Documento" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Filhos" diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po deleted file mode 100644 index 2c0a994aa55..00000000000 --- a/addons/document_page/i18n/ro.po +++ /dev/null @@ -1,257 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:12+0000\n" -"Last-Translator: filsys \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Categorie" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Ultimul colaborator" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Meniu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Pagina Documentului" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Istoric pagină" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Conţinut" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Grupează după..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Sablon" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"care va fi folosit ca un sablon de continut pentru toate paginile noi din " -"aceasta categorie." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Titlu" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Wizard Creează meniul" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tip" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.pagina.istoric.arata_dif" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificat de" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "sau" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Tipul de pagina" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informaţii meniu" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Istoric Pagini Documente" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Istoric pagini" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Nu exista modificari in revizuiri." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dată" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Diferenţă" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Pagini" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Categorii" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Meniu principal (părinte)" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Creat in" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"Trebuie sa selectati minim unul sau maxim doua istorice ale revizuirilor!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Istoric pagina" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Rezumat" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Creeaza pagini web" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Istoric Documente" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nume Meniu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Pagina" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Istoric" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data modificării" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Creează meniu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Continut Afisat" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Avertizare!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Anulează" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Diferit" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Tipul documentului" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Subordonati" diff --git a/addons/document_page/i18n/ru.po b/addons/document_page/i18n/ru.po deleted file mode 100644 index ba7c5c533ae..00000000000 --- a/addons/document_page/i18n/ru.po +++ /dev/null @@ -1,256 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-28 12:51+0000\n" -"Last-Translator: Chertykov Denis \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Категория" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Последний корректор" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Меню" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Страница документа" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "История страницы" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Содержание" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Группировать по .." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Шаблон" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"будет использоваться как шаблон содержимого для всех новых страниц этой " -"категории." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Заголовок" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Помощник создания меню" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Тип" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Изменено" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "или" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Тип страниц" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Информация меню" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "История страницы документа" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "История страницы" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Нет изменений" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Различие" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Страницы" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Категории" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Родительское меню" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Создан" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Вы должны выбрать одну или две версии в истории!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "История страницы" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Итого" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Создание веб-страниц" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "История документа" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Название меню" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Страница" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "История" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата изменения" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Создать меню" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Отображаемое содержимое" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Внимание!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Отмена" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Различие" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Тип документа" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Потомки" diff --git a/addons/document_page/i18n/sk.po b/addons/document_page/i18n/sk.po deleted file mode 100644 index 5f25cdce3bd..00000000000 --- a/addons/document_page/i18n/sk.po +++ /dev/null @@ -1,255 +0,0 @@ -# Slovak translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:13+0000\n" -"Last-Translator: Peter Kohaut \n" -"Language-Team: Slovak \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Posledný prispievateľ" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "História stránky" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Obsah" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Zoskupiť podľa..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Názov" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Sprievodca vytvorením ponuky" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informácie menu" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dátum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Rozdiel" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Stránky" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Nadradené menu" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Vytvorené" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Zhrnutie" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Názov menu" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Dátum zmeny" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Vytvoriť menu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Zrušiť" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Rozdiel" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/sl.po b/addons/document_page/i18n/sl.po deleted file mode 100644 index 09ef0757ddf..00000000000 --- a/addons/document_page/i18n/sl.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:14+0000\n" -"Last-Translator: Fabien (Open ERP) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Avtor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Meni" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Vsebina" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Naslov" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Informacije o meniju" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Strani" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Nadmenu" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Izdelano" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Povzetek" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Naziv menuja" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum spremembe" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Ustvari menu" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Prekliči" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Razlika" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/sq.po b/addons/document_page/i18n/sq.po deleted file mode 100644 index ee6c5d05cd4..00000000000 --- a/addons/document_page/i18n/sq.po +++ /dev/null @@ -1,255 +0,0 @@ -# Albanian translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:08+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-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/sr.po b/addons/document_page/i18n/sr.po deleted file mode 100644 index 19026289645..00000000000 --- a/addons/document_page/i18n/sr.po +++ /dev/null @@ -1,255 +0,0 @@ -# Serbian translation for openobject-addons -# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:13+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Meni" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Sadržaj" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Naslov" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Meni Informacije" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Strane" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Roditeljski Meni" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Kreiran" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Sumarno" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Naziv Menija" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum Promene" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Kreiraj Meni" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Otkazati" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Razlika" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/sr@latin.po b/addons/document_page/i18n/sr@latin.po deleted file mode 100644 index 736de1f5f02..00000000000 --- a/addons/document_page/i18n/sr@latin.po +++ /dev/null @@ -1,255 +0,0 @@ -# Serbian translation for openobject-addons -# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:14+0000\n" -"Last-Translator: qdp (OpenERP) \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Meni" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Sadržaj" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Naslov" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Meni Informacije" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Strane" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Roditeljski Meni" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Kreiran" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Sumarno" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Naziv Menija" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum Promene" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Kreiraj Meni" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Otkazati" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Razlika" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/sv.po b/addons/document_page/i18n/sv.po deleted file mode 100644 index cb1fb64a222..00000000000 --- a/addons/document_page/i18n/sv.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.14\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:12+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Författare" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Meny" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Innehåll" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Rubrik" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Menyinformation" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Sidor" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Huvudmeny" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Skapad den" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Sammanfattning" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menynamn" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Ändringsdatum" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Skapa meny" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Avbryt" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Skillnad" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/tlh.po b/addons/document_page/i18n/tlh.po deleted file mode 100644 index b91c17b149c..00000000000 --- a/addons/document_page/i18n/tlh.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:08+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/tr.po b/addons/document_page/i18n/tr.po deleted file mode 100644 index 409cd90acb0..00000000000 --- a/addons/document_page/i18n/tr.po +++ /dev/null @@ -1,255 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:12+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Kategori" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Son Katkı koyan" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Yazar" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menü" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Belge Sayfası" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Sayfa Geçmişi" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "İçerik" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Gruplandır..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Şablon" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"bu kategorideki tüm yeni sayfalar için içerik şablonu olarak kullanılacaktır." - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Başlık" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Menü Oluşturma Sihirbazı" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Tür" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Değiştiren" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "ya da" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Sayfa türü" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Menü bilgileri" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Belge Sayfa Geçmişi" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Sayfa geçmişi" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "Düzeltmelerde hiç değişiklik yoktur." - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Tarih" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Fark" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Sayfalar" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Kategoriler" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Ana Menü" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Oluşturulma" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Enaz bir ya da ençok 2 geçmiş düzeltmesi seçmelisiniz!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Sayfa geçmişi" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Özet" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "Web sayfaları oluşturun" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Belge Geçmişi" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menü Adı" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "Sayfa" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Geçmiş" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Değiştirilme Tarihi" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Menü Oluştur" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Görüntülenen İçerik" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "Uyarı!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "İptal" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Fark" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Belge Türü" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Alt" diff --git a/addons/document_page/i18n/uk.po b/addons/document_page/i18n/uk.po deleted file mode 100644 index ee7311fe244..00000000000 --- a/addons/document_page/i18n/uk.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:11+0000\n" -"Last-Translator: Eugene Babiy \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Меню" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Вміст" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Заголовок" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Інформація Меню" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Сторінки" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Батьківське Меню" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Створено" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Підсумок" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Назва Меню" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата Зміни" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Створити Меню" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Скасувати" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Відмінність" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/vi.po b/addons/document_page/i18n/vi.po deleted file mode 100644 index 3d4f736119e..00000000000 --- a/addons/document_page/i18n/vi.po +++ /dev/null @@ -1,255 +0,0 @@ -# Vietnamese translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-13 12:09+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" -"Language-Team: Vietnamese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Người đóng góp cuối" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Tác giả" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Trình đơn" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Lịch sử Trang" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "Nội dung" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Tiêu đề" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Thông tin Trình đơn" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Ngày" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Khác biệt" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Các trang" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Trình đơn cha" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Tạo trên" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Tên Trình đơn" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/zh_CN.po b/addons/document_page/i18n/zh_CN.po deleted file mode 100644 index f5ab31e9f1c..00000000000 --- a/addons/document_page/i18n/zh_CN.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-08 13:10+0000\n" -"Last-Translator: 盈通 ccdos \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "类别" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "最近的贡献者" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "作者" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "菜单" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "页面编辑日志" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "内容" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "分组..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "模版" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "标题" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "向导创建菜单" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "类型" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "修改者" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "菜单信息" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日期" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "差异" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "页面" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "分类" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "上级菜单" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "创建在" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "摘要" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "创建网页" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "菜单名" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "历史" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "修改日期" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "创建菜单" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "显示内容" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "取消" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "差异" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/i18n/zh_TW.po b/addons/document_page/i18n/zh_TW.po deleted file mode 100644 index d534aabd835..00000000000 --- a/addons/document_page/i18n/zh_TW.po +++ /dev/null @@ -1,254 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-30 09:36+0000\n" -"Last-Translator: Bonnie Duan \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "最後的貢獻者" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "作者" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "選單" - -#. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "頁面歷史記錄" - -#. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "內容" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "分類方式..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "標題" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "嚮導創建選單" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "類型" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "wizard.document.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "選單資訊" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日期" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "差異" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "頁面" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "上級選單" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "建立於" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "摘要" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Create web pages" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "選單名稱" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "修改日期" - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "建立選單" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "刪除" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "差異" - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" diff --git a/addons/document_page/security/document_page_security.xml b/addons/document_page/security/document_page_security.xml deleted file mode 100644 index 6d85d054469..00000000000 --- a/addons/document_page/security/document_page_security.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/addons/document_page/security/ir.model.access.csv b/addons/document_page/security/ir.model.access.csv deleted file mode 100644 index 13f0479ff53..00000000000 --- a/addons/document_page/security/ir.model.access.csv +++ /dev/null @@ -1,4 +0,0 @@ -id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -document_page_all,document.page,model_document_page,,1,0,0,0 -document_page,document.page,model_document_page,base.group_user,1,1,1,1 -document_page_history,document.page.history,model_document_page_history,base.group_user,1,0,1,0 diff --git a/addons/document_page/static/src/css/document_page.css b/addons/document_page/static/src/css/document_page.css deleted file mode 100644 index ddbbcffd45b..00000000000 --- a/addons/document_page/static/src/css/document_page.css +++ /dev/null @@ -1,12 +0,0 @@ -.oe_form_editable .oe_document_page { - display: none; -} - -table.diff {font-family:Courier; border:medium;} -.diff_header {background-color:#e0e0e0} -td.diff_header {text-align:right} -.diff_next {background-color:#c0c0c0} -.diff_add {background-color:#aaffaa} -.diff_chg {background-color:#ffff77} -.diff_sub {background-color:#ffaaaa} - diff --git a/addons/document_page/test/document_page_test00.yml b/addons/document_page/test/document_page_test00.yml deleted file mode 100644 index 3c8dba80294..00000000000 --- a/addons/document_page/test/document_page_test00.yml +++ /dev/null @@ -1,54 +0,0 @@ -- - In order to test the document_page in OpenERP, I create a new page to category demo_category1 -- - !record {model: document.page, id: test_page0}: - name: Test Page0 - parent_id: demo_category1 - content: 'Test content - - The Open ERP wiki allows you to manage your enterprise contents using wiki - - restructured texts. This module provides a collaborative way to manage internal - - FAQs, quality manuals, technical references, etc.' - -- - I check the category index contains my page. -- - !python {model: document.page}: | - res = self.read(cr, uid, [ref('demo_category1')], ['display_content']) - assert res[0]['display_content'].find('Test Page') > 1 -- - !record {model: document.page, id: test_page0}: - content: 'Test updated content - - The Open ERP wiki allows you to manage your enterprise contents using wiki - - restructured texts. This module provides a collaborative way to manage internal - - FAQs, quality manuals, technical references, etc. - - Wiki text can easily be edited - ' -- - I check the page history for the current page by clicking on "Page History".After that find difference between history. -- - !python {model: wizard.document.page.history.show_diff}: | - hist_obj = model.pool.get('document.page.history') - ids = hist_obj.search(cr, uid, [('page_id', '=', ref("test_page0"))]) - model.get_diff(cr, uid, {'active_ids': ids[:] }) -- - I click the "create menu" link and i fill the form. -- - !record {model: document.page.create.menu, id: test_create_menu0}: - menu_name: Wiki Test menu - menu_parent_id: base.menu_base_partner -- - I create a Menu by clicking on "create menu" -- - !python {model: document.page.create.menu}: | - ids = [ref("test_create_menu0")] - context['active_id'] = ref('test_page0') - self.document_page_menu_create(cr, uid, ids, context) - - diff --git a/addons/document_webdav/i18n/ar.po b/addons/document_webdav/i18n/ar.po index 9093e8bf400..b3b4ad3da36 100644 --- a/addons/document_webdav/i18n/ar.po +++ b/addons/document_webdav/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/bg.po b/addons/document_webdav/i18n/bg.po index b2e578a81c4..c8221c1b3c8 100644 --- a/addons/document_webdav/i18n/bg.po +++ b/addons/document_webdav/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ca.po b/addons/document_webdav/i18n/ca.po index 928c0d5ffd2..a084f2faef3 100644 --- a/addons/document_webdav/i18n/ca.po +++ b/addons/document_webdav/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/cs.po b/addons/document_webdav/i18n/cs.po index f3f6973ddc1..e9afbd4349f 100644 --- a/addons/document_webdav/i18n/cs.po +++ b/addons/document_webdav/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/da.po b/addons/document_webdav/i18n/da.po index 00fb6a86979..c592ceea7fd 100644 --- a/addons/document_webdav/i18n/da.po +++ b/addons/document_webdav/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/de.po b/addons/document_webdav/i18n/de.po index ea1aeac774c..8cb8d1bd65f 100644 --- a/addons/document_webdav/i18n/de.po +++ b/addons/document_webdav/i18n/de.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 06:49+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" +"Last-Translator: Ferdinand \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -31,13 +31,13 @@ msgstr "Dokumente" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Document property" -msgstr "Dokument Eigenschaft" +msgstr "Dokumenteigenschaft" #. module: document_webdav #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Search Document properties" -msgstr "Suche Dokumenteigenschaften" +msgstr "Dokumenteigenschaften suchen" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -66,7 +66,7 @@ msgstr "Gruppierung..." #. module: document_webdav #: view:document.directory:0 msgid "These properties will be added to WebDAV requests" -msgstr "Diese Eigenschaften werden bei WebDav Anfragen angefügt" +msgstr "Diese Eigenschaften werden bei WebDav-Anfragen angefügt" #. module: document_webdav #: model:ir.actions.act_window,name:document_webdav.action_file_props_form @@ -145,12 +145,12 @@ msgstr "Änderungsdatum" #: field:document.webdav.dir.property,create_uid:0 #: field:document.webdav.file.property,create_uid:0 msgid "Creator" -msgstr "Herausgeber" +msgstr "Ersteller" #. module: document_webdav #: view:document.webdav.file.property:0 msgid "Document Property" -msgstr "Dokument Eigenschaft" +msgstr "Dokumenteneigenschaft" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_properties diff --git a/addons/document_webdav/i18n/el.po b/addons/document_webdav/i18n/el.po index a98bb689d2c..f708a2bc5ec 100644 --- a/addons/document_webdav/i18n/el.po +++ b/addons/document_webdav/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/en_GB.po b/addons/document_webdav/i18n/en_GB.po index ce23d0f75f8..ce9510fbfbe 100644 --- a/addons/document_webdav/i18n/en_GB.po +++ b/addons/document_webdav/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es.po b/addons/document_webdav/i18n/es.po index 03ac6704d61..af63dce333d 100644 --- a/addons/document_webdav/i18n/es.po +++ b/addons/document_webdav/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_CR.po b/addons/document_webdav/i18n/es_CR.po index 38e1ac3515c..8f912152ee3 100644 --- a/addons/document_webdav/i18n/es_CR.po +++ b/addons/document_webdav/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/es_EC.po b/addons/document_webdav/i18n/es_EC.po index 5a698f3b55a..624238d8d9b 100644 --- a/addons/document_webdav/i18n/es_EC.po +++ b/addons/document_webdav/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_PY.po b/addons/document_webdav/i18n/es_PY.po index 97c468fb945..fd449b2aba6 100644 --- a/addons/document_webdav/i18n/es_PY.po +++ b/addons/document_webdav/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/et.po b/addons/document_webdav/i18n/et.po index 909a43fe82d..6c0c6bfeb6f 100644 --- a/addons/document_webdav/i18n/et.po +++ b/addons/document_webdav/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/eu.po b/addons/document_webdav/i18n/eu.po index c8d918c78cc..1c0174a8c08 100644 --- a/addons/document_webdav/i18n/eu.po +++ b/addons/document_webdav/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fi.po b/addons/document_webdav/i18n/fi.po index c0a527670c5..011dfc31c56 100644 --- a/addons/document_webdav/i18n/fi.po +++ b/addons/document_webdav/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fr.po b/addons/document_webdav/i18n/fr.po index a6393223296..b99b8ea3d9d 100644 --- a/addons/document_webdav/i18n/fr.po +++ b/addons/document_webdav/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gl.po b/addons/document_webdav/i18n/gl.po index e00e6a41575..015d27c5690 100644 --- a/addons/document_webdav/i18n/gl.po +++ b/addons/document_webdav/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gu.po b/addons/document_webdav/i18n/gu.po index 6f902186b12..c8d6f5f05fd 100644 --- a/addons/document_webdav/i18n/gu.po +++ b/addons/document_webdav/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hr.po b/addons/document_webdav/i18n/hr.po index 6a93a1876a2..a4aa8939845 100644 --- a/addons/document_webdav/i18n/hr.po +++ b/addons/document_webdav/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hu.po b/addons/document_webdav/i18n/hu.po index 411e4ecf0bc..61f6c5eb9e2 100644 --- a/addons/document_webdav/i18n/hu.po +++ b/addons/document_webdav/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/id.po b/addons/document_webdav/i18n/id.po index c66a07c8788..00e656fb8e8 100644 --- a/addons/document_webdav/i18n/id.po +++ b/addons/document_webdav/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/it.po b/addons/document_webdav/i18n/it.po index 4cb9d65b894..1848e25faa4 100644 --- a/addons/document_webdav/i18n/it.po +++ b/addons/document_webdav/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ja.po b/addons/document_webdav/i18n/ja.po index 269ed2d6174..e3cdae90f60 100644 --- a/addons/document_webdav/i18n/ja.po +++ b/addons/document_webdav/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/mk.po b/addons/document_webdav/i18n/mk.po index e92cbc489f9..c3201befa18 100644 --- a/addons/document_webdav/i18n/mk.po +++ b/addons/document_webdav/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/mn.po b/addons/document_webdav/i18n/mn.po index 28d706dce05..832f6440e05 100644 --- a/addons/document_webdav/i18n/mn.po +++ b/addons/document_webdav/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nb.po b/addons/document_webdav/i18n/nb.po index 3cd659c5c54..ea836873f43 100644 --- a/addons/document_webdav/i18n/nb.po +++ b/addons/document_webdav/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nl.po b/addons/document_webdav/i18n/nl.po index b8c85b20693..9b7c80394ce 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pl.po b/addons/document_webdav/i18n/pl.po index a032733b35f..f8e3670e12c 100644 --- a/addons/document_webdav/i18n/pl.po +++ b/addons/document_webdav/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt.po b/addons/document_webdav/i18n/pt.po index 2d9d049052f..17cfe399c1e 100644 --- a/addons/document_webdav/i18n/pt.po +++ b/addons/document_webdav/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt_BR.po b/addons/document_webdav/i18n/pt_BR.po index df5364f25fc..3df52a2ab0e 100644 --- a/addons/document_webdav/i18n/pt_BR.po +++ b/addons/document_webdav/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ro.po b/addons/document_webdav/i18n/ro.po index d1ce6d1baf8..327f164b08b 100644 --- a/addons/document_webdav/i18n/ro.po +++ b/addons/document_webdav/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ru.po b/addons/document_webdav/i18n/ru.po index ab2dd841a22..3b2b18d1680 100644 --- a/addons/document_webdav/i18n/ru.po +++ b/addons/document_webdav/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sl.po b/addons/document_webdav/i18n/sl.po index 469315e903c..51c3aa56c3d 100644 --- a/addons/document_webdav/i18n/sl.po +++ b/addons/document_webdav/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -26,18 +26,18 @@ msgstr "Datum nastanka" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_document_props msgid "Documents" -msgstr "" +msgstr "Dokumenti" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Document property" -msgstr "" +msgstr "Lastnost dokumenta" #. module: document_webdav #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Search Document properties" -msgstr "" +msgstr "Iskanje lastnosti dokumenta" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -66,102 +66,102 @@ msgstr "Združi po ..." #. module: document_webdav #: view:document.directory:0 msgid "These properties will be added to WebDAV requests" -msgstr "" +msgstr "Te lastnosti bodo dodane k WebDAV zahtevkom" #. module: document_webdav #: model:ir.actions.act_window,name:document_webdav.action_file_props_form msgid "DAV Properties for Documents" -msgstr "" +msgstr "DAV lastnosti za dokumente" #. module: document_webdav #: view:document.webdav.file.property:0 #: field:document.webdav.file.property,file_id:0 msgid "Document" -msgstr "" +msgstr "Dokument" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_folder_props msgid "Folders" -msgstr "" +msgstr "Mape" #. module: document_webdav #: view:document.directory:0 msgid "WebDAV properties" -msgstr "" +msgstr "WebDAV lastnosti" #. module: document_webdav #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form msgid "DAV Properties for Folders" -msgstr "" +msgstr "DAV lastnosti za mape" #. module: document_webdav #: view:document.directory:0 #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Properties" -msgstr "" +msgstr "Lastnosti" #. module: document_webdav #: field:document.webdav.dir.property,name:0 #: field:document.webdav.file.property,name:0 msgid "Name" -msgstr "" +msgstr "Ime" #. module: document_webdav #: model:ir.model,name:document_webdav.model_document_webdav_dir_property msgid "document.webdav.dir.property" -msgstr "" +msgstr "document.webdav.dir.property" #. module: document_webdav #: field:document.webdav.dir.property,value:0 #: field:document.webdav.file.property,value:0 msgid "Value" -msgstr "" +msgstr "Vrednost" #. module: document_webdav #: field:document.webdav.dir.property,dir_id:0 #: model:ir.model,name:document_webdav.model_document_directory msgid "Directory" -msgstr "" +msgstr "Mapa" #. module: document_webdav #: field:document.webdav.dir.property,write_uid:0 #: field:document.webdav.file.property,write_uid:0 msgid "Last Modification User" -msgstr "" +msgstr "Zadnja sprememba" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Dir" -msgstr "" +msgstr "Mapa" #. module: document_webdav #: field:document.webdav.dir.property,write_date:0 #: field:document.webdav.file.property,write_date:0 msgid "Date Modified" -msgstr "" +msgstr "Datum spremembe" #. module: document_webdav #: field:document.webdav.dir.property,create_uid:0 #: field:document.webdav.file.property,create_uid:0 msgid "Creator" -msgstr "" +msgstr "Avtor" #. module: document_webdav #: view:document.webdav.file.property:0 msgid "Document Property" -msgstr "" +msgstr "Lastnost dokumenta" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_properties msgid "DAV Properties" -msgstr "" +msgstr "DAV lastnosti" #. module: document_webdav #: field:document.webdav.dir.property,do_subst:0 #: field:document.webdav.file.property,do_subst:0 msgid "Substitute" -msgstr "" +msgstr "Zamenjava" #~ msgid "Error! You can not create recursive Directories." #~ msgstr "Napaka! Ne morete izdelati rekurzivnih imenikov." diff --git a/addons/document_webdav/i18n/sr.po b/addons/document_webdav/i18n/sr.po index 53dae2dfc4b..9915083af8c 100644 --- a/addons/document_webdav/i18n/sr.po +++ b/addons/document_webdav/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr@latin.po b/addons/document_webdav/i18n/sr@latin.po index 827be1b2ede..73ad2a2db7d 100644 --- a/addons/document_webdav/i18n/sr@latin.po +++ b/addons/document_webdav/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sv.po b/addons/document_webdav/i18n/sv.po index 135bcf44352..08469f26264 100644 --- a/addons/document_webdav/i18n/sv.po +++ b/addons/document_webdav/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/tr.po b/addons/document_webdav/i18n/tr.po index b31cf278e04..7b4f3b1fb82 100644 --- a/addons/document_webdav/i18n/tr.po +++ b/addons/document_webdav/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_CN.po b/addons/document_webdav/i18n/zh_CN.po index e7cefb4e92b..c483b64305b 100644 --- a/addons/document_webdav/i18n/zh_CN.po +++ b/addons/document_webdav/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_TW.po b/addons/document_webdav/i18n/zh_TW.po index 321f850cabd..9f97700b162 100644 --- a/addons/document_webdav/i18n/zh_TW.po +++ b/addons/document_webdav/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/edi/controllers/main.py b/addons/edi/controllers/main.py index 86115d12d4b..d92cb2478cc 100644 --- a/addons/edi/controllers/main.py +++ b/addons/edi/controllers/main.py @@ -1,5 +1,5 @@ import simplejson -import urllib +import werkzeug.urls import openerp import openerp.addons.web.controllers.main as webmain @@ -17,7 +17,7 @@ class EDI(openerp.http.Controller): css = "\n ".join('' % i for i in webmain.manifest_list(req, modules_str, 'css')) # `url` may contain a full URL with a valid query string, we basically want to watch out for XML brackets and double-quotes - safe_url = urllib.quote_plus(url,':/?&;=') + safe_url = werkzeug.url_quote_plus(url,':/?&;=') return webmain.html_template % { 'js': js, diff --git a/addons/edi/i18n/ar.po b/addons/edi/i18n/ar.po index 45042af1442..a6d7979c4da 100644 --- a/addons/edi/i18n/ar.po +++ b/addons/edi/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/cs.po b/addons/edi/i18n/cs.po index 82d97a3e9a6..59f91232501 100644 --- a/addons/edi/i18n/cs.po +++ b/addons/edi/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/de.po b/addons/edi/i18n/de.po index a2ceadcd027..546ec8a0889 100644 --- a/addons/edi/i18n/de.po +++ b/addons/edi/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web @@ -37,7 +37,7 @@ msgstr "Das Dokument wurde erfolgreich importiert!" #: code:addons/edi/static/src/js/edi.js:65 #, python-format msgid "Sorry, the document could not be imported." -msgstr "Entschuldigung, das Dokument konnte leider nicht importiert werden." +msgstr "Das Dokument konnte leider nicht importiert werden." #. module: edi #: model:ir.model,name:edi.model_res_company @@ -54,7 +54,7 @@ msgstr "Währung" #: code:addons/edi/static/src/js/edi.js:71 #, python-format msgid "Document Import Notification" -msgstr "Benachrichtigung Dokumentenimport" +msgstr "Nachricht zum Dokumentenimport" #. module: edi #: code:addons/edi/models/edi.py:130 @@ -70,8 +70,8 @@ msgid "" "You can install it by connecting as the administrator and opening the " "configuration assistant." msgstr "" -"Das zu importierende Dokument benütigt die Anwendung `%s` . Sie können " -"diese als administrator installieren und konfigurieren." +"Das zu importierende Dokument benötigt die Anwendung `%s` . Sie können " +"diese als Administrator installieren und konfigurieren." #. module: edi #: code:addons/edi/models/edi.py:47 diff --git a/addons/edi/i18n/en_GB.po b/addons/edi/i18n/en_GB.po index 73f54c80eaa..745f03f5dc2 100644 --- a/addons/edi/i18n/en_GB.po +++ b/addons/edi/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es.po b/addons/edi/i18n/es.po index 12fa627a633..6bd022ca2f0 100644 --- a/addons/edi/i18n/es.po +++ b/addons/edi/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es_CR.po b/addons/edi/i18n/es_CR.po index c18900cbe8b..f42346f1e66 100644 --- a/addons/edi/i18n/es_CR.po +++ b/addons/edi/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fi.po b/addons/edi/i18n/fi.po index a97831c8dc1..513e892d3a5 100644 --- a/addons/edi/i18n/fi.po +++ b/addons/edi/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fr.po b/addons/edi/i18n/fr.po index 49d78f1ecc3..2a380e4b59a 100644 --- a/addons/edi/i18n/fr.po +++ b/addons/edi/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/he.po b/addons/edi/i18n/he.po index 6d66ac0dc1e..a39981435a7 100644 --- a/addons/edi/i18n/he.po +++ b/addons/edi/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-31 04:47+0000\n" -"X-Generator: Launchpad (build 16877)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hr.po b/addons/edi/i18n/hr.po index 8f16d3c6a7c..b91da41e3a7 100644 --- a/addons/edi/i18n/hr.po +++ b/addons/edi/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hu.po b/addons/edi/i18n/hu.po index 4304e36c9d3..de9d7f68f51 100644 --- a/addons/edi/i18n/hu.po +++ b/addons/edi/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/is.po b/addons/edi/i18n/is.po index 483597953ee..37398fb4a16 100644 --- a/addons/edi/i18n/is.po +++ b/addons/edi/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/it.po b/addons/edi/i18n/it.po index 26ea4da371d..4df2bd5444b 100644 --- a/addons/edi/i18n/it.po +++ b/addons/edi/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 14:01+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ja.po b/addons/edi/i18n/ja.po index 896d3dce535..f07d7790f54 100644 --- a/addons/edi/i18n/ja.po +++ b/addons/edi/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/lt.po b/addons/edi/i18n/lt.po index 44b151cbd5b..73e2d0d1fc5 100644 --- a/addons/edi/i18n/lt.po +++ b/addons/edi/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mk.po b/addons/edi/i18n/mk.po index dfc8e69727a..d1a8a488ed4 100644 --- a/addons/edi/i18n/mk.po +++ b/addons/edi/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ml.po b/addons/edi/i18n/ml.po index c4aa16fdf82..c112974573e 100644 --- a/addons/edi/i18n/ml.po +++ b/addons/edi/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-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mn.po b/addons/edi/i18n/mn.po index d22e93a368c..e250abb3f51 100644 --- a/addons/edi/i18n/mn.po +++ b/addons/edi/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nb.po b/addons/edi/i18n/nb.po index a04bd11f0f6..b3c7d94b4ac 100644 --- a/addons/edi/i18n/nb.po +++ b/addons/edi/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl.po b/addons/edi/i18n/nl.po index adfe3e92e65..a7c69c250bb 100644 --- a/addons/edi/i18n/nl.po +++ b/addons/edi/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl_BE.po b/addons/edi/i18n/nl_BE.po index 6f44ce329d5..faf64e50303 100644 --- a/addons/edi/i18n/nl_BE.po +++ b/addons/edi/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-04-15 16:04+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pl.po b/addons/edi/i18n/pl.po index 80dc37c2150..43ade1ee19b 100644 --- a/addons/edi/i18n/pl.po +++ b/addons/edi/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt.po b/addons/edi/i18n/pt.po index 97354af15d4..24aab80323c 100644 --- a/addons/edi/i18n/pt.po +++ b/addons/edi/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt_BR.po b/addons/edi/i18n/pt_BR.po index 1c349514bd6..bc5f1356f6f 100644 --- a/addons/edi/i18n/pt_BR.po +++ b/addons/edi/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 00:39+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index a3cb19895c9..a1a25e5bf4a 100644 --- a/addons/edi/i18n/ro.po +++ b/addons/edi/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ru.po b/addons/edi/i18n/ru.po index d1b8ab352f7..b22b1951bc7 100644 --- a/addons/edi/i18n/ru.po +++ b/addons/edi/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sl.po b/addons/edi/i18n/sl.po index a5c42951f3f..2b650907b44 100644 --- a/addons/edi/i18n/sl.po +++ b/addons/edi/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web @@ -53,13 +53,13 @@ msgstr "Valuta" #: code:addons/edi/static/src/js/edi.js:71 #, python-format msgid "Document Import Notification" -msgstr "" +msgstr "Sporočilo ob uvozu dokumenta" #. module: edi #: code:addons/edi/models/edi.py:130 #, python-format msgid "Missing application." -msgstr "" +msgstr "Aplikacija ni na voljo." #. module: edi #: code:addons/edi/models/edi.py:131 @@ -69,12 +69,15 @@ msgid "" "You can install it by connecting as the administrator and opening the " "configuration assistant." msgstr "" +"Dokument, ki pa želite uvoziti, zahteva OpenERP '%s' aplikacijo. Lahko jo " +"namestite tako, da se prijavite kot administrator in uporabite pomočnika za " +"configuracijo." #. module: edi #: code:addons/edi/models/edi.py:47 #, python-format msgid "'%s' is an invalid external ID" -msgstr "" +msgstr "'%s' je napačen eksterni ID" #. module: edi #: model:ir.model,name:edi.model_res_partner diff --git a/addons/edi/i18n/sv.po b/addons/edi/i18n/sv.po index ec9210d3538..2f9f46aa565 100644 --- a/addons/edi/i18n/sv.po +++ b/addons/edi/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/tr.po b/addons/edi/i18n/tr.po index d8f6686349a..7b2823e03c4 100644 --- a/addons/edi/i18n/tr.po +++ b/addons/edi/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_CN.po b/addons/edi/i18n/zh_CN.po index fe99d710856..f029303ffa4 100644 --- a/addons/edi/i18n/zh_CN.po +++ b/addons/edi/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_TW.po b/addons/edi/i18n/zh_TW.po index 1aca0404438..931559fa4e8 100644 --- a/addons/edi/i18n/zh_TW.po +++ b/addons/edi/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: edi #. openerp-web diff --git a/addons/edi/static/src/js/edi.js b/addons/edi/static/src/js/edi.js index 80002bd8743..91d2b842f8a 100644 --- a/addons/edi/static/src/js/edi.js +++ b/addons/edi/static/src/js/edi.js @@ -1,6 +1,7 @@ openerp.edi = function(instance) { var _t = instance.web._t; -instance.edi = {} +instance.edi = {}; + instance.edi.EdiImport = instance.web.Widget.extend({ @@ -10,11 +11,7 @@ instance.edi.EdiImport = instance.web.Widget.extend({ }, start: function() { if (!this.session.session_is_valid()) { - this.show_login(); - this.session.on_session_valid.add({ - callback: this.proxy('show_import'), - unique: true, - }); + instance.redirect('/web/login?redir=' + encodeURIComponent(window.location)); } else { this.show_import(); } @@ -25,12 +22,6 @@ instance.edi.EdiImport = instance.web.Widget.extend({ this.do_import(); }, - show_login: function() { - this.destroy_content(); - this.login = new instance.web.Login(this); - this.login.appendTo(this.$el); - }, - destroy_content: function() { _.each(_.clone(this.getChildren()), function(el) { el.destroy(); diff --git a/addons/email_template/email_template.py b/addons/email_template/email_template.py index 8a16c01a156..fcfe869da90 100644 --- a/addons/email_template/email_template.py +++ b/addons/email_template/email_template.py @@ -76,6 +76,12 @@ class email_template(osv.osv): _description = 'Email Templates' _order = 'name' + def default_get(self, cr, uid, fields, context=None): + res = super(email_template, self).default_get(cr, uid, fields, context) + if res.get('model'): + res['model_id'] = self.pool['ir.model'].search(cr, uid, [('model', '=', res.pop('model'))], context=context)[0] + return res + def render_template_batch(self, cr, uid, template, model, res_ids, context=None): """Render the given template text, replace mako expressions ``${expr}`` with the result of evaluating these expressions with @@ -177,7 +183,7 @@ class email_template(osv.osv): 'mail_server_id': fields.many2one('ir.mail_server', 'Outgoing Mail Server', readonly=False, help="Optional preferred server for outgoing mails. If not set, the highest " "priority one will be used."), - 'body_html': fields.text('Body', translate=True, help="Rich-text/HTML version of the message (placeholders may be used here)"), + 'body_html': fields.html('Body', translate=True, help="Rich-text/HTML version of the message (placeholders may be used here)"), 'report_name': fields.char('Report Filename', translate=True, help="Name to use for the generated report file (may contain placeholders)\n" "The extension can be omitted and will then come from the report type."), @@ -411,8 +417,8 @@ class email_template(osv.osv): # create a mail_mail based on values, without attachments values = self.generate_email(cr, uid, template_id, res_id, context=context) - assert values.get('email_from'), 'email_from is missing or empty after template rendering, send_mail() cannot proceed' - + if not values.get('email_from'): + raise osv.except_osv(_('Warning!'),_("Sender email is missing or empty after template rendering. Specify one to deliver your message")) # process partner_to field that is a comma separated list of partner_ids -> recipient_ids # NOTE: only usable if force_send is True, because otherwise the value is # not stored on the mail_mail, and therefore lost -> fixed in v8 diff --git a/addons/email_template/i18n/ar.po b/addons/email_template/i18n/ar.po index 45bf0131158..2e256d9990b 100644 --- a/addons/email_template/i18n/ar.po +++ b/addons/email_template/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/bg.po b/addons/email_template/i18n/bg.po index 8926bef17c8..7d3d074b4df 100644 --- a/addons/email_template/i18n/bg.po +++ b/addons/email_template/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/bs.po b/addons/email_template/i18n/bs.po new file mode 100644 index 00000000000..d0b24648c32 --- /dev/null +++ b/addons/email_template/i18n/bs.po @@ -0,0 +1,515 @@ +# Bosnian translation for openobject-addons +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2014-02-01 22:19+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: 2014-02-02 05:31+0000\n" +"X-Generator: Launchpad (build 16916)\n" + +#. module: email_template +#: field:email.template,email_from:0 +#: field:email_template.preview,email_from:0 +msgid "From" +msgstr "Od" + +#. module: email_template +#: field:mail.compose.message,template_id:0 +msgid "Template" +msgstr "Predložak" + +#. module: email_template +#: help:email.template,ref_ir_value:0 +#: help:email_template.preview,ref_ir_value:0 +msgid "Sidebar button to open the sidebar action" +msgstr "Dugme za otvaranje akcije sidebar-a" + +#. module: email_template +#: field:res.partner,opt_out:0 +msgid "Opt-Out" +msgstr "Isključiti iz masovne e-pošte" + +#. module: email_template +#: field:email.template,email_to:0 +#: field:email_template.preview,email_to:0 +msgid "To (Emails)" +msgstr "Za (E-mailovi)" + +#. module: email_template +#: field:email.template,mail_server_id:0 +#: field:email_template.preview,mail_server_id:0 +msgid "Outgoing Mail Server" +msgstr "Odlazni E-mail server" + +#. module: email_template +#: help:email.template,ref_ir_act_window:0 +#: help:email_template.preview,ref_ir_act_window:0 +msgid "" +"Sidebar action to make this template available on records of the related " +"document model" +msgstr "" +"Akcija sidebar-a za postavljanje ovog prijedloga dostupnog na akcijama " +"povezanog modela dokumenta" + +#. module: email_template +#: field:email.template,model_object_field:0 +#: field:email_template.preview,model_object_field:0 +msgid "Field" +msgstr "Polje" + +#. module: email_template +#: help:email.template,email_from:0 +#: help:email_template.preview,email_from:0 +msgid "Sender address (placeholders may be used here)" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Remove context action" +msgstr "Ukloni kontekstnu akciju" + +#. module: email_template +#: help:email.template,mail_server_id:0 +#: help:email_template.preview,mail_server_id:0 +msgid "" +"Optional preferred server for outgoing mails. If not set, the highest " +"priority one will be used." +msgstr "" +"Opcioni preferirani server za izlaznu poštu. Ako nije podešen koristiti će " +"se onaj sa najvišim prioritetom." + +#. module: email_template +#: field:email.template,report_name:0 +#: field:email_template.preview,report_name:0 +msgid "Report Filename" +msgstr "Naziv fajla izvještaja" + +#. module: email_template +#: view:email.template:0 +msgid "Preview" +msgstr "Pregled" + +#. module: email_template +#: field:email.template,reply_to:0 +#: field:email_template.preview,reply_to:0 +msgid "Reply-To" +msgstr "Odgovori na" + +#. module: email_template +#: view:mail.compose.message:0 +msgid "Use template" +msgstr "Koristi predložak" + +#. module: email_template +#: field:email.template,body_html:0 +#: field:email_template.preview,body_html:0 +msgid "Body" +msgstr "Sadržaj" + +#. module: email_template +#: code:addons/email_template/email_template.py:247 +#, python-format +msgid "%s (copy)" +msgstr "%s (kopija)" + +#. module: email_template +#: help:email.template,user_signature:0 +#: help:email_template.preview,user_signature:0 +msgid "" +"If checked, the user's signature will be appended to the text version of the " +"message" +msgstr "" +"Ako je odabrano, potpis korisnika biti će dodan tekst verziji poruke." + +#. module: email_template +#: view:email.template:0 +msgid "SMTP Server" +msgstr "SMTP server" + +#. module: email_template +#: view:mail.compose.message:0 +msgid "Save as new template" +msgstr "Spremi kao novi predložak" + +#. module: email_template +#: help:email.template,sub_object:0 +#: help:email_template.preview,sub_object:0 +msgid "" +"When a relationship field is selected as first field, this field shows the " +"document model the relationship goes to." +msgstr "" +"Kada je relaciono polje odabrano kao prvo polje, ovo polje prikazuje model " +"dokumenta kojem relacija odlazi." + +#. module: email_template +#: model:ir.model,name:email_template.model_email_template +msgid "Email Templates" +msgstr "E-mail predlošci" + +#. module: email_template +#: help:email.template,report_name:0 +#: help:email_template.preview,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" +"Naziv za korišćenje generisanog fajla izvještaja(može da sadrži držače " +"mjesta)\n" +"Ekstenzija može biti zanemarena i biće zamjenjena tipom izvještaja." + +#. module: email_template +#: field:email.template,ref_ir_act_window:0 +#: field:email_template.preview,ref_ir_act_window:0 +msgid "Sidebar action" +msgstr "Akcija sidebar-a" + +#. module: email_template +#: help:email.template,lang:0 +#: help:email_template.preview,lang:0 +msgid "" +"Optional translation language (ISO code) to select when sending out an " +"email. If not set, the english version will be used. This should usually be " +"a placeholder expression that provides the appropriate language code, e.g. " +"${object.partner_id.lang.code}." +msgstr "" +"Opcioni jezik prevoda (ISO šifra) za izbor prilikom slanja email-a. Ako nije " +"postavljeno, koristiće se engleska verzija. Ovo bi najčešće treblo biti " +"izraz držača mjesta koja obezbjeđuje odgovarajuću šifru jezika, npr: " +"${object.partner_id.lang.code}." + +#. module: email_template +#: field:email_template.preview,res_id:0 +msgid "Sample Document" +msgstr "Primjer dokumenta" + +#. module: email_template +#: help:email.template,model_object_field:0 +#: help:email_template.preview,model_object_field:0 +msgid "" +"Select target field from the related document model.\n" +"If it is a relationship field you will be able to select a target field at " +"the destination of the relationship." +msgstr "" +"Odaberite ciljno polje iz povezanog modela dokumenta.\n" +"Ako je ovo relaciono polje moći će te odabrati ciljano polje na odredištu " +"relacije." + +#. module: email_template +#: view:email.template:0 +msgid "Dynamic Value Builder" +msgstr "Kreator dinamičke vrijednosti" + +#. module: email_template +#: model:ir.actions.act_window,name:email_template.wizard_email_template_preview +msgid "Template Preview" +msgstr "Pregled predloška" + +#. module: email_template +#: view:mail.compose.message:0 +msgid "Save as a new template" +msgstr "Spremi kao novi predložak" + +#. module: email_template +#: view:email.template:0 +msgid "" +"Display an option on related documents to open a composition wizard with " +"this template" +msgstr "" +"Na povezanim dokumentima prikaži opciju koja poziva čarobnjak sa ovim " +"predloškom" + +#. module: email_template +#: help:email.template,email_cc:0 +#: help:email_template.preview,email_cc:0 +msgid "Carbon copy recipients (placeholders may be used here)" +msgstr "Primaoci kopije(mogu se koristiti držači mjesta)" + +#. module: email_template +#: help:email.template,email_to:0 +#: help:email_template.preview,email_to:0 +msgid "Comma-separated recipient addresses (placeholders may be used here)" +msgstr "Adrese primatelja odvojene zarezom" + +#. module: email_template +#: view:email.template:0 +msgid "Advanced" +msgstr "Napredno" + +#. module: email_template +#: view:email_template.preview:0 +msgid "Preview of" +msgstr "Pregled" + +#. module: email_template +#: view:email_template.preview:0 +msgid "Using sample document" +msgstr "Koristi primjer dokumenta" + +#. module: email_template +#: view:email.template:0 +#: model:ir.actions.act_window,name:email_template.action_email_template_tree_all +#: model:ir.ui.menu,name:email_template.menu_email_templates +msgid "Templates" +msgstr "Predlošci" + +#. module: email_template +#: field:email.template,name:0 +#: field:email_template.preview,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: email_template +#: field:email.template,lang:0 +#: field:email_template.preview,lang:0 +msgid "Language" +msgstr "Jezik" + +#. module: email_template +#: model:ir.model,name:email_template.model_email_template_preview +msgid "Email Template Preview" +msgstr "Pregled e-mail predloška" + +#. module: email_template +#: view:email_template.preview:0 +msgid "Email Preview" +msgstr "Pregled e-maila" + +#. module: email_template +#: view:email.template:0 +msgid "" +"Remove the contextual action to use this template on related documents" +msgstr "" +"Ukloni dodatnu akciju da se ovaj predložak koristi na povezanim dokumentima" + +#. module: email_template +#: field:email.template,copyvalue:0 +#: field:email_template.preview,copyvalue:0 +msgid "Placeholder Expression" +msgstr "Izraz držača mjesta" + +#. module: email_template +#: field:email.template,sub_object:0 +#: field:email_template.preview,sub_object:0 +msgid "Sub-model" +msgstr "Podmodel" + +#. module: email_template +#: help:email.template,subject:0 +#: help:email_template.preview,subject:0 +msgid "Subject (placeholders may be used here)" +msgstr "Tema(mogu se koristiti držači mjesta)" + +#. module: email_template +#: help:email.template,reply_to:0 +#: help:email_template.preview,reply_to:0 +msgid "Preferred response address (placeholders may be used here)" +msgstr "Preferirana adresa za odgovor (modu se koristiti držači mjesta)" + +#. module: email_template +#: field:email.template,ref_ir_value:0 +#: field:email_template.preview,ref_ir_value:0 +msgid "Sidebar Button" +msgstr "Dugme sidebar-a" + +#. module: email_template +#: field:email.template,report_template:0 +#: field:email_template.preview,report_template:0 +msgid "Optional report to print and attach" +msgstr "Opcioni izvještaj za ispis i zakačku" + +#. module: email_template +#: help:email.template,null_value:0 +#: help:email_template.preview,null_value:0 +msgid "Optional value to use if the target field is empty" +msgstr "Opciona vrijednost koja će se koristiti ako je ciljano polje prazno" + +#. module: email_template +#: view:email.template:0 +msgid "Model" +msgstr "Model" + +#. module: email_template +#: model:ir.model,name:email_template.model_mail_compose_message +msgid "Email composition wizard" +msgstr "Čarobnjak sastavljanja email-a" + +#. module: email_template +#: view:email.template:0 +msgid "Add context action" +msgstr "Dodaj kontekstualnu akciju" + +#. module: email_template +#: help:email.template,model_id:0 +#: help:email_template.preview,model_id:0 +msgid "The kind of document with with this template can be used" +msgstr "Vrsta dokumenta koja se može koristiti sa ovi predloškom" + +#. module: email_template +#: field:email.template,email_recipients:0 +#: field:email_template.preview,email_recipients:0 +msgid "To (Partners)" +msgstr "Za (Partneri)" + +#. module: email_template +#: field:email.template,auto_delete:0 +#: field:email_template.preview,auto_delete:0 +msgid "Auto Delete" +msgstr "Auto brisanje" + +#. module: email_template +#: help:email.template,copyvalue:0 +#: help:email_template.preview,copyvalue:0 +msgid "" +"Final placeholder expression, to be copy-pasted in the desired template " +"field." +msgstr "" +"Krajnji izraz držača mjesta, koji će biti kopiran-zalijepljen na željenom " +"polju predloška." + +#. module: email_template +#: field:email.template,model:0 +#: field:email_template.preview,model:0 +msgid "Related Document Model" +msgstr "Povezani model dokumenta" + +#. module: email_template +#: view:email.template:0 +msgid "Addressing" +msgstr "Adresiranje" + +#. module: email_template +#: help:email.template,email_recipients:0 +#: help:email_template.preview,email_recipients:0 +msgid "" +"Comma-separated ids of recipient partners (placeholders may be used here)" +msgstr "" +"IDovi zarezom odvojeni partnera primatelja(mogu se koristiti držači mjesta)" + +#. module: email_template +#: field:email.template,attachment_ids:0 +#: field:email_template.preview,attachment_ids:0 +msgid "Attachments" +msgstr "Zakačke" + +#. module: email_template +#: code:addons/email_template/email_template.py:234 +#, python-format +msgid "Deletion of the action record failed." +msgstr "Brisanje zapisa akcije polja." + +#. module: email_template +#: field:email.template,email_cc:0 +#: field:email_template.preview,email_cc:0 +msgid "Cc" +msgstr "Cc" + +#. module: email_template +#: field:email.template,model_id:0 +#: field:email_template.preview,model_id:0 +msgid "Applies to" +msgstr "Odnosi se na" + +#. module: email_template +#: field:email.template,sub_model_object_field:0 +#: field:email_template.preview,sub_model_object_field:0 +msgid "Sub-field" +msgstr "Podpolje" + +#. module: email_template +#: view:email.template:0 +msgid "Email Details" +msgstr "Detalji e-maila" + +#. module: email_template +#: code:addons/email_template/email_template.py:199 +#, python-format +msgid "Send Mail (%s)" +msgstr "Pošalji e-mail (%s)" + +#. module: email_template +#: help:res.partner,opt_out:0 +msgid "" +"If checked, this partner will not receive any automated email notifications, " +"such as the availability of invoices." +msgstr "" + +#. module: email_template +#: help:email.template,auto_delete:0 +#: help:email_template.preview,auto_delete:0 +msgid "Permanently delete this email after sending it, to save space" +msgstr "Trajno obriši ovaj e-mail nakon slanja, radi uštede prostora" + +#. module: email_template +#: view:email.template:0 +msgid "Group by..." +msgstr "Grupiši po..." + +#. module: email_template +#: help:email.template,sub_model_object_field:0 +#: help:email_template.preview,sub_model_object_field:0 +msgid "" +"When a relationship field is selected as first field, this field lets you " +"select the target field within the destination document model (sub-model)." +msgstr "" +"Kada je relaciono polje izabrano kao prvo polje, ovo polje Vam dozvoljava da " +"odaberete ciljno polje u sklopu odredišnok dokumentnog modela (podmodela)" + +#. module: email_template +#: code:addons/email_template/email_template.py:234 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: email_template +#: field:email.template,user_signature:0 +#: field:email_template.preview,user_signature:0 +msgid "Add Signature" +msgstr "Dodaj potpis" + +#. module: email_template +#: model:ir.model,name:email_template.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: email_template +#: field:email.template,null_value:0 +#: field:email_template.preview,null_value:0 +msgid "Default Value" +msgstr "Podrazumijevana vrijednost" + +#. module: email_template +#: help:email.template,attachment_ids:0 +#: help:email_template.preview,attachment_ids:0 +msgid "" +"You may attach files to this template, to be added to all emails created " +"from this template" +msgstr "" +"Možete priložiti datoteke ovom predlošku, one će biti dodate svim e-" +"mailovima kreiranim iz ovog predloška" + +#. module: email_template +#: help:email.template,body_html:0 +#: help:email_template.preview,body_html:0 +msgid "Rich-text/HTML version of the message (placeholders may be used here)" +msgstr "Rich-text/HTML verzija poruke" + +#. module: email_template +#: view:email.template:0 +msgid "Contents" +msgstr "Sadržaj" + +#. module: email_template +#: field:email.template,subject:0 +#: field:email_template.preview,subject:0 +msgid "Subject" +msgstr "Tema" diff --git a/addons/email_template/i18n/ca.po b/addons/email_template/i18n/ca.po index 6f34504f55a..0f8a03f53d2 100644 --- a/addons/email_template/i18n/ca.po +++ b/addons/email_template/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/cs.po b/addons/email_template/i18n/cs.po index 7646b38b0a5..195840a5c90 100644 --- a/addons/email_template/i18n/cs.po +++ b/addons/email_template/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/da.po b/addons/email_template/i18n/da.po index 9ed93c175df..27d407a3251 100644 --- a/addons/email_template/i18n/da.po +++ b/addons/email_template/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/de.po b/addons/email_template/i18n/de.po index a2ece32847b..5e8cacc05e8 100644 --- a/addons/email_template/i18n/de.po +++ b/addons/email_template/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 @@ -31,12 +31,12 @@ msgstr "Vorlage" #: help:email.template,ref_ir_value:0 #: help:email_template.preview,ref_ir_value:0 msgid "Sidebar button to open the sidebar action" -msgstr "Sidebar Schaltfläche um deie Sidebar Aktion zu starten" +msgstr "Sidebar -Button, um eine Sidebar-Aktion zu starten" #. module: email_template #: field:res.partner,opt_out:0 msgid "Opt-Out" -msgstr "abmelden" +msgstr "Opt-Out" #. module: email_template #: field:email.template,email_to:0 @@ -57,7 +57,7 @@ msgid "" "Sidebar action to make this template available on records of the related " "document model" msgstr "" -"Sidebar Aktion, um diese Vorlage für alle Datensätze des zugehörigen " +"Sidebaraktion, um diese Vorlage für alle Datensätze des zugehörigen " "Datenmodells verfügbar zu machen." #. module: email_template @@ -75,7 +75,7 @@ msgstr "Absenderadresse (Platzhalter können verwendet werden)" #. module: email_template #: view:email.template:0 msgid "Remove context action" -msgstr "Entferne Kontext Aktion" +msgstr "Kontextaktion entfernen" #. module: email_template #: help:email.template,mail_server_id:0 @@ -128,7 +128,7 @@ msgid "" "If checked, the user's signature will be appended to the text version of the " "message" msgstr "" -"Wenn aktiviert, wird die Signatur des Benutzers, an die Text-Version der " +"Wenn aktiviert, wird die Signatur des Benutzers an die Text-Version der " "Nachricht angehängt" #. module: email_template @@ -139,7 +139,7 @@ msgstr "Postausgang-Server (SMTP)" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "Speichern als neue Vorlage" +msgstr "Als neue Vorlage speichern" #. module: email_template #: help:email.template,sub_object:0 @@ -154,7 +154,7 @@ msgstr "" #. module: email_template #: model:ir.model,name:email_template.model_email_template msgid "Email Templates" -msgstr "E-Mail Vorlagen" +msgstr "E-Mail-Vorlagen" #. module: email_template #: help:email.template,report_name:0 @@ -163,14 +163,14 @@ msgid "" "Name to use for the generated report file (may contain placeholders)\n" "The extension can be omitted and will then come from the report type." msgstr "" -"Name für den erzeugten Report (Platzhalter können verwendet werden)\n" +"Name für den erzeugten Report (Platzhalter können verwendet werden).\n" "Die Endung kann weggelassen werden und wird dann automatisch bestimmt." #. module: email_template #: field:email.template,ref_ir_act_window:0 #: field:email_template.preview,ref_ir_act_window:0 msgid "Sidebar action" -msgstr "Sidebar Aktion" +msgstr "Sidebar-Aktion" #. module: email_template #: help:email.template,lang:0 @@ -198,24 +198,24 @@ msgid "" "If it is a relationship field you will be able to select a target field at " "the destination of the relationship." msgstr "" -"Wähle das Zielfeld des zugehörigen Dokumenten Modells\n" +"Wählen Sie das Zielfeld des zugehörigen Dokumentenmodells\n" "Wenn es ein relationales Feld ist können Sie dann ein Feld aus der Relation " "auswählen." #. module: email_template #: view:email.template:0 msgid "Dynamic Value Builder" -msgstr "Dynamischer Werte Builder" +msgstr "Dynamischer Werte-Builder" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview msgid "Template Preview" -msgstr "Vorlagen Vorschau" +msgstr "Vorlagenvorschau" #. module: email_template #: view:mail.compose.message:0 msgid "Save as a new template" -msgstr "Speichere als neue Vorlage" +msgstr "Als neue Vorlage speichern" #. module: email_template #: view:email.template:0 @@ -250,7 +250,7 @@ msgstr "Vorschau von" #. module: email_template #: view:email_template.preview:0 msgid "Using sample document" -msgstr "Benutzen Sie Beispiel" +msgstr "Benutzen Sie das Beispieldokument" #. module: email_template #: view:email.template:0 @@ -274,12 +274,12 @@ msgstr "Sprache" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview msgid "Email Template Preview" -msgstr "E-Mail Vorlagen Vorschau" +msgstr "Email Vorlagevorschau" #. module: email_template #: view:email_template.preview:0 msgid "Email Preview" -msgstr "E-Mail Vorschau" +msgstr "E-Mail-Vorschau" #. module: email_template #: view:email.template:0 @@ -293,13 +293,13 @@ msgstr "" #: field:email.template,copyvalue:0 #: field:email_template.preview,copyvalue:0 msgid "Placeholder Expression" -msgstr "Platzhalter Ausdruck" +msgstr "Platzhalterausdruck" #. module: email_template #: field:email.template,sub_object:0 #: field:email_template.preview,sub_object:0 msgid "Sub-model" -msgstr "Sub Modul" +msgstr "Sub-Modul" #. module: email_template #: help:email.template,subject:0 @@ -317,7 +317,7 @@ msgstr "Bevorzugte Antwort-Adresse (Platzhalter können verwendet werden)" #: field:email.template,ref_ir_value:0 #: field:email_template.preview,ref_ir_value:0 msgid "Sidebar Button" -msgstr "Sidebar Schaltfläche" +msgstr "Sidebar-Button" #. module: email_template #: field:email.template,report_template:0 @@ -344,13 +344,13 @@ msgstr "E-Mail Assistent" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "Hinzufügen Kontext" +msgstr "Kontextaktion hinzufügen" #. module: email_template #: help:email.template,model_id:0 #: help:email_template.preview,model_id:0 msgid "The kind of document with with this template can be used" -msgstr "Dokument, dass mit diesem Template genutzt werden kann" +msgstr "Dokument, das mit diesem Template genutzt werden kann" #. module: email_template #: field:email.template,email_recipients:0 @@ -371,14 +371,14 @@ msgid "" "Final placeholder expression, to be copy-pasted in the desired template " "field." msgstr "" -"Endgültiger Platzhalter Ausdruck, der mit copy/paste in das entsprechende " +"Endgültiger Platzhalterausdruck, der mit copy/paste in das entsprechende " "Vorlagenfeld kopiert werden muss" #. module: email_template #: field:email.template,model:0 #: field:email_template.preview,model:0 msgid "Related Document Model" -msgstr "zugehöriges Dokumenten-Modell" +msgstr "Zugehöriges Dokumenten-Modell" #. module: email_template #: view:email.template:0 @@ -391,7 +391,7 @@ msgstr "Anschrift" msgid "" "Comma-separated ids of recipient partners (placeholders may be used here)" msgstr "" -"Komma getrennte Liste mit ids der verbundenen Partner (Platzhalter müssen " +"Kommagetrennte Liste mit ids der verbundenen Partner (Platzhalter müssen " "eingesetzt werden)." #. module: email_template @@ -427,13 +427,13 @@ msgstr "Untergeordnetes Feld" #. module: email_template #: view:email.template:0 msgid "Email Details" -msgstr "E-mail Details" +msgstr "E-Mail-Details" #. module: email_template #: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" -msgstr "Versende Mail (%s)" +msgstr "Mail (%s) versenden" #. module: email_template #: help:res.partner,opt_out:0 diff --git a/addons/email_template/i18n/en_GB.po b/addons/email_template/i18n/en_GB.po index 5734ecbd334..4b7ba76e153 100644 --- a/addons/email_template/i18n/en_GB.po +++ b/addons/email_template/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-15 05:49+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es.po b/addons/email_template/i18n/es.po index 11aefebeed8..bda1d96fef9 100644 --- a/addons/email_template/i18n/es.po +++ b/addons/email_template/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CL.po b/addons/email_template/i18n/es_CL.po index 24e46e8d5be..21226186fc5 100644 --- a/addons/email_template/i18n/es_CL.po +++ b/addons/email_template/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CR.po b/addons/email_template/i18n/es_CR.po index 16326ff1ad7..f9b4d6ffa7b 100644 --- a/addons/email_template/i18n/es_CR.po +++ b/addons/email_template/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: email_template diff --git a/addons/email_template/i18n/es_EC.po b/addons/email_template/i18n/es_EC.po index f49ca2ee418..26e8169e69d 100644 --- a/addons/email_template/i18n/es_EC.po +++ b/addons/email_template/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/et.po b/addons/email_template/i18n/et.po index 0681c8e1935..7e069b10f99 100644 --- a/addons/email_template/i18n/et.po +++ b/addons/email_template/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fa_AF.po b/addons/email_template/i18n/fa_AF.po index c5a1ebb06ca..70a43288921 100644 --- a/addons/email_template/i18n/fa_AF.po +++ b/addons/email_template/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fi.po b/addons/email_template/i18n/fi.po index 26e4d153614..b9eecc716e3 100644 --- a/addons/email_template/i18n/fi.po +++ b/addons/email_template/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fr.po b/addons/email_template/i18n/fr.po index 15fc7b9db87..9af1933e80a 100644 --- a/addons/email_template/i18n/fr.po +++ b/addons/email_template/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 @@ -380,7 +380,7 @@ msgstr "" #: field:email.template,model:0 #: field:email_template.preview,model:0 msgid "Related Document Model" -msgstr "" +msgstr "Modèle de document associé" #. module: email_template #: view:email.template:0 @@ -393,6 +393,8 @@ msgstr "" msgid "" "Comma-separated ids of recipient partners (placeholders may be used here)" msgstr "" +"Identifiants des partenaires bénéficiaires séparés par des virgules (les " +"paramètres fictifs sont acceptés)" #. module: email_template #: field:email.template,attachment_ids:0 diff --git a/addons/email_template/i18n/he.po b/addons/email_template/i18n/he.po index 2ce04ed39e5..d75dd8690ff 100644 --- a/addons/email_template/i18n/he.po +++ b/addons/email_template/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-31 04:47+0000\n" -"X-Generator: Launchpad (build 16877)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/hr.po b/addons/email_template/i18n/hr.po index 0be005fd1e5..7cd8899616e 100644 --- a/addons/email_template/i18n/hr.po +++ b/addons/email_template/i18n/hr.po @@ -14,19 +14,19 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 #: field:email_template.preview,email_from:0 msgid "From" -msgstr "" +msgstr "Od" #. module: email_template #: field:mail.compose.message,template_id:0 msgid "Template" -msgstr "" +msgstr "Predložak" #. module: email_template #: help:email.template,ref_ir_value:0 @@ -37,19 +37,19 @@ msgstr "" #. module: email_template #: field:res.partner,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "Isključiti iz masove e-pošte" #. module: email_template #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "" +msgstr "Za (E-mail)" #. module: email_template #: field:email.template,mail_server_id:0 #: field:email_template.preview,mail_server_id:0 msgid "Outgoing Mail Server" -msgstr "" +msgstr "Odlazni E-mail poslužitelj" #. module: email_template #: help:email.template,ref_ir_act_window:0 @@ -63,7 +63,7 @@ msgstr "" #: field:email.template,model_object_field:0 #: field:email_template.preview,model_object_field:0 msgid "Field" -msgstr "" +msgstr "Polje" #. module: email_template #: help:email.template,email_from:0 @@ -74,7 +74,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Remove context action" -msgstr "" +msgstr "Ukloni dodatnu akciju" #. module: email_template #: help:email.template,mail_server_id:0 @@ -83,6 +83,8 @@ msgid "" "Optional preferred server for outgoing mails. If not set, the highest " "priority one will be used." msgstr "" +"Preferirani server za izlaznu poštu. Ako nije podešen koristiti će se onaj " +"sa najvišim prioritetom." #. module: email_template #: field:email.template,report_name:0 @@ -93,7 +95,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Preview" -msgstr "" +msgstr "Pregled" #. module: email_template #: field:email.template,reply_to:0 @@ -104,7 +106,7 @@ msgstr "Odgovor-na" #. module: email_template #: view:mail.compose.message:0 msgid "Use template" -msgstr "" +msgstr "Koristi predložak" #. module: email_template #: field:email.template,body_html:0 @@ -116,7 +118,7 @@ msgstr "Sadržaj" #: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: email_template #: help:email.template,user_signature:0 @@ -125,16 +127,17 @@ msgid "" "If checked, the user's signature will be appended to the text version of the " "message" msgstr "" +"Ako je odabrano, potpis korisnika biti će dodan tekst verziji poruke." #. module: email_template #: view:email.template:0 msgid "SMTP Server" -msgstr "" +msgstr "SMTP Poslužitelj" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "" +msgstr "Spremi kao novi predložak" #. module: email_template #: help:email.template,sub_object:0 @@ -147,7 +150,7 @@ msgstr "" #. module: email_template #: model:ir.model,name:email_template.model_email_template msgid "Email Templates" -msgstr "" +msgstr "E-mail predlošci" #. module: email_template #: help:email.template,report_name:0 @@ -176,7 +179,7 @@ msgstr "" #. module: email_template #: field:email_template.preview,res_id:0 msgid "Sample Document" -msgstr "" +msgstr "Primjer dokumenta" #. module: email_template #: help:email.template,model_object_field:0 @@ -195,12 +198,12 @@ msgstr "" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview msgid "Template Preview" -msgstr "" +msgstr "Pregled predloška" #. module: email_template #: view:mail.compose.message:0 msgid "Save as a new template" -msgstr "" +msgstr "Spremi kao novi predložak" #. module: email_template #: view:email.template:0 @@ -208,6 +211,8 @@ msgid "" "Display an option on related documents to open a composition wizard with " "this template" msgstr "" +"Na povezanim dokumentima prikaži opciju koja poziva čarobnjak sa ovim " +"predloškom" #. module: email_template #: help:email.template,email_cc:0 @@ -219,17 +224,17 @@ msgstr "" #: help:email.template,email_to:0 #: help:email_template.preview,email_to:0 msgid "Comma-separated recipient addresses (placeholders may be used here)" -msgstr "" +msgstr "Adrese primatelja odvojene zarezom" #. module: email_template #: view:email.template:0 msgid "Advanced" -msgstr "" +msgstr "Napredan" #. module: email_template #: view:email_template.preview:0 msgid "Preview of" -msgstr "" +msgstr "Pregled" #. module: email_template #: view:email_template.preview:0 @@ -241,35 +246,36 @@ msgstr "" #: model:ir.actions.act_window,name:email_template.action_email_template_tree_all #: model:ir.ui.menu,name:email_template.menu_email_templates msgid "Templates" -msgstr "" +msgstr "Predlošci" #. module: email_template #: field:email.template,name:0 #: field:email_template.preview,name:0 msgid "Name" -msgstr "" +msgstr "Naziv" #. module: email_template #: field:email.template,lang:0 #: field:email_template.preview,lang:0 msgid "Language" -msgstr "" +msgstr "Jezik" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview msgid "Email Template Preview" -msgstr "" +msgstr "Pregled e-mail predloška" #. module: email_template #: view:email_template.preview:0 msgid "Email Preview" -msgstr "" +msgstr "Pregled e-maila" #. module: email_template #: view:email.template:0 msgid "" "Remove the contextual action to use this template on related documents" msgstr "" +"Ukloni dodatnu akciju da se ovaj predložak koristi na povezanim dokumentima" #. module: email_template #: field:email.template,copyvalue:0 @@ -287,13 +293,13 @@ msgstr "" #: help:email.template,subject:0 #: help:email_template.preview,subject:0 msgid "Subject (placeholders may be used here)" -msgstr "" +msgstr "Naslov" #. module: email_template #: help:email.template,reply_to:0 #: help:email_template.preview,reply_to:0 msgid "Preferred response address (placeholders may be used here)" -msgstr "" +msgstr "Preferirana adresa za odgovor" #. module: email_template #: field:email.template,ref_ir_value:0 @@ -312,21 +318,22 @@ msgstr "" #: help:email_template.preview,null_value:0 msgid "Optional value to use if the target field is empty" msgstr "" +"Opcionalna vrijednost koja će se koristiti ako je ciljano polje prazno" #. module: email_template #: view:email.template:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: email_template #: model:ir.model,name:email_template.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Čarobnjak za sastavljanje e-pošte" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "" +msgstr "Dodaj dodatnu akciju" #. module: email_template #: help:email.template,model_id:0 @@ -338,13 +345,13 @@ msgstr "" #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "Za (Partneri)" #. module: email_template #: field:email.template,auto_delete:0 #: field:email_template.preview,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "Automatsko brisanje" #. module: email_template #: help:email.template,copyvalue:0 @@ -358,12 +365,12 @@ msgstr "" #: field:email.template,model:0 #: field:email_template.preview,model:0 msgid "Related Document Model" -msgstr "" +msgstr "Povezani model dokumenta" #. module: email_template #: view:email.template:0 msgid "Addressing" -msgstr "" +msgstr "Adresiranje" #. module: email_template #: help:email.template,email_recipients:0 @@ -376,7 +383,7 @@ msgstr "" #: field:email.template,attachment_ids:0 #: field:email_template.preview,attachment_ids:0 msgid "Attachments" -msgstr "" +msgstr "Privitci" #. module: email_template #: code:addons/email_template/email_template.py:234 @@ -388,13 +395,13 @@ msgstr "" #: field:email.template,email_cc:0 #: field:email_template.preview,email_cc:0 msgid "Cc" -msgstr "" +msgstr "Cc (kopija)" #. module: email_template #: field:email.template,model_id:0 #: field:email_template.preview,model_id:0 msgid "Applies to" -msgstr "" +msgstr "Odnosi se na" #. module: email_template #: field:email.template,sub_model_object_field:0 @@ -405,13 +412,13 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Email Details" -msgstr "" +msgstr "Detalji e-maila" #. module: email_template #: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" -msgstr "" +msgstr "Pošalji e-mail (%s)" #. module: email_template #: help:res.partner,opt_out:0 @@ -424,12 +431,12 @@ msgstr "" #: help:email.template,auto_delete:0 #: help:email_template.preview,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" -msgstr "" +msgstr "Trajno obriši ovaj e-mail nakon slanja, radi uštede prostora" #. module: email_template #: view:email.template:0 msgid "Group by..." -msgstr "" +msgstr "Grupiraj po..." #. module: email_template #: help:email.template,sub_model_object_field:0 @@ -449,18 +456,18 @@ msgstr "Upozorenje" #: field:email.template,user_signature:0 #: field:email_template.preview,user_signature:0 msgid "Add Signature" -msgstr "" +msgstr "Dodaj potpis" #. module: email_template #: model:ir.model,name:email_template.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: email_template #: field:email.template,null_value:0 #: field:email_template.preview,null_value:0 msgid "Default Value" -msgstr "" +msgstr "Predefinirana vrijednost" #. module: email_template #: help:email.template,attachment_ids:0 @@ -469,23 +476,25 @@ msgid "" "You may attach files to this template, to be added to all emails created " "from this template" msgstr "" +"Možete priložiti datoteke ovom predlošku, one će biti dodate svim e-" +"mailovima kreiranim iz ovog predloška" #. module: email_template #: help:email.template,body_html:0 #: help:email_template.preview,body_html:0 msgid "Rich-text/HTML version of the message (placeholders may be used here)" -msgstr "" +msgstr "Rich-text/HTML verzija poruke" #. module: email_template #: view:email.template:0 msgid "Contents" -msgstr "" +msgstr "Sadržaj" #. module: email_template #: field:email.template,subject:0 #: field:email_template.preview,subject:0 msgid "Subject" -msgstr "" +msgstr "Naslov" #~ msgid "Email Content " #~ msgstr "Sadržaj e-pošte " diff --git a/addons/email_template/i18n/hu.po b/addons/email_template/i18n/hu.po index acf5c841267..a9c85d8352c 100644 --- a/addons/email_template/i18n/hu.po +++ b/addons/email_template/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/it.po b/addons/email_template/i18n/it.po index 093c6b2dd6c..d6921d3c9cc 100644 --- a/addons/email_template/i18n/it.po +++ b/addons/email_template/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 14:31+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ja.po b/addons/email_template/i18n/ja.po index 45ec626d005..6703ea211a2 100644 --- a/addons/email_template/i18n/ja.po +++ b/addons/email_template/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 @@ -43,7 +43,7 @@ msgstr "オプトアウト" #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "" +msgstr "宛先(Eメール)" #. module: email_template #: field:email.template,mail_server_id:0 @@ -93,7 +93,7 @@ msgstr "報告書ファイル名" #. module: email_template #: view:email.template:0 msgid "Preview" -msgstr "" +msgstr "プレビュー表示" #. module: email_template #: field:email.template,reply_to:0 @@ -104,7 +104,7 @@ msgstr "返信先" #. module: email_template #: view:mail.compose.message:0 msgid "Use template" -msgstr "" +msgstr "テンプレートを使用" #. module: email_template #: field:email.template,body_html:0 @@ -134,7 +134,7 @@ msgstr "SMTP サーバ" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "" +msgstr "新しいテンプレートとして保存" #. module: email_template #: help:email.template,sub_object:0 @@ -196,7 +196,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Dynamic Value Builder" -msgstr "" +msgstr "動的値ビルダ" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview @@ -259,7 +259,7 @@ msgstr "氏名" #: field:email.template,lang:0 #: field:email_template.preview,lang:0 msgid "Language" -msgstr "" +msgstr "言語" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview @@ -281,7 +281,7 @@ msgstr "" #: field:email.template,copyvalue:0 #: field:email_template.preview,copyvalue:0 msgid "Placeholder Expression" -msgstr "" +msgstr "プレースホルダ表現" #. module: email_template #: field:email.template,sub_object:0 @@ -332,19 +332,19 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "" +msgstr "コンテキストアクションを追加" #. module: email_template #: help:email.template,model_id:0 #: help:email_template.preview,model_id:0 msgid "The kind of document with with this template can be used" -msgstr "" +msgstr "このテンプレートで使用できる文書の種類" #. module: email_template #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "宛先(取引先)" #. module: email_template #: field:email.template,auto_delete:0 @@ -369,14 +369,14 @@ msgstr "関連する文書モデル" #. module: email_template #: view:email.template:0 msgid "Addressing" -msgstr "" +msgstr "住所" #. module: email_template #: help:email.template,email_recipients:0 #: help:email_template.preview,email_recipients:0 msgid "" "Comma-separated ids of recipient partners (placeholders may be used here)" -msgstr "" +msgstr "カンマで区切られた取引先のID(プレースホルダはここで使用します)" #. module: email_template #: field:email.template,attachment_ids:0 @@ -400,7 +400,7 @@ msgstr "写し(CC)" #: field:email.template,model_id:0 #: field:email_template.preview,model_id:0 msgid "Applies to" -msgstr "" +msgstr "適用" #. module: email_template #: field:email.template,sub_model_object_field:0 @@ -466,7 +466,7 @@ msgstr "取引先" #: field:email.template,null_value:0 #: field:email_template.preview,null_value:0 msgid "Default Value" -msgstr "" +msgstr "デフォルト値" #. module: email_template #: help:email.template,attachment_ids:0 @@ -485,7 +485,7 @@ msgstr "メッセージのリッチテキスト / HTML 版" #. module: email_template #: view:email.template:0 msgid "Contents" -msgstr "" +msgstr "内容" #. module: email_template #: field:email.template,subject:0 diff --git a/addons/email_template/i18n/lt.po b/addons/email_template/i18n/lt.po index 763dd92d139..bf5ab2380ad 100644 --- a/addons/email_template/i18n/lt.po +++ b/addons/email_template/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/mk.po b/addons/email_template/i18n/mk.po index 6d4bef7e59e..b2794b7da3b 100644 --- a/addons/email_template/i18n/mk.po +++ b/addons/email_template/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/mn.po b/addons/email_template/i18n/mn.po index 30f2a47d72a..d62f74bc3ad 100644 --- a/addons/email_template/i18n/mn.po +++ b/addons/email_template/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nb.po b/addons/email_template/i18n/nb.po index 517b20d2f21..ad1634bdebe 100644 --- a/addons/email_template/i18n/nb.po +++ b/addons/email_template/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nl.po b/addons/email_template/i18n/nl.po index 2a4a6212188..fccf8cfce73 100644 --- a/addons/email_template/i18n/nl.po +++ b/addons/email_template/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:16+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nl_BE.po b/addons/email_template/i18n/nl_BE.po index 7cc66b01b16..da0215a7187 100644 --- a/addons/email_template/i18n/nl_BE.po +++ b/addons/email_template/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-04-26 16:28+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pl.po b/addons/email_template/i18n/pl.po index 9a73f6e6c63..9b8f8af0e13 100644 --- a/addons/email_template/i18n/pl.po +++ b/addons/email_template/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt.po b/addons/email_template/i18n/pt.po index 59e3b4d1a1a..ca368073d6c 100644 --- a/addons/email_template/i18n/pt.po +++ b/addons/email_template/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt_BR.po b/addons/email_template/i18n/pt_BR.po index 0833062cae1..21202b0d6cc 100644 --- a/addons/email_template/i18n/pt_BR.po +++ b/addons/email_template/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 17:45+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index e049f016bc3..9fff3f06246 100644 --- a/addons/email_template/i18n/ro.po +++ b/addons/email_template/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 @@ -49,7 +49,7 @@ msgstr "Destinatar (Email-uri)" #: field:email.template,mail_server_id:0 #: field:email_template.preview,mail_server_id:0 msgid "Outgoing Mail Server" -msgstr "Server Iesire E-mail-uri" +msgstr "Server Ieșire E-mail-uri" #. module: email_template #: help:email.template,ref_ir_act_window:0 @@ -65,7 +65,7 @@ msgstr "" #: field:email.template,model_object_field:0 #: field:email_template.preview,model_object_field:0 msgid "Field" -msgstr "Camp" +msgstr "Câmp" #. module: email_template #: help:email.template,email_from:0 diff --git a/addons/email_template/i18n/ru.po b/addons/email_template/i18n/ru.po index f951ad0358b..88861ff302c 100644 --- a/addons/email_template/i18n/ru.po +++ b/addons/email_template/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sl.po b/addons/email_template/i18n/sl.po index dbe01972659..41b5da5af8c 100644 --- a/addons/email_template/i18n/sl.po +++ b/addons/email_template/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 @@ -43,7 +43,7 @@ msgstr "" #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "" +msgstr "Za (elektronski naslovi)" #. module: email_template #: field:email.template,mail_server_id:0 @@ -83,12 +83,14 @@ msgid "" "Optional preferred server for outgoing mails. If not set, the highest " "priority one will be used." msgstr "" +"Opcijsko prioritetni server za izhodno pošto. Če ni določen, bo uporabljen " +"tisti z najvišjo prioriteto." #. module: email_template #: field:email.template,report_name:0 #: field:email_template.preview,report_name:0 msgid "Report Filename" -msgstr "" +msgstr "Datoteka s poročilom" #. module: email_template #: view:email.template:0 @@ -104,7 +106,7 @@ msgstr "Odgovori" #. module: email_template #: view:mail.compose.message:0 msgid "Use template" -msgstr "" +msgstr "Uporabi predlogo" #. module: email_template #: field:email.template,body_html:0 @@ -125,6 +127,7 @@ msgid "" "If checked, the user's signature will be appended to the text version of the " "message" msgstr "" +"Če je označeno, bo uporabnikov podpis dodan tekstovni verziji sporočila" #. module: email_template #: view:email.template:0 @@ -134,7 +137,7 @@ msgstr "Strežnik SMTP" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "" +msgstr "Shrani kot novo predlogo" #. module: email_template #: help:email.template,sub_object:0 @@ -176,7 +179,7 @@ msgstr "" #. module: email_template #: field:email_template.preview,res_id:0 msgid "Sample Document" -msgstr "" +msgstr "Primer dokumenta" #. module: email_template #: help:email.template,model_object_field:0 @@ -195,12 +198,12 @@ msgstr "" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview msgid "Template Preview" -msgstr "" +msgstr "Predogled predloge" #. module: email_template #: view:mail.compose.message:0 msgid "Save as a new template" -msgstr "" +msgstr "Shrani kot novo predlogo" #. module: email_template #: view:email.template:0 @@ -219,7 +222,7 @@ msgstr "" #: help:email.template,email_to:0 #: help:email_template.preview,email_to:0 msgid "Comma-separated recipient addresses (placeholders may be used here)" -msgstr "" +msgstr "Naslovi prejemnikov ločeni z vejico" #. module: email_template #: view:email.template:0 @@ -229,7 +232,7 @@ msgstr "Napredeno" #. module: email_template #: view:email_template.preview:0 msgid "Preview of" -msgstr "" +msgstr "Predogled" #. module: email_template #: view:email_template.preview:0 @@ -258,12 +261,12 @@ msgstr "Jezik" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview msgid "Email Template Preview" -msgstr "" +msgstr "Predogled predloge elektronskega sporočila" #. module: email_template #: view:email_template.preview:0 msgid "Email Preview" -msgstr "" +msgstr "Predogled elektronskega sporočila" #. module: email_template #: view:email.template:0 @@ -281,7 +284,7 @@ msgstr "" #: field:email.template,sub_object:0 #: field:email_template.preview,sub_object:0 msgid "Sub-model" -msgstr "" +msgstr "Podrejeni model" #. module: email_template #: help:email.template,subject:0 @@ -293,7 +296,7 @@ msgstr "" #: help:email.template,reply_to:0 #: help:email_template.preview,reply_to:0 msgid "Preferred response address (placeholders may be used here)" -msgstr "" +msgstr "Prioritetni naslov za odgovor" #. module: email_template #: field:email.template,ref_ir_value:0 @@ -305,13 +308,13 @@ msgstr "" #: field:email.template,report_template:0 #: field:email_template.preview,report_template:0 msgid "Optional report to print and attach" -msgstr "" +msgstr "Opcijsko poročilo za tiskanje ali priponko" #. module: email_template #: help:email.template,null_value:0 #: help:email_template.preview,null_value:0 msgid "Optional value to use if the target field is empty" -msgstr "" +msgstr "Opcijska vrednost, ki se uporabi, če je polje prazno" #. module: email_template #: view:email.template:0 @@ -326,7 +329,7 @@ msgstr "Čarovnik za sestavljanje e-pošte" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "" +msgstr "Dodaj ustrezno aktivnost" #. module: email_template #: help:email.template,model_id:0 @@ -338,13 +341,13 @@ msgstr "" #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "Za (partnerji)" #. module: email_template #: field:email.template,auto_delete:0 #: field:email_template.preview,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "Avtomatično brisanje" #. module: email_template #: help:email.template,copyvalue:0 @@ -363,14 +366,14 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Addressing" -msgstr "" +msgstr "Naslavljanje" #. module: email_template #: help:email.template,email_recipients:0 #: help:email_template.preview,email_recipients:0 msgid "" "Comma-separated ids of recipient partners (placeholders may be used here)" -msgstr "" +msgstr "Z vejico ločeni id-ji prejemnikov" #. module: email_template #: field:email.template,attachment_ids:0 @@ -382,13 +385,13 @@ msgstr "Priloge" #: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." -msgstr "" +msgstr "Brisanje ni bilo uspešno" #. module: email_template #: field:email.template,email_cc:0 #: field:email_template.preview,email_cc:0 msgid "Cc" -msgstr "" +msgstr "Cc" #. module: email_template #: field:email.template,model_id:0 @@ -400,18 +403,18 @@ msgstr "Velja za" #: field:email.template,sub_model_object_field:0 #: field:email_template.preview,sub_model_object_field:0 msgid "Sub-field" -msgstr "" +msgstr "Podrejeno polje" #. module: email_template #: view:email.template:0 msgid "Email Details" -msgstr "" +msgstr "Podrobnosti elektronskega sporočila" #. module: email_template #: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" -msgstr "" +msgstr "Pošlji sporočilo (%s)" #. module: email_template #: help:res.partner,opt_out:0 @@ -424,7 +427,7 @@ msgstr "" #: help:email.template,auto_delete:0 #: help:email_template.preview,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" -msgstr "" +msgstr "Dokončno izbriši to sporočilo potem ko je poslano." #. module: email_template #: view:email.template:0 @@ -449,7 +452,7 @@ msgstr "Opozorilo" #: field:email.template,user_signature:0 #: field:email_template.preview,user_signature:0 msgid "Add Signature" -msgstr "" +msgstr "Dodaj podpis" #. module: email_template #: model:ir.model,name:email_template.model_res_partner @@ -469,12 +472,14 @@ msgid "" "You may attach files to this template, to be added to all emails created " "from this template" msgstr "" +"K predlogi lahko pripnete datoteke, da bodo dodane elektronskemu sporočilu, " +"kreiranem na osnovi te predloge" #. module: email_template #: help:email.template,body_html:0 #: help:email_template.preview,body_html:0 msgid "Rich-text/HTML version of the message (placeholders may be used here)" -msgstr "" +msgstr "Rich-text/HTML verzija sporočila" #. module: email_template #: view:email.template:0 diff --git a/addons/email_template/i18n/sr.po b/addons/email_template/i18n/sr.po index 10a8576718a..1d5434bdf7b 100644 --- a/addons/email_template/i18n/sr.po +++ b/addons/email_template/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sr@latin.po b/addons/email_template/i18n/sr@latin.po index 303cae591a3..ebeeb0a61ee 100644 --- a/addons/email_template/i18n/sr@latin.po +++ b/addons/email_template/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sv.po b/addons/email_template/i18n/sv.po index 3aed11dff45..a365eae050d 100644 --- a/addons/email_template/i18n/sv.po +++ b/addons/email_template/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/tr.po b/addons/email_template/i18n/tr.po index b87455ff59c..5f9aeb68b7a 100644 --- a/addons/email_template/i18n/tr.po +++ b/addons/email_template/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/zh_CN.po b/addons/email_template/i18n/zh_CN.po index 794dcf6177a..6caa206cf92 100644 --- a/addons/email_template/i18n/zh_CN.po +++ b/addons/email_template/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/zh_TW.po b/addons/email_template/i18n/zh_TW.po index 8570f9fd2b4..aba650d44cb 100644 --- a/addons/email_template/i18n/zh_TW.po +++ b/addons/email_template/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/tests/test_mail.py b/addons/email_template/tests/test_mail.py index 83cabb01252..580421fe67e 100644 --- a/addons/email_template/tests/test_mail.py +++ b/addons/email_template/tests/test_mail.py @@ -237,7 +237,7 @@ class test_message_compose(TestMail): email_template.send_mail(cr, uid, email_template_id, self.group_pigs_id, force_send=True, context=context) sent_emails = self._build_email_kwargs_list email_to_lst = [ - ['b@b.b', 'c@c.c'], ['"Followers of Pigs" '], + ['b@b.b', 'c@c.c'], ['"Followers of Pigs" '], ['"Followers of Pigs" '], ['"Followers of Pigs" ']] self.assertEqual(len(sent_emails), 4, 'email_template: send_mail: 3 valid email recipients + email_to -> should send 4 emails') for email in sent_emails: diff --git a/addons/email_template/wizard/mail_compose_message.py b/addons/email_template/wizard/mail_compose_message.py index f8bf45b2ba0..beede1122dc 100644 --- a/addons/email_template/wizard/mail_compose_message.py +++ b/addons/email_template/wizard/mail_compose_message.py @@ -41,6 +41,20 @@ def _reopen(self, res_id, model): class mail_compose_message(osv.TransientModel): _inherit = 'mail.compose.message' + def default_get(self, cr, uid, fields, context=None): + """ Override to pre-fill the data when having a template in single-email mode """ + if context is None: + context = {} + res = super(mail_compose_message, self).default_get(cr, uid, fields, context=context) + if res.get('composition_mode') != 'mass_mail' and context.get('default_template_id') and res.get('model') and res.get('res_id'): + res.update( + self.onchange_template_id( + cr, uid, [], context['default_template_id'], res.get('composition_mode'), + res.get('model'), res.get('res_id', context.get('active_id')), context=context + )['value'] + ) + return res + _columns = { 'template_id': fields.many2one('email.template', 'Use template', select=True), 'partner_to': fields.char('To (Partner IDs)', diff --git a/addons/email_template/wizard/mail_compose_message_view.xml b/addons/email_template/wizard/mail_compose_message_view.xml index b7c57af2679..44145114fff 100644 --- a/addons/email_template/wizard/mail_compose_message_view.xml +++ b/addons/email_template/wizard/mail_compose_message_view.xml @@ -28,7 +28,8 @@
    Use template + on_change="onchange_template_id(template_id, composition_mode, model, res_id, context)" domain="[('model_id.model','=',model)]" + context="{'default_model': model, 'default_body_html': body, 'default_subject': subject}"/>