From 36d2afb046d44b65e222080b7e878eb30bcb00d4 Mon Sep 17 00:00:00 2001 From: Julien Thewys Date: Wed, 17 Nov 2010 11:46:01 +0100 Subject: [PATCH 1/6] [IMP] Added 'test_force' cli param for loading tests without demo data. Sometimes you want tests to be run against an environment where no demo data are allowed and you do not want to have tests loaded from the 'data' section as records will not be rolled back. bzr revid: jth@openerp.com-20101117104601-jottg84dmss716r0 --- bin/addons/__init__.py | 2 ++ bin/tools/config.py | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 0b5c6dc09c5..572a9e0ba86 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -738,6 +738,8 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs): # 'data' section, but should probably not alter the data, # as there is no rollback. load_test(cr, m, idref, mode) + elif tools.config.options['test_force']: + load_test(cr, m, idref, mode) package_todo.append(package.name) diff --git a/bin/tools/config.py b/bin/tools/config.py index f98cdbab1b9..fd1d8c41cba 100644 --- a/bin/tools/config.py +++ b/bin/tools/config.py @@ -85,6 +85,7 @@ class configmanager(object): 'test_file' : False, 'test_report_directory' : False, 'test_disable' : False, + 'test_force' : False, 'test_commit' : False, 'static_http_enable': False, 'static_http_document_root': None, @@ -162,6 +163,8 @@ class configmanager(object): group.add_option("--test-report-directory", dest="test_report_directory", help="If set, will save sample of all reports in this directory.") group.add_option("--test-disable", action="store_true", dest="test_disable", default=False, help="Disable loading test files.") + group.add_option("--force-test", action="store_true", dest="test_force", + default=False, help="Forces loading of test files (even if --without-demo).") group.add_option("--test-commit", action="store_true", dest="test_commit", default=False, help="Commit database changes performed by tests.") parser.add_option_group(group) @@ -285,7 +288,7 @@ class configmanager(object): 'language', 'translate_out', 'translate_in', 'debug_mode', 'smtp_ssl', 'stop_after_init', 'logrotate', 'without_demo', 'netrpc', 'xmlrpc', 'syslog', 'list_db', 'xmlrpcs', - 'test_file', 'test_disable', 'test_commit', 'test_report_directory' + 'test_file', 'test_disable', 'test_force', 'test_commit', 'test_report_directory' ] for arg in keys: From 04c3beb9cbd8116690a0a0912d725cd41c80e3ac Mon Sep 17 00:00:00 2001 From: Julien Thewys Date: Wed, 17 Nov 2010 13:27:37 +0100 Subject: [PATCH 2/6] [REF] update comments for test loading (previous commit) bzr revid: jth@openerp.com-20101117122737-hqcrj7m28pbsbuup --- bin/addons/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 572a9e0ba86..e4fabab416e 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -733,12 +733,9 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs): load_demo(cr, m, idref, mode) cr.execute('update ir_module_module set demo=%s where id=%s', (True, mid)) - # launch tests only in demo mode, as most tests will depend - # on demo data. Other tests can be added into the regular - # 'data' section, but should probably not alter the data, - # as there is no rollback. load_test(cr, m, idref, mode) elif tools.config.options['test_force']: + # forces test loading without demo data (useful when updating modules) load_test(cr, m, idref, mode) package_todo.append(package.name) From c9c2f03a8ccdedf1bdd77554fb1f01db1d818ccd Mon Sep 17 00:00:00 2001 From: Julien Thewys Date: Wed, 17 Nov 2010 13:39:28 +0100 Subject: [PATCH 3/6] [REM] Removed wrongly committed changes (wrong branch name). bzr revid: jth@openerp.com-20101117123928-vi70mnhlt9nz8cfc --- bin/addons/__init__.py | 7 ++++--- bin/tools/config.py | 5 +---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index e4fabab416e..0b5c6dc09c5 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -733,9 +733,10 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs): load_demo(cr, m, idref, mode) cr.execute('update ir_module_module set demo=%s where id=%s', (True, mid)) - load_test(cr, m, idref, mode) - elif tools.config.options['test_force']: - # forces test loading without demo data (useful when updating modules) + # launch tests only in demo mode, as most tests will depend + # on demo data. Other tests can be added into the regular + # 'data' section, but should probably not alter the data, + # as there is no rollback. load_test(cr, m, idref, mode) package_todo.append(package.name) diff --git a/bin/tools/config.py b/bin/tools/config.py index fd1d8c41cba..f98cdbab1b9 100644 --- a/bin/tools/config.py +++ b/bin/tools/config.py @@ -85,7 +85,6 @@ class configmanager(object): 'test_file' : False, 'test_report_directory' : False, 'test_disable' : False, - 'test_force' : False, 'test_commit' : False, 'static_http_enable': False, 'static_http_document_root': None, @@ -163,8 +162,6 @@ class configmanager(object): group.add_option("--test-report-directory", dest="test_report_directory", help="If set, will save sample of all reports in this directory.") group.add_option("--test-disable", action="store_true", dest="test_disable", default=False, help="Disable loading test files.") - group.add_option("--force-test", action="store_true", dest="test_force", - default=False, help="Forces loading of test files (even if --without-demo).") group.add_option("--test-commit", action="store_true", dest="test_commit", default=False, help="Commit database changes performed by tests.") parser.add_option_group(group) @@ -288,7 +285,7 @@ class configmanager(object): 'language', 'translate_out', 'translate_in', 'debug_mode', 'smtp_ssl', 'stop_after_init', 'logrotate', 'without_demo', 'netrpc', 'xmlrpc', 'syslog', 'list_db', 'xmlrpcs', - 'test_file', 'test_disable', 'test_force', 'test_commit', 'test_report_directory' + 'test_file', 'test_disable', 'test_commit', 'test_report_directory' ] for arg in keys: From 6af95836bbb67b2c00050e4298aee8d2e4d1e49a Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Thu, 18 Nov 2010 04:45:40 +0000 Subject: [PATCH 4/6] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20101118044540-oqxeg8703hrtp73g --- bin/addons/base/i18n/fr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/addons/base/i18n/fr.po b/bin/addons/base/i18n/fr.po index 86511be1fbb..586f16a06c4 100644 --- a/bin/addons/base/i18n/fr.po +++ b/bin/addons/base/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-10-18 17:46+0000\n" -"PO-Revision-Date: 2010-11-16 10:13+0000\n" -"Last-Translator: Numérigraphe \n" +"PO-Revision-Date: 2010-11-17 07:14+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-17 04:50+0000\n" +"X-Launchpad-Export-Date: 2010-11-18 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base From c90aa7f2f0eb9688dcfda6f651feb0be7bb9e439 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 18 Nov 2010 17:21:31 +0100 Subject: [PATCH 5/6] [FIX] caldav,email_template,hr_payroll,mrp: cleanup some calls to _( ) - only literal strings should ever been passed! bzr revid: odo@openerp.com-20101118162131-s2nb25l3e4xzmnjg --- addons/caldav/calendar.py | 5 +-- .../email_template/email_template_mailbox.py | 4 +- addons/hr_payroll/hr_payroll.py | 6 +-- .../hr_payroll_account/hr_payroll_account.py | 14 +++---- addons/mrp/mrp.py | 2 +- addons/survey/wizard/survey_answer.py | 42 +++++++++---------- 6 files changed, 36 insertions(+), 37 deletions(-) diff --git a/addons/caldav/calendar.py b/addons/caldav/calendar.py index ccc4bf39fac..7515e47506e 100644 --- a/addons/caldav/calendar.py +++ b/addons/caldav/calendar.py @@ -770,8 +770,7 @@ class basic_calendar_line(osv.osv): res = cr.fetchone() if res: if res[0] > 0: - raise osv.except_osv(_('Warning !'), _('Can not create \ -line "%s" more than once' % (vals.get('name')))) + raise osv.except_osv(_('Warning !'), _('Can not create line "%s" more than once') % (vals.get('name'))) return super(basic_calendar_line, self).create(cr, uid, vals, context=context) basic_calendar_line() @@ -859,7 +858,7 @@ class basic_calendar_fields(osv.osv): line = line_obj.browse(cr, uid, l_id, context=context)[0] line_rel = line.object_id.model if (relation != 'NULL') and (not relation == line_rel): - raise osv.except_osv(_('Warning !'), _('Please provide proper configuration of "%s" in Calendar Lines' % (name))) + raise osv.except_osv(_('Warning !'), _('Please provide proper configuration of "%s" in Calendar Lines') % (name)) return True def create(self, cr, uid, vals, context=None): diff --git a/addons/email_template/email_template_mailbox.py b/addons/email_template/email_template_mailbox.py index 2eb0df13791..51d73ffc76c 100644 --- a/addons/email_template/email_template_mailbox.py +++ b/addons/email_template/email_template_mailbox.py @@ -43,9 +43,9 @@ class email_template_mailbox(osv.osv): self.send_all_mail(cursor, user, context) except Exception, e: LOGGER.notifyChannel( - _("Email Template"), + "Email Template", netsvc.LOG_ERROR, - _("Error sending mail: %s" % str(e))) + _("Error sending mail: %s") % e) def send_all_mail(self, cr, uid, ids=None, context=None): if ids is None: diff --git a/addons/hr_payroll/hr_payroll.py b/addons/hr_payroll/hr_payroll.py index 54b16442699..bc2a4581cc3 100644 --- a/addons/hr_payroll/hr_payroll.py +++ b/addons/hr_payroll/hr_payroll.py @@ -473,7 +473,7 @@ class payroll_register(osv.osv): for slip in reg.line_ids: if not slip.employee_id.bank_account_id: - raise osv.except_osv(_('Error !'), _('Please define bank account for the %s employee' % (slip.employee_id.name))) + raise osv.except_osv(_('Error !'), _('Please define bank account for the %s employee') % (slip.employee_id.name)) pline = { 'advice_id':pid, 'name':slip.employee_id.bank_account_id.acc_number, @@ -1261,7 +1261,7 @@ class hr_payslip(osv.osv): paid_leave = 0.0 for hday in holiday_pool.browse(cr, uid, leave_ids, context=context): if not hday.holiday_status_id.head_id: - raise osv.except_osv(_('Error !'), _('Please check configuration of %s, payroll head is missing' % (hday.holiday_status_id.name))) + raise osv.except_osv(_('Error !'), _('Please check configuration of %s, payroll head is missing') % (hday.holiday_status_id.name)) res = { 'slip_id':slip.id, @@ -1448,7 +1448,7 @@ class hr_employee(osv.osv): try: amt = eval(base, obj) except Exception, e: - raise osv.except_osv(_('Variable Error !'), _('Variable Error: %s ' % (e))) + raise osv.except_osv(_('Variable Error !'), _('Variable Error: %s ') % (e)) amount = 0.0 if line.amount_type == 'per': amount = amt * line.amount diff --git a/addons/hr_payroll_account/hr_payroll_account.py b/addons/hr_payroll_account/hr_payroll_account.py index 71dfa3cad0f..43788c25f7b 100644 --- a/addons/hr_payroll_account/hr_payroll_account.py +++ b/addons/hr_payroll_account/hr_payroll_account.py @@ -277,10 +277,10 @@ class hr_payslip(osv.osv): if ((fiscal_year['date_start'] <= slip.date) and (fiscal_year['date_stop'] >= slip.date)): year_exist = True if not year_exist: - raise osv.except_osv(_('Warning !'), _('Fiscal Year is not defined for slip date %s'%slip.date)) + raise osv.except_osv(_('Warning !'), _('Fiscal Year is not defined for slip date %s') % slip.date) search_periods = period_pool.search(cr, uid, [('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context) if not search_periods: - raise osv.except_osv(_('Warning !'), _('Period is not defined for slip date %s'%slip.date)) + raise osv.except_osv(_('Warning !'), _('Period is not defined for slip date %s') % slip.date) period_id = search_periods[0] name = 'Payment of Salary to %s' % (slip.employee_id.name) move = { @@ -428,10 +428,10 @@ class hr_payslip(osv.osv): partner_id = False if not slip.employee_id.bank_account_id: - raise osv.except_osv(_('Integrity Error !'), _('Please defined bank account for %s !' % (slip.employee_id.name))) + raise osv.except_osv(_('Integrity Error !'), _('Please defined bank account for %s !') % (slip.employee_id.name)) if not slip.employee_id.bank_account_id.partner_id: - raise osv.except_osv(_('Integrity Error !'), _('Please defined partner in bank account for %s !' % (slip.employee_id.name))) + raise osv.except_osv(_('Integrity Error !'), _('Please defined partner in bank account for %s !') % (slip.employee_id.name)) partner = slip.employee_id.bank_account_id.partner_id partner_id = slip.employee_id.bank_account_id.partner_id.id @@ -450,10 +450,10 @@ class hr_payslip(osv.osv): if ((fiscal_year['date_start'] <= slip.date) and (fiscal_year['date_stop'] >= slip.date)): year_exist = True if not year_exist: - raise osv.except_osv(_('Warning !'), _('Fiscal Year is not defined for slip date %s'%slip.date)) + raise osv.except_osv(_('Warning !'), _('Fiscal Year is not defined for slip date %s') % slip.date) search_periods = period_pool.search(cr,uid,[('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context) if not search_periods: - raise osv.except_osv(_('Warning !'), _('Period is not defined for slip date %s'%slip.date)) + raise osv.except_osv(_('Warning !'), _('Period is not defined for slip date %s') % slip.date) period_id = search_periods[0] move = { @@ -667,4 +667,4 @@ class account_move_link_slip(osv.osv): } account_move_link_slip() -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp/mrp.py b/addons/mrp/mrp.py index c71565442e5..02dbaed190c 100644 --- a/addons/mrp/mrp.py +++ b/addons/mrp/mrp.py @@ -465,7 +465,7 @@ class mrp_production(osv.osv): if s['state'] in ['draft','cancel']: unlink_ids.append(s['id']) else: - raise osv.except_osv(_('Invalid action !'), _('Cannot delete Production Order(s) which are in %s State!' % s['state'])) + raise osv.except_osv(_('Invalid action !'), _('Cannot delete Production Order(s) which are in %s State!') % s['state']) return osv.osv.unlink(self, cr, uid, unlink_ids, context=context) def copy(self, cr, uid, id, default=None, context=None): diff --git a/addons/survey/wizard/survey_answer.py b/addons/survey/wizard/survey_answer.py index 978f66c9d75..b8a878a506a 100644 --- a/addons/survey/wizard/survey_answer.py +++ b/addons/survey/wizard/survey_answer.py @@ -120,14 +120,14 @@ class survey_question_wiz(osv.osv_memory): if ((context.has_key('active') and not context.get('active', False)) \ or not context.has_key('active')) and not sur_name_rec.page_no + 1: if sur_rec.state != "open" : - raise osv.except_osv(_('Warning !'),_("You can not give answer because of survey is not open for answer")) + raise osv.except_osv(_('Warning !'),_("You can not answer because the survey is not open")) cr.execute('select count(id) from survey_history where user_id=%s\ and survey_id=%s', (uid,survey_id)) res = cr.fetchone()[0] user_limit = survey_obj.browse(cr, uid, survey_id) user_limit = user_limit.response_user if user_limit and res >= user_limit: - raise osv.except_osv(_('Warning !'),_("You can not give answer for this survey more than %s times") % (user_limit)) + raise osv.except_osv(_('Warning !'),_("You can not answer this survey more than %s times") % (user_limit)) if sur_rec.max_response_limit and sur_rec.max_response_limit <= sur_rec.tot_start_survey and not sur_name_rec.page_no + 1: survey_obj.write(cr, uid, survey_id, {'state':'close', 'date_close':strftime("%Y-%m-%d %H:%M:%S")}) @@ -150,7 +150,7 @@ class survey_question_wiz(osv.osv_memory): pre_button = True if flag: pag_rec = page_obj.browse(cr, uid, p_id) - xml_form = etree.Element('form', {'string': _(tools.ustr(pag_rec.title))}) + xml_form = etree.Element('form', {'string': tools.ustr(pag_rec.title)}) xml_group = etree.SubElement(xml_form, 'group', {'col': '1', 'colspan': '4'}) if context.has_key('response_id') and context.get('response_id', False) \ and int(context.get('response_id',0)[0]) > 0: @@ -692,7 +692,7 @@ class survey_question_wiz(osv.osv_memory): if error: for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['comment_valid_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['comment_valid_err_msg'])) resp_obj.write(cr, uid, resp_id, {'comment':val1}) sur_name_read['store_ans'][resp_id].update({key1:val1}) @@ -731,7 +731,7 @@ class survey_question_wiz(osv.osv_memory): if error: for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['validation_valid_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['validation_valid_err_msg'])) if key1.split('_')[1] == "single" : resp_obj.write(cr, uid, resp_id, {'single_text':val1}) @@ -751,7 +751,7 @@ class survey_question_wiz(osv.osv_memory): except: for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' \nPlease enter an integer value " )) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' \n" + _("Please enter an integer value")) elif val1 and que_id == key1.split('_')[0] and len(key1.split('_')) == 3: if type(val1) == type('') or type(val1) == type(u''): @@ -780,12 +780,12 @@ class survey_question_wiz(osv.osv_memory): if comment_field and comment_value: for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['make_comment_field_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['make_comment_field_err_msg'])) if que_rec['type'] == "rating_scale" and que_rec['rating_allow_one_column_require'] and len(selected_value) > len(list(set(selected_value))): for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "\n you cannot select same answer more than one times'")) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "'\n" + _("You cannot select the same answer more than one time")) if not select_count: resp_obj.write(cr, uid, resp_id, {'state':'skip'}) @@ -793,7 +793,7 @@ class survey_question_wiz(osv.osv_memory): if que_rec['numeric_required_sum'] and numeric_sum > que_rec['numeric_required_sum']: for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['numeric_required_sum_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['numeric_required_sum_err_msg'])) if que_rec['type'] in ['multiple_textboxes_diff_type', 'multiple_choice_multiple_ans','matrix_of_choices_only_one_ans','matrix_of_choices_only_multi_ans','matrix_of_drop_down_menus','rating_scale','multiple_textboxes','numerical_textboxes','date','date_and_time'] and que_rec['is_require_answer']: if matrix_list: @@ -804,7 +804,7 @@ class survey_question_wiz(osv.osv_memory): (que_rec['required_type'] == 'a range' and (len(list(set(matrix_list))) < que_rec['minimum_req_ans'] or len(list(set(matrix_list))) > que_rec['maximum_req_ans'])): for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg'])) elif (que_rec['required_type'] == 'all' and select_count < len(que_rec['answer_choice_ids'])) or \ (que_rec['required_type'] == 'at least' and select_count < que_rec['req_ans']) or \ @@ -813,12 +813,12 @@ class survey_question_wiz(osv.osv_memory): (que_rec['required_type'] == 'a range' and (select_count < que_rec['minimum_req_ans'] or select_count > que_rec['maximum_req_ans'])): for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg'])) if que_rec['type'] in ['multiple_choice_only_one_ans','single_textbox','comment'] and que_rec['is_require_answer'] and select_count <= 0: for res in resp_id_list: sur_name_read['store_ans'].pop(res) - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg'])) else: resp_id_list = [] @@ -892,7 +892,7 @@ class survey_question_wiz(osv.osv_memory): if re.match("^[a-zA-Z0-9._%-+]+@[a-zA-Z0-9._%-]+.[a-zA-Z]{2,6}$", val) == None: error = True if error: - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['comment_valid_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['comment_valid_err_msg'])) resp_obj.write(cr, uid, update, {'comment':val,'state': 'done'}) sur_name_read['store_ans'][update].update({key:val}) @@ -928,7 +928,7 @@ class survey_question_wiz(osv.osv_memory): if re.match("^[a-zA-Z0-9._%-+]+@[a-zA-Z0-9._%-]+.[a-zA-Z]{2,6}$", val) == None: error = True if error: - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['validation_valid_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' \n" + tools.ustr(que_rec['validation_valid_err_msg'])) if key.split('_')[1] == "single" : resp_obj.write(cr, uid, update, {'single_text':val,'state': 'done'}) else: @@ -946,7 +946,7 @@ class survey_question_wiz(osv.osv_memory): sur_name_read['store_ans'][update].update({key:val}) select_count += 1 except: - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' \n Please enter an integer value " )) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "'\n" + _("Please enter an integer value")) elif val and len(key.split('_')) == 3: resp_obj.write(cr, uid, update, {'state': 'done'}) @@ -974,13 +974,13 @@ class survey_question_wiz(osv.osv_memory): sur_name_read['store_ans'][update].update({key:val}) if comment_field and comment_value: - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['make_comment_field_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['make_comment_field_err_msg'])) if que_rec['type'] == "rating_scale" and que_rec['rating_allow_one_column_require'] and len(selected_value) > len(list(set(selected_value))): - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "\n you cannot select same answer more than one times'")) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "\n" + _("You cannot select same answer more than one time'")) if que_rec['numeric_required_sum'] and numeric_sum > que_rec['numeric_required_sum']: - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['numeric_required_sum_err_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['numeric_required_sum_err_msg'])) if not select_count: resp_obj.write(cr, uid, update, {'state': 'skip'}) @@ -992,17 +992,17 @@ class survey_question_wiz(osv.osv_memory): (que_rec['required_type'] == 'at most' and len(list(set(matrix_list))) > que_rec['req_ans']) or \ (que_rec['required_type'] == 'exactly' and len(list(set(matrix_list))) != que_rec['req_ans']) or \ (que_rec['required_type'] == 'a range' and (len(list(set(matrix_list))) < que_rec['minimum_req_ans'] or len(list(set(matrix_list))) > que_rec['maximum_req_ans'])): - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg'])) elif (que_rec['required_type'] == 'all' and select_count < len(que_rec['answer_choice_ids'])) or \ (que_rec['required_type'] == 'at least' and select_count < que_rec['req_ans']) or \ (que_rec['required_type'] == 'at most' and select_count > que_rec['req_ans']) or \ (que_rec['required_type'] == 'exactly' and select_count != que_rec['req_ans']) or \ (que_rec['required_type'] == 'a range' and (select_count < que_rec['minimum_req_ans'] or select_count > que_rec['maximum_req_ans'])): - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg'])) if que_rec['type'] in ['multiple_choice_only_one_ans','single_textbox','comment'] and que_rec['is_require_answer'] and select_count <= 0: - raise osv.except_osv(_('Warning !'), _("'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg']))) + raise osv.except_osv(_('Warning !'), "'" + que_rec['question'] + "' " + tools.ustr(que_rec['req_error_msg'])) return True From 8e9e0586e751ee521d1285aa468afab4ce8ee4b6 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 18 Nov 2010 17:25:12 +0100 Subject: [PATCH 6/6] [I18N] all: Updated translations templates to latest terms, after cleanup bzr revid: odo@openerp.com-20101118162512-t98lj2h5r52k0e59 --- addons/account/i18n/account.pot | 120 ++- .../i18n/account_accountant.pot | 16 +- .../i18n/account_analytic_analysis.pot | 21 +- .../i18n/account_analytic_default.pot | 21 +- .../i18n/account_analytic_plans.pot | 25 +- .../i18n/account_anglo_saxon.pot | 27 +- addons/account_budget/i18n/account_budget.pot | 54 +- addons/account_cancel/i18n/account_cancel.pot | 16 +- addons/account_chart/i18n/account_chart.pot | 16 +- addons/account_coda/i18n/account_coda.pot | 43 +- .../i18n/account_followup.pot | 129 ++- .../i18n/account_invoice_layout.pot | 21 +- .../account_payment/i18n/account_payment.pot | 80 +- .../i18n/account_sequence.pot | 67 ++ .../account_voucher/i18n/account_voucher.pot | 84 +- addons/analytic/i18n/analytic.pot | 31 +- .../i18n/analytic_journal_billing_rate.pot | 21 +- .../i18n/analytic_user_function.pot | 29 +- addons/association/i18n/association.pot | 119 +-- addons/auction/i18n/auction.pot | 44 +- addons/audittrail/i18n/audittrail.pot | 118 +-- .../i18n/base_action_rule.pot | 26 +- addons/base_calendar/i18n/base_calendar.pot | 64 +- addons/base_contact/i18n/base_contact.pot | 21 +- addons/base_iban/i18n/base_iban.pot | 21 +- .../i18n/base_module_doc_rst.pot | 21 +- .../i18n/base_module_quality.pot | 172 ++-- .../i18n/base_module_record.pot | 16 +- .../i18n/base_report_creator.pot | 21 +- .../i18n/base_report_designer.pot | 41 +- addons/base_setup/i18n/base_setup.pot | 40 +- addons/base_synchro/i18n/base_synchro.pot | 28 +- addons/base_vat/i18n/base_vat.pot | 25 +- addons/board/i18n/board.pot | 196 ++++- addons/caldav/i18n/caldav.pot | 774 +++++++++--------- .../i18n/claim_from_delivery.pot | 30 +- addons/crm/i18n/crm.pot | 248 ++++-- addons/crm_caldav/i18n/crm_caldav.pot | 25 +- addons/crm_claim/i18n/crm_claim.pot | 62 +- .../crm_fundraising/i18n/crm_fundraising.pot | 45 +- addons/crm_helpdesk/i18n/crm_helpdesk.pot | 41 +- .../i18n/crm_partner_assign.pot | 21 +- addons/crm_profiling/i18n/crm_profiling.pot | 26 +- .../i18n/decimal_precision.pot | 25 +- addons/delivery/i18n/delivery.pot | 35 +- addons/document/i18n/document.pot | 71 +- addons/document_ftp/i18n/document_ftp.pot | 119 +-- addons/document_ics/i18n/document_ics.pot | 26 +- .../document_webdav/i18n/document_webdav.pot | 122 +-- addons/email_template/i18n/email_template.pot | 159 ++-- addons/event/i18n/event.pot | 72 +- addons/event_project/i18n/event_project.pot | 34 +- addons/fetchmail/i18n/fetchmail.pot | 132 ++- addons/google_map/i18n/google_map.pot | 16 +- addons/hr/i18n/hr.pot | 36 +- addons/hr_attendance/i18n/hr_attendance.pot | 69 +- addons/hr_contract/i18n/hr_contract.pot | 21 +- addons/hr_evaluation/i18n/hr_evaluation.pot | 98 ++- addons/hr_expense/i18n/hr_expense.pot | 41 +- addons/hr_holidays/i18n/hr_holidays.pot | 110 ++- addons/hr_payroll/i18n/hr_payroll.pot | 230 ++---- .../i18n/hr_payroll_account.pot | 220 +---- addons/hr_recruitment/i18n/hr_recruitment.pot | 26 +- addons/hr_timesheet/i18n/hr_timesheet.pot | 75 +- .../i18n/hr_timesheet_invoice.pot | 78 +- .../i18n/hr_timesheet_sheet.pot | 4 +- addons/html_view/i18n/html_view.pot | 21 +- addons/idea/i18n/idea.pot | 39 +- addons/knowledge/i18n/knowledge.pot | 21 +- addons/l10n_be/i18n/l10n_be.pot | 21 +- addons/l10n_de/i18n/l10n_de.pot | 89 +- addons/l10n_es/i18n/l10n_es.pot | 148 +++- addons/l10n_fr/i18n/l10n_fr.pot | 35 +- addons/l10n_gr/i18n/l10n_gr.pot | 23 +- addons/l10n_gt/i18n/l10n_gt.pot | 38 +- addons/l10n_in/i18n/l10n_in.pot | 26 +- addons/l10n_lu/i18n/l10n_lu.pot | 27 +- addons/l10n_ma/i18n/l10n_ma.pot | 204 +++-- addons/l10n_uk/i18n/l10n_uk.pot | 20 +- addons/lunch/i18n/lunch.pot | 38 +- addons/mail_gateway/i18n/mail_gateway.pot | 49 +- addons/marketing/i18n/marketing.pot | 30 +- .../i18n/marketing_campaign.pot | 36 +- .../i18n/marketing_campaign_crm_demo.pot | 41 +- addons/membership/i18n/membership.pot | 138 +++- addons/mrp/i18n/mrp.pot | 187 +++-- addons/mrp_jit/i18n/mrp_jit.pot | 16 +- addons/mrp_operations/i18n/mrp_operations.pot | 54 +- addons/mrp_repair/i18n/mrp_repair.pot | 26 +- addons/mrp_subproduct/i18n/mrp_subproduct.pot | 21 +- addons/multi_company/i18n/multi_company.pot | 210 ++++- addons/outlook/i18n/outlook.pot | 21 +- addons/pad/i18n/pad.pot | 20 +- addons/point_of_sale/i18n/point_of_sale.pot | 326 ++++---- addons/process/i18n/process.pot | 21 +- addons/procurement/i18n/procurement.pot | 52 +- addons/product/i18n/product.pot | 122 ++- addons/product_expiry/i18n/product_expiry.pot | 26 +- .../i18n/product_manufacturer.pot | 21 +- addons/product_margin/i18n/product_margin.pot | 25 +- .../i18n/product_visible_discount.pot | 27 +- addons/profile_tools/i18n/profile_tools.pot | 139 ++-- addons/project/i18n/project.pot | 97 ++- addons/project_caldav/i18n/project_caldav.pot | 32 +- addons/project_gtd/i18n/project_gtd.pot | 62 +- addons/project_issue/i18n/project_issue.pot | 72 +- .../i18n/project_issue_sheet.pot | 21 +- .../i18n/project_long_term.pot | 39 +- .../i18n/project_mailgate.pot | 21 +- .../i18n/project_messages.pot | 90 +- addons/project_mrp/i18n/project_mrp.pot | 25 +- .../i18n/project_planning.pot | 26 +- .../i18n/project_retro_planning.pot | 16 +- addons/project_scrum/i18n/project_scrum.pot | 60 +- .../i18n/project_timesheet.pot | 79 +- addons/purchase/i18n/purchase.pot | 38 +- .../i18n/purchase_analytic_plans.pot | 21 +- .../i18n/purchase_requisition.pot | 34 +- .../report_designer/i18n/report_designer.pot | 21 +- .../i18n/report_intrastat.pot | 25 +- addons/report_webkit/i18n/report_webkit.pot | 21 +- .../i18n/report_webkit_sample.pot | 20 +- addons/resource/i18n/resource.pot | 53 +- addons/sale/i18n/sale.pot | 242 +++--- .../i18n/sale_analytic_plans.pot | 39 +- addons/sale_crm/i18n/sale_crm.pot | 31 +- addons/sale_journal/i18n/sale_journal.pot | 128 +-- addons/sale_layout/i18n/sale_layout.pot | 42 +- addons/sale_margin/i18n/sale_margin.pot | 30 +- addons/sale_mrp/i18n/sale_mrp.pot | 21 +- .../i18n/sale_order_dates.pot | 21 +- addons/share/i18n/share.pot | 139 ++-- addons/stock/i18n/stock.pot | 438 +++++++--- .../i18n/stock_invoice_directly.pot | 16 +- addons/stock_location/i18n/stock_location.pot | 26 +- .../i18n/stock_no_autopicking.pot | 21 +- addons/stock_planning/i18n/stock_planning.pot | 262 ++++-- addons/subscription/i18n/subscription.pot | 61 +- addons/survey/i18n/survey.pot | 526 ++++-------- addons/thunderbird/i18n/thunderbird.pot | 39 +- addons/users_ldap/i18n/users_ldap.pot | 119 +-- addons/warning/i18n/warning.pot | 21 +- addons/wiki/i18n/wiki.pot | 656 ++++++++------- addons/wiki_faq/i18n/wiki_faq.pot | 16 +- .../i18n/wiki_quality_manual.pot | 16 +- addons/wiki_sale_faq/i18n/wiki_sale_faq.pot | 45 +- 146 files changed, 7206 insertions(+), 3865 deletions(-) create mode 100644 addons/account_sequence/i18n/account_sequence.pot mode change 100755 => 100644 addons/l10n_de/i18n/l10n_de.pot diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot index 5612fc6b806..1384399389e 100644 --- a/addons/account/i18n/account.pot +++ b/addons/account/i18n/account.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-11-15 18:44:39+0000\n" -"PO-Revision-Date: 2010-11-15 18:44:39+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:13+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -620,6 +620,7 @@ msgstr "" #. module: account #: constraint:account.account:0 +#: constraint:account.tax.code:0 msgid "Error ! You can not create recursive accounts." msgstr "" @@ -838,11 +839,6 @@ msgstr "" msgid "Consolidation" msgstr "" -#. module: account -#: model:account.account.type,name:account.account_type_liability -msgid "Liability" -msgstr "" - #. module: account #: view:account.analytic.line:0 #: view:account.entries.report:0 @@ -939,6 +935,11 @@ msgstr "" msgid "Landscape Mode" msgstr "" +#. module: account +#: model:account.account.type,name:account.account_type_liability +msgid "Bilanzkonten - Passiva - Kapitalkonten" +msgstr "" + #. module: account #: view:board.board:0 msgid "Customer Invoices to Approve" @@ -1336,9 +1337,14 @@ msgid "Anglo-Saxon Accounting" msgstr "" #. module: account -#: view:account.automatic.reconcile:0 -#: view:account.move.line.reconcile.writeoff:0 -msgid "Write-Off Move" +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.bank.statement,state:0 +#: selection:account.entries.report,type:0 +#: view:account.fiscalyear:0 +#: selection:account.fiscalyear,state:0 +#: selection:account.period,state:0 +msgid "Closed" msgstr "" #. module: account @@ -1351,6 +1357,11 @@ msgstr "" msgid "Template for Fiscal Position" msgstr "" +#. module: account +#: model:account.tax.code,name:account.account_tax_code_0 +msgid "Tax Code Test" +msgstr "" + #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" @@ -1459,7 +1470,6 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: account -#: field:account.bank.statement,user_id:0 #: view:account.invoice:0 msgid "Responsible" msgstr "" @@ -1847,6 +1857,11 @@ msgstr "" msgid "Validations" msgstr "" +#. module: account +#: model:account.journal,name:account.close_journal +msgid "End of Year" +msgstr "" + #. module: account #: view:account.entries.report:0 msgid "This F.Year" @@ -2181,6 +2196,7 @@ msgid "The fiscal position will determine taxes and the accounts used for the pa msgstr "" #. module: account +#: model:account.account.type,name:account.account_type_tax #: report:account.invoice:0 #: field:account.invoice,amount_tax:0 #: field:account.move.line,account_tax_id:0 @@ -2471,6 +2487,11 @@ msgstr "" msgid "Base Code Amount" msgstr "" +#. module: account +#: model:account.account.type,name:account.account_type_view +msgid "Ansicht" +msgstr "" + #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" @@ -3178,6 +3199,11 @@ msgstr "" msgid "Account Payable" msgstr "" +#. module: account +#: constraint:account.move:0 +msgid "You cannot create entries on different periods/journals in the same move" +msgstr "" + #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 msgid "Payment Order" @@ -3311,6 +3337,11 @@ msgstr "" msgid "Balance :" msgstr "" +#. module: account +#: help:account.fiscalyear.close,journal_id:0 +msgid "The best practice here is to use a journal dedicated to contain the opening entries of all fiscal years. Note that you should define it with default debit/credit accounts, of type 'situation' and with a centralized counterpart." +msgstr "" + #. module: account #: view:account.installer:0 #: view:account.installer.modules:0 @@ -4352,6 +4383,12 @@ msgstr "" msgid "Amount" msgstr "" +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:0 +#, python-format +msgid "End of Fiscal Year Entry" +msgstr "" + #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 #: model:process.transition,name:account.process_transition_paymentorderreconcilation0 @@ -4790,11 +4827,6 @@ msgstr "" msgid "account.analytic.line.extended" msgstr "" -#. module: account -#: model:account.account.type,name:account.account_type_income -msgid "Income" -msgstr "" - #. module: account #: selection:account.bank.statement.line,type:0 #: view:account.invoice:0 @@ -4803,6 +4835,11 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: account +#: model:account.account.type,name:account.account_type_asset +msgid "Bilanzkonten - Aktiva - Vermögenskonten" +msgstr "" + #. module: account #: selection:account.entries.report,month:0 #: selection:account.invoice.report,month:0 @@ -5999,6 +6036,11 @@ msgstr "" msgid "Parent Account Template" msgstr "" +#. module: account +#: model:account.account.type,name:account.account_type_income +msgid "Erfolgskonten - Erlöse" +msgstr "" + #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement.line,statement_id:0 @@ -6268,6 +6310,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 +#: field:account.bank.statement,user_id:0 #: view:account.journal:0 #: field:account.journal,user_id:0 #: view:analytic.entries.report:0 @@ -6456,11 +6499,6 @@ msgstr "" msgid " number of days: 14" msgstr "" -#. module: account -#: model:account.account.type,name:account.account_type_asset -msgid "Asset" -msgstr "" - #. module: account #: field:account.partner.reconcile.process,progress:0 msgid "Progress" @@ -6550,6 +6588,11 @@ msgstr "" msgid "Amount (in words) :" msgstr "" +#. module: account +#: model:account.account.type,name:account.account_type_other +msgid "Jahresabschlusskonten u. Statistik" +msgstr "" + #. module: account #: field:account.bank.statement.line,partner_id:0 #: view:account.entries.report:0 @@ -6782,6 +6825,11 @@ msgstr "" msgid "Accounting and Financial Management" msgstr "" +#. module: account +#: model:process.node,name:account.process_node_manually0 +msgid "Manually" +msgstr "" + #. module: account #: field:account.automatic.reconcile,period_id:0 #: view:account.bank.statement:0 @@ -7054,6 +7102,11 @@ msgstr "" msgid "Suppliers" msgstr "" +#. module: account +#: constraint:account.move:0 +msgid "You cannot create more than one move per period on centralized journal" +msgstr "" + #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" @@ -7162,11 +7215,6 @@ msgstr "" msgid "Unique number of the invoice, computed automatically when the invoice is created." msgstr "" -#. module: account -#: model:account.account.type,name:account.account_type_expense -msgid "Expense" -msgstr "" - #. module: account #: code:addons/account/account_move_line.py:0 #, python-format @@ -8316,11 +8364,6 @@ msgstr "" msgid "If the active field is set to true, it will allow you to hide the account without removing it." msgstr "" -#. module: account -#: help:account.fiscalyear.close,journal_id:0 -msgid "The best practice here is to use a journal dedicated to contain the opening entries of all fiscal years. Note that you should define it with default debit/credit accounts and with a centralized counterpart." -msgstr "" - #. module: account #: field:account.account,company_id:0 #: field:account.analytic.journal,company_id:0 @@ -8442,14 +8485,9 @@ msgid "On Account of :" msgstr "" #. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -#: selection:account.bank.statement,state:0 -#: selection:account.entries.report,type:0 -#: view:account.fiscalyear:0 -#: selection:account.fiscalyear,state:0 -#: selection:account.period,state:0 -msgid "Closed" +#: view:account.automatic.reconcile:0 +#: view:account.move.line.reconcile.writeoff:0 +msgid "Write-Off Move" msgstr "" #. module: account @@ -8565,8 +8603,8 @@ msgid "Account Tax Code Template" msgstr "" #. module: account -#: model:process.node,name:account.process_node_manually0 -msgid "Manually" +#: model:account.account.type,name:account.account_type_expense +msgid "Erfolgskonten - Aufwendungen" msgstr "" #. module: account diff --git a/addons/account_accountant/i18n/account_accountant.pot b/addons/account_accountant/i18n/account_accountant.pot index d86f28c7012..3f63150105d 100644 --- a/addons/account_accountant/i18n/account_accountant.pot +++ b/addons/account_accountant/i18n/account_accountant.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:01+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:01+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:14+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_accountant +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: account_accountant +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_accountant #: model:ir.module.module,shortdesc:account_accountant.module_meta_information msgid "Accountant" diff --git a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot index 0365ca2ee9d..ceb46623698 100644 --- a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot +++ b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:02+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:02+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:14+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -56,6 +56,11 @@ msgstr "" msgid "Last Invoice Date" msgstr "" +#. module: account_analytic_analysis +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_analytic_analysis #: help:account.analytic.account,last_invoice_date:0 msgid "Date of the last invoice created for this analytic account." @@ -81,6 +86,11 @@ msgstr "" msgid "Real Margin Rate (%)" msgstr "" +#. module: account_analytic_analysis +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_invoiced_date:0 msgid "If invoice from the costs, this is the date of the latest work or cost that have been invoiced." @@ -264,6 +274,11 @@ msgstr "" msgid "Hours Tot" msgstr "" +#. module: account_analytic_analysis +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: account_analytic_analysis #: help:account.analytic.account,total_cost:0 msgid "Total of costs for this account. It includes real costs (from invoices) and indirect costs, like time spent on timesheets." diff --git a/addons/account_analytic_default/i18n/account_analytic_default.pot b/addons/account_analytic_default/i18n/account_analytic_default.pot index 16333cf5500..356cbe0d29c 100644 --- a/addons/account_analytic_default/i18n/account_analytic_default.pot +++ b/addons/account_analytic_default/i18n/account_analytic_default.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:02+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:02+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:15+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -87,6 +87,11 @@ msgstr "" msgid "Sale Order Line" msgstr "" +#. module: account_analytic_default +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytical Account" @@ -152,6 +157,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: account_analytic_default +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line msgid "Invoice Line" @@ -184,3 +194,8 @@ msgstr "" msgid "Gives the sequence order when displaying a list of analytic distribution" msgstr "" +#. module: account_analytic_default +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/account_analytic_plans/i18n/account_analytic_plans.pot b/addons/account_analytic_plans/i18n/account_analytic_plans.pot index 03c81f73aec..e0f889cc0c9 100644 --- a/addons/account_analytic_plans/i18n/account_analytic_plans.pot +++ b/addons/account_analytic_plans/i18n/account_analytic_plans.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:02+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:02+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:16+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -150,8 +150,8 @@ msgid "Dont show empty lines" msgstr "" #. module: account_analytic_plans -#: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model -msgid "analytic.plan.create.model.action" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: account_analytic_plans @@ -317,6 +317,11 @@ msgstr "" msgid "Bank Statement Line" msgstr "" +#. module: account_analytic_plans +#: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model +msgid "analytic.plan.create.model.action" +msgstr "" + #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Amount" @@ -408,6 +413,11 @@ msgstr "" msgid "No Analytic Journal !" msgstr "" +#. module: account_analytic_plans +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_analytic_plans #: field:account.analytic.plan.line,sequence:0 msgid "Sequence" @@ -481,6 +491,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_analytic_plans +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "From Date" diff --git a/addons/account_anglo_saxon/i18n/account_anglo_saxon.pot b/addons/account_anglo_saxon/i18n/account_anglo_saxon.pot index 679073bbbfd..3838d26b827 100644 --- a/addons/account_anglo_saxon/i18n/account_anglo_saxon.pot +++ b/addons/account_anglo_saxon/i18n/account_anglo_saxon.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:03+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:03+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:16+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,17 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_anglo_saxon +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: account_anglo_saxon +#: help:product.category,property_account_creditor_price_difference_categ:0 +#: help:product.template,property_account_creditor_price_difference:0 +msgid "This account will be used to value price difference between purchase price and cost price." +msgstr "" + #. module: account_anglo_saxon #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -30,6 +41,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_anglo_saxon +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice_line msgid "Invoice Line" @@ -78,8 +94,7 @@ msgid "This module will support the Anglo-Saxons accounting methodology by\n" msgstr "" #. module: account_anglo_saxon -#: help:product.category,property_account_creditor_price_difference_categ:0 -#: help:product.template,property_account_creditor_price_difference:0 -msgid "This account will be used to value price difference between purchase price and cost price." +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/account_budget/i18n/account_budget.pot b/addons/account_budget/i18n/account_budget.pot index 31fb60de319..7b94c74d4d5 100644 --- a/addons/account_budget/i18n/account_budget.pot +++ b/addons/account_budget/i18n/account_budget.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:03+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:03+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:17+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -37,9 +37,8 @@ msgid "Invalid model name in the action definition." msgstr "" #. module: account_budget -#: report:account.budget:0 -#: report:crossovered.budget.report:0 -msgid "Printed at:" +#: model:ir.actions.act_window,help:account_budget.act_crossovered_budget_view +msgid "A budget is a forecast of your company's income and expenses expected for a period in the future. With a budget, a company is able to carefully look at how much money they are taking in during a given period, and figure out the best way to divide it among various categories. By keeping track of where your money goes, you may be less likely to overspend, and more likely to meet your financial goals. Forecast a budget by detailing the expected revenue per analytic account and monitor its evolution based on the actuals realised during that period." msgstr "" #. module: account_budget @@ -52,6 +51,11 @@ msgstr "" msgid "Validate User" msgstr "" +#. module: account_budget +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report msgid "Print Summary" @@ -78,7 +82,6 @@ msgstr "" #. module: account_budget #: report:account.budget:0 -#: report:crossovered.budget.report:0 msgid "at" msgstr "" @@ -89,7 +92,6 @@ msgstr "" #. module: account_budget #: report:account.budget:0 -#: report:crossovered.budget.report:0 msgid "Currency:" msgstr "" @@ -134,6 +136,16 @@ msgstr "" msgid "Description" msgstr "" +#. module: account_budget +#: report:crossovered.budget.report:0 +msgid "Currency" +msgstr "" + +#. module: account_budget +#: report:crossovered.budget.report:0 +msgid "Total :" +msgstr "" + #. module: account_budget #: field:account.budget.post,company_id:0 #: field:crossovered.budget,company_id:0 @@ -141,6 +153,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: account_budget +#: report:crossovered.budget.report:0 +msgid "to" +msgstr "" + #. module: account_budget #: view:crossovered.budget:0 msgid "Reset to Draft" @@ -229,6 +246,11 @@ msgstr "" msgid "Budget" msgstr "" +#. module: account_budget +#: report:account.budget:0 +msgid "Printed at:" +msgstr "" + #. module: account_budget #: code:addons/account_budget/account_budget.py:0 #, python-format @@ -326,6 +348,11 @@ msgstr "" msgid "Select Dates Period" msgstr "" +#. module: account_budget +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_budget #: view:account.budget.analytic:0 #: view:account.budget.crossvered.report:0 @@ -364,7 +391,6 @@ msgstr "" #. module: account_budget #: report:account.budget:0 -#: report:crossovered.budget.report:0 msgid "Budget :" msgstr "" @@ -394,6 +420,11 @@ msgstr "" msgid "Budget Lines" msgstr "" +#. module: account_budget +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: account_budget #: view:account.budget.analytic:0 #: view:account.budget.crossvered.report:0 @@ -420,3 +451,8 @@ msgstr "" msgid "Analysis from" msgstr "" +#. module: account_budget +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/account_cancel/i18n/account_cancel.pot b/addons/account_cancel/i18n/account_cancel.pot index c193115debc..855205c506b 100644 --- a/addons/account_cancel/i18n/account_cancel.pot +++ b/addons/account_cancel/i18n/account_cancel.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:03+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:03+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:17+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_cancel +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: account_cancel +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_cancel #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" diff --git a/addons/account_chart/i18n/account_chart.pot b/addons/account_chart/i18n/account_chart.pot index 458cfac884c..443653496cb 100644 --- a/addons/account_chart/i18n/account_chart.pot +++ b/addons/account_chart/i18n/account_chart.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:03+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:03+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:17+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_chart +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: account_chart +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information msgid "Remove minimal account chart" diff --git a/addons/account_coda/i18n/account_coda.pot b/addons/account_coda/i18n/account_coda.pot index 30f5d902ece..2ed5ee25be0 100644 --- a/addons/account_coda/i18n/account_coda.pot +++ b/addons/account_coda/i18n/account_coda.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:04+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:04+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:18+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -82,6 +82,17 @@ msgstr "" msgid "Log" msgstr "" +#. module: account_coda +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: account_coda +#: code:addons/account_coda/account_coda.py:0 +#, python-format +msgid "Coda file not found for bank statement !!" +msgstr "" + #. module: account_coda #: help:account.coda.import,awaiting_account:0 msgid "Set here the default account that will be used, if the partner is found but does not have the bank account, or if he is domiciled" @@ -136,8 +147,8 @@ msgid "Default Payable Account" msgstr "" #. module: account_coda -#: help:account.coda,name:0 -msgid "Store the detail of bank statements" +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" msgstr "" #. module: account_coda @@ -150,6 +161,18 @@ msgstr "" msgid "Open Statements" msgstr "" +#. module: account_coda +#: help:account.coda,name:0 +msgid "Store the detail of bank statements" +msgstr "" + +#. module: account_coda +#: code:addons/account_coda/wizard/account_coda_import.py:0 +#, python-format +msgid "The bank account %s is not defined for the partner %s.\n" +"" +msgstr "" + #. module: account_coda #: model:ir.ui.menu,name:account_coda.menu_account_coda_import msgid "Import Coda Statements" @@ -176,6 +199,11 @@ msgstr "" msgid "Coda" msgstr "" +#. module: account_coda +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_coda #: view:account.coda.import:0 msgid "Results :" @@ -249,9 +277,8 @@ msgid "Coda Import" msgstr "" #. module: account_coda -#: code:addons/account_coda/wizard/account_coda_import.py:0 -#, python-format -msgid "The bank account %s is not defined for the partner %s.\n" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: account_coda diff --git a/addons/account_followup/i18n/account_followup.pot b/addons/account_followup/i18n/account_followup.pot index 00c954dd4ed..f16ed39ad03 100644 --- a/addons/account_followup/i18n/account_followup.pot +++ b/addons/account_followup/i18n/account_followup.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:04+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:04+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:19+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,6 +26,28 @@ msgstr "" msgid "Search Followup" msgstr "" +#. module: account_followup +#: model:ir.module.module,description:account_followup.module_meta_information +msgid "\n" +" Modules to automate letters for unpaid invoices, with multi-level recalls.\n" +"\n" +" You can define your multiple levels of recall through the menu:\n" +" Accounting/Configuration/Miscellaneous/Follow-Ups\n" +"\n" +" Once it is defined, you can automatically print recalls every day\n" +" through simply clicking on the menu:\n" +" Accounting/Periodical Processing/Billing/Send followups\n" +"\n" +" It will generate a PDF with all the letters according to the the\n" +" different levels of recall defined. You can define different policies\n" +" for different companies. You can also send mail to the customer.\n" +"\n" +" Note that if you want to change the followup level for a given partner/account entry, you can do from in the menu:\n" +" Accounting/Reporting/Generic Reporting/Partner Accounts/Follow-ups Sent\n" +"\n" +"" +msgstr "" + #. module: account_followup #: view:account_followup.stat:0 msgid "Group By..." @@ -47,6 +69,7 @@ msgstr "" #: field:account_followup.followup,company_id:0 #: view:account_followup.stat:0 #: field:account_followup.stat,company_id:0 +#: field:account_followup.stat.by.partner,company_id:0 msgid "Company" msgstr "" @@ -60,6 +83,11 @@ msgstr "" msgid "Email Subject" msgstr "" +#. module: account_followup +#: model:ir.actions.act_window,help:account_followup.action_followup_stat +msgid "Follow up on the reminders sent over to your partners for unpaid invoices." +msgstr "" + #. module: account_followup #: view:account.followup.print.all:0 #: view:account_followup.followup.line:0 @@ -71,6 +99,11 @@ msgstr "" msgid "Ok" msgstr "" +#. module: account_followup +#: view:account.followup.print.all:0 +msgid "Select Partners to Remind" +msgstr "" + #. module: account_followup #: field:account.followup.print,date:0 msgid "Follow-up Sending Date" @@ -88,8 +121,8 @@ msgid "Follow-Ups" msgstr "" #. module: account_followup -#: report:account_followup.followup.print:0 -msgid "VAT:" +#: view:account_followup.stat.by.partner:0 +msgid "Balance > 0" msgstr "" #. module: account_followup @@ -108,7 +141,14 @@ msgid "Follow-up" msgstr "" #. module: account_followup -#: field:account_followup.stat,name:0 +#: report:account_followup.followup.print:0 +msgid "VAT:" +msgstr "" + +#. module: account_followup +#: view:account_followup.stat:0 +#: field:account_followup.stat,partner_id:0 +#: field:account_followup.stat.by.partner,partner_id:0 msgid "Partner" msgstr "" @@ -122,6 +162,12 @@ msgstr "" msgid "Partners" msgstr "" +#. module: account_followup +#: code:addons/account_followup/wizard/account_followup_print.py:0 +#, python-format +msgid "Invoices Reminder" +msgstr "" + #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow Up" @@ -137,6 +183,11 @@ msgstr "" msgid "Not Litigation" msgstr "" +#. module: account_followup +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_followup #: view:account.followup.print.all:0 msgid "%(user_signature)s: User name" @@ -148,8 +199,8 @@ msgid "Debit" msgstr "" #. module: account_followup -#: field:account_followup.stat,account_type:0 -msgid "Account Type" +#: view:account.followup.print:0 +msgid "This feature allows you to send reminders to partners with pending invoices. You can send them the default message for unpaid invoices or manually enter a message should you need to remind them of a specific information." msgstr "" #. module: account_followup @@ -162,6 +213,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of follow-up lines." msgstr "" +#. module: account_followup +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: account_followup #: view:account.followup.print.all:0 #: field:account.followup.print.all,email_body:0 @@ -175,6 +231,7 @@ msgstr "" #. module: account_followup #: field:account_followup.stat,date_followup:0 +#: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest followup" msgstr "" @@ -206,11 +263,6 @@ msgstr "" msgid "Send Email in Partner Language" msgstr "" -#. module: account_followup -#: view:account.followup.print.all:0 -msgid "Select partners to remind" -msgstr "" - #. module: account_followup #: view:account.followup.print.all:0 msgid "Partner Selection" @@ -230,6 +282,11 @@ msgstr "" msgid "Send followups" msgstr "" +#. module: account_followup +#: view:account_followup.stat.by.partner:0 +msgid "Partner to Remind" +msgstr "" + #. module: account_followup #: field:account_followup.followup.line,followup_id:0 #: field:account_followup.stat,followup_id:0 @@ -249,12 +306,6 @@ msgid "\n" "" msgstr "" -#. module: account_followup -#: code:addons/account_followup/wizard/account_followup_print.py:0 -#, python-format -msgid "All E-mails have been successfully sent to Partners:.\n\n" -msgstr "" - #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 msgid "\n" @@ -282,6 +333,11 @@ msgstr "" msgid "Currency" msgstr "" +#. module: account_followup +#: model:ir.model,name:account_followup.model_account_followup_stat_by_partner +msgid "Followup Statistics by Partner" +msgstr "" + #. module: account_followup #: model:ir.module.module,shortdesc:account_followup.module_meta_information msgid "Accounting follow-ups management" @@ -368,6 +424,14 @@ msgstr "" msgid "Send email confirmation" msgstr "" +#. module: account_followup +#: code:addons/account_followup/wizard/account_followup_print.py:0 +#, python-format +msgid "All E-mails have been successfully sent to Partners:.\n" +"\n" +"" +msgstr "" + #. module: account_followup #: view:account.followup.print.all:0 msgid "%(company_name)s: User's Company name" @@ -411,6 +475,7 @@ msgstr "" #. module: account_followup #: view:account_followup.stat:0 #: field:account_followup.stat,balance:0 +#: field:account_followup.stat.by.partner,balance:0 msgid "Balance" msgstr "" @@ -427,6 +492,7 @@ msgstr "" #. module: account_followup #: field:account_followup.stat,date_move_last:0 +#: field:account_followup.stat.by.partner,date_move_last:0 msgid "Last move" msgstr "" @@ -440,12 +506,6 @@ msgstr "" msgid "Period" msgstr "" -#. module: account_followup -#: code:addons/account_followup/wizard/account_followup_print.py:0 -#, python-format -msgid "E-Mail not sent to following Partners, Email not available !\n\n" -msgstr "" - #. module: account_followup #: view:account.followup.print:0 #: view:account.followup.print.all:0 @@ -458,9 +518,8 @@ msgid "Follow-Up Lines" msgstr "" #. module: account_followup -#: code:addons/account_followup/wizard/account_followup_print.py:0 -#, python-format -msgid "\n\nE-Mail sent to following Partners successfully. !\n\n" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: account_followup @@ -468,6 +527,11 @@ msgstr "" msgid "Litigation" msgstr "" +#. module: account_followup +#: field:account_followup.stat.by.partner,max_followup_id:0 +msgid "Max Follow Up Level" +msgstr "" + #. module: account_followup #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -536,6 +600,7 @@ msgstr "" #. module: account_followup #: field:account_followup.stat,date_move:0 +#: field:account_followup.stat.by.partner,date_move:0 msgid "First move" msgstr "" @@ -549,6 +614,14 @@ msgstr "" msgid "Maturity" msgstr "" +#. module: account_followup +#: code:addons/account_followup/wizard/account_followup_print.py:0 +#, python-format +msgid "E-Mail not sent to following Partners, Email not available !\n" +"\n" +"" +msgstr "" + #. module: account_followup #: view:account.followup.print:0 msgid "Continue" diff --git a/addons/account_invoice_layout/i18n/account_invoice_layout.pot b/addons/account_invoice_layout/i18n/account_invoice_layout.pot index fe13c0f1c9b..f9852ff0f32 100644 --- a/addons/account_invoice_layout/i18n/account_invoice_layout.pot +++ b/addons/account_invoice_layout/i18n/account_invoice_layout.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:04+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:04+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:19+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -190,6 +190,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: account_invoice_layout +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: account_invoice_layout #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -284,6 +289,11 @@ msgstr "" msgid "Supplier Invoice" msgstr "" +#. module: account_invoice_layout +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_invoice_layout #: view:account.invoice.special.msg:0 msgid "Print" @@ -339,6 +349,11 @@ msgstr "" msgid "Message" msgstr "" +#. module: account_invoice_layout +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: account_invoice_layout #: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form msgid "All Notification Messages" diff --git a/addons/account_payment/i18n/account_payment.pot b/addons/account_payment/i18n/account_payment.pot index 61db6694a56..1e40fb90b9a 100644 --- a/addons/account_payment/i18n/account_payment.pot +++ b/addons/account_payment/i18n/account_payment.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:05+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:05+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:20+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" msgid "Partner Currency" msgstr "" +#. module: account_payment +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: account_payment #: view:payment.order:0 msgid "Set to draft" @@ -67,8 +72,8 @@ msgid "The amount which should be paid at the current date\n" msgstr "" #. module: account_payment -#: help:payment.line,date:0 -msgid "If no payment date is specified, the bank will treat this payment line directly" +#: field:payment.mode,company_id:0 +msgid "Company" msgstr "" #. module: account_payment @@ -152,9 +157,11 @@ msgid "Directly" msgstr "" #. module: account_payment +#: model:ir.actions.act_window,name:account_payment.action_payment_line_form +#: model:ir.model,name:account_payment.model_payment_line +#: view:payment.line:0 #: view:payment.order:0 -#: selection:payment.order,state:0 -msgid "Draft" +msgid "Payment Line" msgstr "" #. module: account_payment @@ -168,6 +175,11 @@ msgstr "" msgid "Confirmed" msgstr "" +#. module: account_payment +#: view:payment.order:0 +msgid "Select Invoices to Pay" +msgstr "" + #. module: account_payment #: help:payment.line,ml_date_created:0 msgid "Invoice Effective Date" @@ -188,6 +200,11 @@ msgstr "" msgid "Structured" msgstr "" +#. module: account_payment +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_payment #: view:payment.order:0 #: field:payment.order,state:0 @@ -240,6 +257,11 @@ msgstr "" msgid "Execution date" msgstr "" +#. module: account_payment +#: help:payment.mode,journal:0 +msgid "Bank or Cash Journal for the Payment Mode" +msgstr "" + #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Fixed date" @@ -272,8 +294,8 @@ msgid "Created" msgstr "" #. module: account_payment -#: view:payment.order:0 -msgid "Select Invoices to Pay" +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" msgstr "" #. module: account_payment @@ -327,8 +349,8 @@ msgid "Address of the Main Partner" msgstr "" #. module: account_payment -#: field:payment.mode,company_id:0 -msgid "Company" +#: help:payment.line,date:0 +msgid "If no payment date is specified, the bank will treat this payment line directly" msgstr "" #. module: account_payment @@ -357,11 +379,9 @@ msgid "Payment amount in the partner currency" msgstr "" #. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_line_form -#: model:ir.model,name:account_payment.model_payment_line -#: view:payment.line:0 #: view:payment.order:0 -msgid "Payment Line" +#: selection:payment.order,state:0 +msgid "Draft" msgstr "" #. module: account_payment @@ -391,8 +411,8 @@ msgid "Populate Statement:" msgstr "" #. module: account_payment -#: view:account.move.line:0 -msgid "Total credit" +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" msgstr "" #. module: account_payment @@ -521,6 +541,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: account_payment +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: account_payment #: view:payment.line:0 #: view:payment.order:0 @@ -569,8 +594,9 @@ msgid "Are you sure you want to make payment?" msgstr "" #. module: account_payment -#: help:payment.mode,journal:0 -msgid "Cash Journal for the Payment Mode" +#: view:payment.mode:0 +#: field:payment.mode,journal:0 +msgid "Journal" msgstr "" #. module: account_payment @@ -616,6 +642,11 @@ msgstr "" msgid "Name" msgstr "" +#. module: account_payment +#: view:account.move.line:0 +msgid "Total credit" +msgstr "" + #. module: account_payment #: report:payment.order:0 msgid "Bank Account" @@ -642,6 +673,11 @@ msgstr "" msgid "Total" msgstr "" +#. module: account_payment +#: model:ir.actions.act_window,help:account_payment.action_payment_order_tree +msgid "A payment order is a payment request that your company does in order to pay a supplier invoice or a customer credit note. Here you can register all payment orders that should be done, keep track of all payment orders and mention the invoice reference and the partner the payment should be done for." +msgstr "" + #. module: account_payment #: constraint:ir.rule:0 msgid "Rules are not supported for osv_memory objects !" @@ -669,9 +705,3 @@ msgstr "" msgid "Bank Account for the Payment Mode" msgstr "" -#. module: account_payment -#: view:payment.mode:0 -#: field:payment.mode,journal:0 -msgid "Journal" -msgstr "" - diff --git a/addons/account_sequence/i18n/account_sequence.pot b/addons/account_sequence/i18n/account_sequence.pot new file mode 100644 index 00000000000..3c6132dfaa6 --- /dev/null +++ b/addons/account_sequence/i18n/account_sequence.pot @@ -0,0 +1,67 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * account_sequence +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2010-11-18 16:11:21+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:21+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: account_sequence +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: account_sequence +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_sequence +#: field:account.move,internal_sequence_number:0 +msgid "Internal Sequence Number" +msgstr "" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_sequence +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: account_sequence +#: model:ir.module.module,shortdesc:account_sequence.module_meta_information +msgid "Entries Sequence Numbering" +msgstr "" + +#. module: account_sequence +#: field:account.journal,internal_sequence:0 +msgid "Internal Sequence" +msgstr "" + +#. module: account_sequence +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: account_sequence +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/account_voucher/i18n/account_voucher.pot b/addons/account_voucher/i18n/account_voucher.pot index cace8d79383..dd741b3cb50 100644 --- a/addons/account_voucher/i18n/account_voucher.pot +++ b/addons/account_voucher/i18n/account_voucher.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:22+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:22+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,11 +20,6 @@ msgstr "" msgid "Unreconciliation transactions" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Form view not available for Payment Lines" -msgstr "" - #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" @@ -106,6 +101,11 @@ msgstr "" msgid "Account voucher unreconcile" msgstr "" +#. module: account_voucher +#: model:ir.actions.act_window,help:account_voucher.action_sale_receipt +msgid "When you sell products to a customer, you can give him a sales receipt or an invoice. When the sales receipt is confirmed, it creates journal items automatically and you can record the customer payment related to this sales receipt." +msgstr "" + #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" @@ -174,6 +174,11 @@ msgstr "" msgid "Notes" msgstr "" +#. module: account_voucher +#: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt +msgid "Sales payment allows you to register the payments you receive from your customers. In order to record a payment, you must enter the customer, the payment method (=the journal) and the payment amount. OpenERP will propose to you automatically the reconciliation of this payment with the open invoices or sales receipts." +msgstr "" + #. module: account_voucher #: selection:account.voucher,type:0 msgid "Sale" @@ -282,8 +287,8 @@ msgid "You have to configure account base code and account tax code on the '%s' msgstr "" #. module: account_voucher -#: report:voucher.print:0 -msgid "Account :" +#: selection:account.voucher,pay_now:0 +msgid "Pay Later or Group Funds" msgstr "" #. module: account_voucher @@ -314,6 +319,11 @@ msgstr "" msgid "Period" msgstr "" +#. module: account_voucher +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,state:0 @@ -325,6 +335,11 @@ msgstr "" msgid "Accounting Voucher Entries" msgstr "" +#. module: account_voucher +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open @@ -420,6 +435,11 @@ msgstr "" msgid "Pay Directly" msgstr "" +#. module: account_voucher +#: view:account.voucher:0 +msgid "Voucher Items" +msgstr "" + #. module: account_voucher #: field:account.statement.from.invoice,line_ids:0 #: field:account.statement.from.invoice.lines,line_ids:0 @@ -448,8 +468,8 @@ msgid "Payable and Receivables" msgstr "" #. module: account_voucher -#: selection:account.voucher,pay_now:0 -msgid "Pay Later or Group Funds" +#: report:voucher.print:0 +msgid "Account :" msgstr "" #. module: account_voucher @@ -481,6 +501,11 @@ msgstr "" msgid "PRO-FORMA" msgstr "" +#. module: account_voucher +#: model:ir.actions.act_window,help:account_voucher.action_vendor_payment +msgid "The supplier payment form allows you to track the payment you do to your suppliers. When you select a supplier, the payment method and an amount for the payment, OpenERP will propose to reconcile your payment with the open supplier invoices or bills." +msgstr "" + #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" @@ -522,6 +547,11 @@ msgstr "" msgid "Post" msgstr "" +#. module: account_voucher +#: view:account.voucher:0 +msgid "Extended Filters..." +msgstr "" + #. module: account_voucher #: report:voucher.cash_receipt.drcr:0 #: report:voucher.print:0 @@ -555,11 +585,6 @@ msgstr "" msgid "Credit" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Extended options..." -msgstr "" - #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:0 #, python-format @@ -637,8 +662,8 @@ msgid "Invoice" msgstr "" #. module: account_voucher -#: view:account.voucher:0 -msgid "Voucher Items" +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" msgstr "" #. module: account_voucher @@ -654,6 +679,11 @@ msgstr "" msgid "Pro-forma" msgstr "" +#. module: account_voucher +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,move_ids:0 @@ -708,9 +738,8 @@ msgid "Canceled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:0 -#, python-format -msgid "Please change partner and try again !" +#: view:account.voucher:0 +msgid "Vendor Invoices and Outstanding transactions" msgstr "" #. module: account_voucher @@ -785,12 +814,6 @@ msgstr "" msgid "Rules are not supported for osv_memory objects !" msgstr "" -#. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:0 -#, python-format -msgid "Invalid Error !" -msgstr "" - #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" @@ -801,11 +824,6 @@ msgstr "" msgid "If you unreconciliate transactions, you must also verify all the actions that are linked to those transactions because they will not be disable" msgstr "" -#. module: account_voucher -#: view:account.voucher:0 -msgid "Vendor Invoices and Outstanding transactions" -msgstr "" - #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" diff --git a/addons/analytic/i18n/analytic.pot b/addons/analytic/i18n/analytic.pot index bdf08707192..3d021d41f77 100644 --- a/addons/analytic/i18n/analytic.pot +++ b/addons/analytic/i18n/analytic.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:22+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:22+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -41,6 +41,11 @@ msgid "Module for defining analytic accounting object.\n" " " msgstr "" +#. module: analytic +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: analytic #: field:account.analytic.account,state:0 msgid "State" @@ -81,6 +86,11 @@ msgstr "" msgid "Pending" msgstr "" +#. module: analytic +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line msgid "Analytic Line" @@ -103,6 +113,11 @@ msgstr "" msgid "Company" msgstr "" +#. module: analytic +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: analytic #: field:account.analytic.account,quantity_max:0 msgid "Maximum Quantity" @@ -206,6 +221,11 @@ msgstr "" msgid "View" msgstr "" +#. module: analytic +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Partner" @@ -226,3 +246,8 @@ msgstr "" msgid "Analytic Entries" msgstr "" +#. module: analytic +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot b/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot index 0a3214f5a51..648a754fdb7 100644 --- a/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot +++ b/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:22+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:22+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: analytic_journal_billing_rate +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: analytic_journal_billing_rate #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -41,6 +46,11 @@ msgstr "" msgid "Analytic Account" msgstr "" +#. module: analytic_journal_billing_rate +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: analytic_journal_billing_rate #: model:ir.model,name:analytic_journal_billing_rate.model_analytic_journal_rate_grid msgid "Relation table between journals and billing rates" @@ -71,3 +81,8 @@ msgstr "" msgid "Timesheet Line" msgstr "" +#. module: analytic_journal_billing_rate +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/analytic_user_function/i18n/analytic_user_function.pot b/addons/analytic_user_function/i18n/analytic_user_function.pot index fe37af8289b..44cbc5e46f2 100644 --- a/addons/analytic_user_function/i18n/analytic_user_function.pot +++ b/addons/analytic_user_function/i18n/analytic_user_function.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:23+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: analytic_user_function +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: analytic_user_function #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -48,10 +53,8 @@ msgid "Analytic Account" msgstr "" #. module: analytic_user_function -#: code:addons/analytic_user_function/analytic_user_function.py:0 -#, python-format -msgid "There is no expense account define ' \\n" -" 'for this product: \"%s\" (id:%d)" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: analytic_user_function @@ -65,6 +68,12 @@ msgstr "" msgid "User" msgstr "" +#. module: analytic_user_function +#: code:addons/analytic_user_function/analytic_user_function.py:0 +#, python-format +msgid "There is no expense account define for this product: \"%s\" (id:%d)" +msgstr "" + #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Relation table between users and products on a analytic account" @@ -76,10 +85,8 @@ msgid "Analytic User Function" msgstr "" #. module: analytic_user_function -#: code:addons/analytic_user_function/analytic_user_function.py:0 -#, python-format -msgid "There is no expense account define ' \\n" -" 'for this product: \"%s\" (id:%d)" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: analytic_user_function diff --git a/addons/association/i18n/association.pot b/addons/association/i18n/association.pot index 3cfe6911227..b91042f7554 100644 --- a/addons/association/i18n/association.pot +++ b/addons/association/i18n/association.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:07+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:07+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:23+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,8 +16,43 @@ msgstr "" "Plural-Forms: \n" #. module: association -#: field:profile.association.config.install_modules_wizard,wiki:0 -msgid "Wiki" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: association +#: help:profile.association.config.install_modules_wizard,event_project:0 +msgid "Helps you to manage and organize your events." +msgstr "" + +#. module: association +#: help:profile.association.config.install_modules_wizard,project_gtd:0 +msgid "GTD is a methodology to efficiently organise yourself and your tasks. This module fully integrates GTD principle with OpenERP's project management." +msgstr "" + +#. module: association +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: association +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: association +#: view:profile.association.config.install_modules_wizard:0 +msgid "Resources Management" +msgstr "" + +#. module: association +#: field:profile.association.config.install_modules_wizard,event_project:0 +msgid "Events" +msgstr "" + +#. module: association +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: association @@ -25,21 +60,6 @@ msgstr "" msgid "Event Management" msgstr "" -#. module: association -#: field:profile.association.config.install_modules_wizard,project_gtd:0 -msgid "Getting Things Done" -msgstr "" - -#. module: association -#: model:ir.module.module,description:association.module_meta_information -msgid "This module is to create Profile for Associates" -msgstr "" - -#. module: association -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: association #: field:profile.association.config.install_modules_wizard,progress:0 msgid "Configuration Progress" @@ -50,39 +70,29 @@ msgstr "" msgid "title" msgstr "" -#. module: association -#: help:profile.association.config.install_modules_wizard,event_project:0 -msgid "Helps you to manage and organize your events." -msgstr "" - -#. module: association -#: field:profile.association.config.install_modules_wizard,config_logo:0 -msgid "Image" -msgstr "" - #. module: association #: help:profile.association.config.install_modules_wizard,hr_expense:0 msgid "Tracks and manages employee expenses, and can automatically re-invoice clients if the expenses are project-related." msgstr "" -#. module: association -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: association -#: help:profile.association.config.install_modules_wizard,project_gtd:0 -msgid "GTD is a methodology to efficiently organise yourself and your tasks. This module fully integrates GTD principle with OpenERP's project management." -msgstr "" - #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information msgid "Association profile" msgstr "" #. module: association -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: model:ir.module.module,description:association.module_meta_information +msgid "This module is to create Profile for Associates" +msgstr "" + +#. module: association +#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard +msgid "profile.association.config.install_modules_wizard" +msgstr "" + +#. module: association +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: association @@ -92,12 +102,18 @@ msgstr "" #. module: association #: view:profile.association.config.install_modules_wizard:0 -msgid "Resources Management" +#: field:profile.association.config.install_modules_wizard,project:0 +msgid "Project Management" msgstr "" #. module: association -#: help:profile.association.config.install_modules_wizard,wiki:0 -msgid "Lets you create wiki pages and page groups in order to keep track of business knowledge and share it with and between your employees." +#: field:profile.association.config.install_modules_wizard,wiki:0 +msgid "Wiki" +msgstr "" + +#. module: association +#: field:profile.association.config.install_modules_wizard,project_gtd:0 +msgid "Getting Things Done" msgstr "" #. module: association @@ -106,18 +122,17 @@ msgid "Helps you manage your projects and tasks by tracking them, generating pla msgstr "" #. module: association -#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard -msgid "profile.association.config.install_modules_wizard" +#: field:profile.association.config.install_modules_wizard,config_logo:0 +msgid "Image" msgstr "" #. module: association -#: field:profile.association.config.install_modules_wizard,event_project:0 -msgid "Events" +#: help:profile.association.config.install_modules_wizard,wiki:0 +msgid "Lets you create wiki pages and page groups in order to keep track of business knowledge and share it with and between your employees." msgstr "" #. module: association -#: view:profile.association.config.install_modules_wizard:0 -#: field:profile.association.config.install_modules_wizard,project:0 -msgid "Project Management" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/auction/i18n/auction.pot b/addons/auction/i18n/auction.pot index 8c8e0dc2a96..3ceac2cbde8 100644 --- a/addons/auction/i18n/auction.pot +++ b/addons/auction/i18n/auction.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:08+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:08+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:26+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:26+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -218,6 +218,11 @@ msgstr "" msgid "Total Price" msgstr "" +#. module: auction +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: auction #: constraint:hr.attendance:0 msgid "Error: Sign in (resp. Sign out) must follow Sign out (resp. Sign in)" @@ -381,6 +386,11 @@ msgstr "" msgid "June" msgstr "" +#. module: auction +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: auction #: constraint:hr.employee:0 msgid "Error ! You cannot create recursive Hierarchy of Employees." @@ -426,12 +436,6 @@ msgstr "" msgid "Make Invoice for Buyer" msgstr "" -#. module: auction -#: code:addons/auction/wizard/auction_lots_invoice.py:0 -#, python-format -msgid "Two different buyers for the same invoice !\nPlease correct this problem before invoicing" -msgstr "" - #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.object.encoded,gross_revenue:0 @@ -691,6 +695,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: auction +#: sql_constraint:account.account:0 +msgid "The code of the account must be unique per company !" +msgstr "" + #. module: auction #: help:auction.lots,state:0 msgid " * The 'Draft' state is used when a object is encoding as a new object. \n" @@ -1281,6 +1290,11 @@ msgstr "" msgid "Priority" msgstr "" +#. module: auction +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: auction #: view:board.board:0 msgid "Latest objects" @@ -1564,6 +1578,13 @@ msgstr "" msgid "Auction manager " msgstr "" +#. module: auction +#: code:addons/auction/wizard/auction_lots_invoice.py:0 +#, python-format +msgid "Two different buyers for the same invoice !\n" +"Please correct this problem before invoicing" +msgstr "" + #. module: auction #: view:auction.dates:0 msgid "Invoice" @@ -2127,6 +2148,11 @@ msgstr "" msgid "Object encoded" msgstr "" +#. module: auction +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: auction #: view:auction.bid:0 msgid "Search Auction Bid" diff --git a/addons/audittrail/i18n/audittrail.pot b/addons/audittrail/i18n/audittrail.pot index 9285db4a74f..12bb4b226b6 100644 --- a/addons/audittrail/i18n/audittrail.pot +++ b/addons/audittrail/i18n/audittrail.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:08+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:08+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:26+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:26+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,6 +35,11 @@ msgstr "" msgid "Subscribed" msgstr "" +#. module: audittrail +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_rule msgid "Audittrail Rule" @@ -43,9 +48,15 @@ msgstr "" #. module: audittrail #: view:audittrail.view.log:0 #: model:ir.actions.act_window,name:audittrail.action_audittrail_log_tree +#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_log_tree msgid "Audit Logs" msgstr "" +#. module: audittrail +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: audittrail #: field:audittrail.rule,state:0 msgid "State" @@ -218,15 +229,6 @@ msgstr "" msgid "Log lines" msgstr "" -#. module: audittrail -#: code:addons/audittrail/audittrail.py:0 -#, python-format -msgid "'%s' Model does not exist...\" %(model))\n" -" model = model_pool.browse(cr, uid, model_id)\n" -"\n" -" if method in ('create" -msgstr "" - #. module: audittrail #: field:audittrail.log.line,field_id:0 msgid "Fields" @@ -268,6 +270,11 @@ msgstr "" msgid "WARNING: audittrail is not part of the pool" msgstr "" +#. module: audittrail +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" @@ -278,28 +285,6 @@ msgstr "" msgid "Field Description" msgstr "" -#. module: audittrail -#: code:addons/audittrail/audittrail.py:0 -#, python-format -msgid "'%s' field does not exist in '%s' model\" %(field_name, model.model))\n" -"\n" -" field = field_pool.read(cr, uid, field_id)\n" -" relation_model = field['relation']\n" -" relation_model_pool = relation_model and pool.get(relation_model) or False\n" -"\n" -" if field['ttype'] == 'many2one':\n" -" res = False\n" -" relation_id = False\n" -" if values and type(values) == tuple:\n" -" relation_id = values[0]\n" -" if relation_id and relation_model_pool:\n" -" relation_model_object = relation_model_pool.read(cr, uid, relation_id, [relation_model_pool._rec_name])\n" -" res = relation_model_object[relation_model_pool._rec_name]\n" -" return res\n" -"\n" -" elif field['ttype'] in ('many2many','one2many" -msgstr "" - #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" @@ -320,21 +305,11 @@ msgstr "" msgid "Rule Name" msgstr "" -#. module: audittrail -#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_log_tree -msgid "Logs" -msgstr "" - #. module: audittrail #: field:audittrail.log.line,new_value:0 msgid "New Value" msgstr "" -#. module: audittrail -#: model:ir.model,name:audittrail.model_audittrail_log_line -msgid "Log Line" -msgstr "" - #. module: audittrail #: view:audittrail.log:0 msgid "AuditTrail Logs" @@ -360,6 +335,12 @@ msgstr "" msgid "New Value : " msgstr "" +#. module: audittrail +#: sql_constraint:audittrail.rule:0 +msgid "There is a rule defined on this object\n" +" You can not define other on the same!" +msgstr "" + #. module: audittrail #: field:audittrail.log.line,old_value_text:0 msgid "Old value Text" @@ -376,53 +357,8 @@ msgid "View Log" msgstr "" #. module: audittrail -#: code:addons/audittrail/audittrail.py:0 -#, python-format -msgid "'%s' field does not exist in '%s' model\" %(line['name'], model.model))\n" -"\n" -" field = field_pool.read(cr, uid, field_id)\n" -" old_value = 'old_value' in line and line['old_value'] or ''\n" -" new_value = 'new_value' in line and line['new_value'] or ''\n" -" old_value_text = 'old_value_text' in line and line['old_value_text'] or ''\n" -" new_value_text = 'new_value_text' in line and line['new_value_text'] or ''\n" -"\n" -" if old_value_text == new_value_text:\n" -" continue\n" -" if field['ttype'] == 'many2one':\n" -" if type(old_value) == tuple:\n" -" old_value = old_value[0]\n" -" if type(new_value) == tuple:\n" -" new_value = new_value[0]\n" -" vals = {\n" -" \"log_id\": log_id,\n" -" \"field_id\": field_id,\n" -" \"old_value\": old_value,\n" -" \"new_value\": new_value,\n" -" \"old_value_text\": old_value_text,\n" -" \"new_value_text\": new_value_text,\n" -" \"field_description\": field['field_description']\n" -" }\n" -" line_id = log_line_pool.create(cr, uid, vals)\n" -" #End Loop\n" -" return True\n" -"\n" -"\n" -" def log_fct(self, db, uid, model, method, fct_src, *args):\n" -" \"\"\"\n" -" Logging function: This function is performs logging oprations according to method\n" -" @param db: the current database\n" -" @param uid: the current user’s ID for security checks,\n" -" @param object: Object who's values are being changed\n" -" @param method: method to log: create, read, write, unlink\n" -" @param fct_src: execute method of Object proxy\n" -"\n" -" @return: Returns result as per method of Object proxy\n" -" \"\"\"\n" -" res2 = args\n" -" pool = pooler.get_pool(db)\n" -" cr = pooler.get_db(db).cursor()\n" -" resource_pool = pool.get(model)\n" -" log_pool = pool.get('audittrail.log" +#: model:ir.model,name:audittrail.model_audittrail_log_line +msgid "Log Line" msgstr "" #. module: audittrail diff --git a/addons/base_action_rule/i18n/base_action_rule.pot b/addons/base_action_rule/i18n/base_action_rule.pot index 26eb39a0a1d..865e0f3793c 100644 --- a/addons/base_action_rule/i18n/base_action_rule.pot +++ b/addons/base_action_rule/i18n/base_action_rule.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:15+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:15+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:42+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -106,6 +106,11 @@ msgstr "" msgid "Check this if you want the rule to send a reminder by email to the partner." msgstr "" +#. module: base_action_rule +#: model:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "Create actions automatically triggered based on a user activity in the system.E.g.: an opportunity created by a specific user can be automatically maintained with a specific sales team, or an opportunity which still has status pending after 14 days triggers an automatic reminder email." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions on Model Partner" @@ -136,6 +141,11 @@ msgstr "" msgid "Special Keywords to Be Used in The Body" msgstr "" +#. module: base_action_rule +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_state_from:0 msgid "State" @@ -146,6 +156,11 @@ msgstr "" msgid "Email-id of the persons whom mail is to be sent" msgstr "" +#. module: base_action_rule +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 #: model:ir.module.module,shortdesc:base_action_rule.module_meta_information @@ -346,6 +361,11 @@ msgstr "" msgid "Email Actions" msgstr "" +#. module: base_action_rule +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Email Information" diff --git a/addons/base_calendar/i18n/base_calendar.pot b/addons/base_calendar/i18n/base_calendar.pot index cc3cdac7741..78fbfa434f9 100644 --- a/addons/base_calendar/i18n/base_calendar.pot +++ b/addons/base_calendar/i18n/base_calendar.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:16+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:16+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:44+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -180,8 +180,8 @@ msgid "Indicats whether the favor of a reply is requested" msgstr "" #. module: base_calendar -#: model:ir.model,name:base_calendar.model_ir_attachment -msgid "ir.attachment" +#: field:calendar.alarm,alarm_id:0 +msgid "Basic Alarm" msgstr "" #. module: base_calendar @@ -214,6 +214,11 @@ msgstr "" msgid "Tue" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: selection:base.calendar.set.exrule,freq:0 #: selection:calendar.event,rrule_type:0 @@ -221,12 +226,6 @@ msgstr "" msgid "Yearly" msgstr "" -#. module: base_calendar -#: selection:calendar.alarm,trigger_related:0 -#: selection:res.alarm,trigger_related:0 -msgid "The event ends" -msgstr "" - #. module: base_calendar #: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 @@ -317,10 +316,9 @@ msgid "Secondly" msgstr "" #. module: base_calendar -#: field:calendar.alarm,event_date:0 -#: field:calendar.attendee,event_date:0 -#: view:calendar.event:0 -msgid "Event Date" +#: selection:calendar.alarm,trigger_related:0 +#: selection:res.alarm,trigger_related:0 +msgid "The event ends" msgstr "" #. module: base_calendar @@ -462,6 +460,11 @@ msgstr "" msgid "Reminder details" msgstr "" +#. module: base_calendar +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" @@ -499,6 +502,11 @@ msgstr "" msgid "Event Detail" msgstr "" +#. module: base_calendar +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Run" @@ -912,8 +920,10 @@ msgid "June" msgstr "" #. module: base_calendar -#: field:calendar.alarm,alarm_id:0 -msgid "Basic Alarm" +#: field:calendar.alarm,event_date:0 +#: field:calendar.attendee,event_date:0 +#: view:calendar.event:0 +msgid "Event Date" msgstr "" #. module: base_calendar @@ -1167,6 +1177,11 @@ msgstr "" msgid "Tuesday" msgstr "" +#. module: base_calendar +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Procedure" @@ -1266,9 +1281,8 @@ msgid "Month" msgstr "" #. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: view:calendar.event:0 -msgid "Invite People" +#: selection:base_calendar.invite.attendee,type:0 +msgid "External Email" msgstr "" #. module: base_calendar @@ -1327,6 +1341,12 @@ msgstr "" msgid "ir.values" msgstr "" +#. module: base_calendar +#: view:base_calendar.invite.attendee:0 +#: view:calendar.event:0 +msgid "Invite People" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Objects" @@ -1543,8 +1563,8 @@ msgid "Duration" msgstr "" #. module: base_calendar -#: selection:base_calendar.invite.attendee,type:0 -msgid "External Email" +#: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view +msgid "Create specific calendar alarms that can be assigned to calendar events or meetings." msgstr "" #. module: base_calendar diff --git a/addons/base_contact/i18n/base_contact.pot b/addons/base_contact/i18n/base_contact.pot index 7bfff9f671d..61200161fd7 100644 --- a/addons/base_contact/i18n/base_contact.pot +++ b/addons/base_contact/i18n/base_contact.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:16+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:16+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:44+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -118,11 +118,21 @@ msgstr "" msgid "Partner Function" msgstr "" +#. module: base_contact +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_contact #: field:res.partner.job,state:0 msgid "State" msgstr "" +#. module: base_contact +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_contact #: model:ir.module.module,shortdesc:base_contact.module_meta_information #: model:process.process,name:base_contact.process_process_basecontactprocess0 @@ -369,6 +379,11 @@ msgstr "" msgid "Photo" msgstr "" +#. module: base_contact +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: base_contact #: field:res.partner.contact,birthdate:0 msgid "Birth Date" diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot index 195aeddbe48..dba056d8215 100644 --- a/addons/base_iban/i18n/base_iban.pot +++ b/addons/base_iban/i18n/base_iban.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:17+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:17+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:45+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:45+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_iban +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_iban #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -66,6 +71,11 @@ msgstr "" msgid "iban" msgstr "" +#. module: base_iban +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_iban #: code:addons/base_iban/base_iban.py:0 #, python-format @@ -82,6 +92,11 @@ msgstr "" msgid "IBAN Account" msgstr "" +#. module: base_iban +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_acc_number_field msgid "acc_number" diff --git a/addons/base_module_doc_rst/i18n/base_module_doc_rst.pot b/addons/base_module_doc_rst/i18n/base_module_doc_rst.pot index a654ca3373d..32e04b28f84 100644 --- a/addons/base_module_doc_rst/i18n/base_module_doc_rst.pot +++ b/addons/base_module_doc_rst/i18n/base_module_doc_rst.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:17+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:17+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:45+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:45+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_module_doc_rst +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_module_doc_rst #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -60,6 +65,11 @@ msgstr "" msgid "Create RST Technical Guide" msgstr "" +#. module: base_module_doc_rst +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_module_doc_rst #: model:ir.actions.wizard,name:base_module_doc_rst.wiz_gen_graph msgid "Generate Relationship Graph" @@ -72,6 +82,11 @@ msgstr "" msgid "Relationship Graph" msgstr "" +#. module: base_module_doc_rst +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: base_module_doc_rst #: wizard_field:tech.guide.rst,init,rst_file:0 msgid "file" diff --git a/addons/base_module_quality/i18n/base_module_quality.pot b/addons/base_module_quality/i18n/base_module_quality.pot index bb85db28146..bea867e429d 100644 --- a/addons/base_module_quality/i18n/base_module_quality.pot +++ b/addons/base_module_quality/i18n/base_module_quality.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:17+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:17+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:46+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -22,12 +22,6 @@ msgstr "" msgid "Suggestion" msgstr "" -#. module: base_module_quality -#: code:addons/base_module_quality/speed_test/speed_test.py:0 -#, python-format -msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is mostly wished.\n" -msgstr "" - #. module: base_module_quality #: code:addons/base_module_quality/base_module_quality.py:0 #, python-format @@ -46,11 +40,17 @@ msgid "Base module quality - To check the quality of other modules" msgstr "" #. module: base_module_quality -#: code:addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/base_module_quality/object_test/object_test.py:0 #, python-format -msgid "\"\"\n" -"This test checks if the module satisfy tiny structure\n" -"\"\"" +msgid "\n" +"Test checks for fields, views, security rules, dependancy level\n" +"" +msgstr "" + +#. module: base_module_quality +#: code:addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base_module_quality @@ -59,12 +59,9 @@ msgid "Skipped" msgstr "" #. module: base_module_quality -#: code:addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/base_module_quality/method_test/method_test.py:0 #, python-format -msgid "\"\"\n" -"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" -"\n" -"\"\"" +msgid "Module has no objects" msgstr "" #. module: base_module_quality @@ -114,14 +111,6 @@ msgstr "" msgid "Result of dependancy in %" msgstr "" -#. module: base_module_quality -#: code:addons/base_module_quality/method_test/method_test.py:0 -#, python-format -msgid "\"\"\n" -"This test checks if the module classes are raising exception when calling basic methods or not.\n" -"\"\"" -msgstr "" - #. module: base_module_quality #: help:module.quality.detail,state:0 msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." @@ -134,11 +123,9 @@ msgid "Result (/10)" msgstr "" #. module: base_module_quality -#: code:addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/base_module_quality/terp_test/terp_test.py:0 #, python-format -msgid "\"\"\n" -"Test checks for fields, views, security rules, dependancy level\n" -"\"\"" +msgid "Terp Test" msgstr "" #. module: base_module_quality @@ -180,12 +167,6 @@ msgstr "" msgid "Warning" msgstr "" -#. module: base_module_quality -#: code:addons/base_module_quality/structure_test/structure_test.py:0 -#, python-format -msgid "Feedback about structure of module" -msgstr "" - #. module: base_module_quality #: code:addons/base_module_quality/unit_test/unit_test.py:0 #, python-format @@ -205,12 +186,8 @@ msgid "Result of pep8_test in %" msgstr "" #. module: base_module_quality -#: code:addons/base_module_quality/unit_test/unit_test.py:0 -#, python-format -msgid "\"\"\n" -"This test checks the Unit Test(PyUnit) Cases of the module. Note that 'unit_test/test.py' is needed in module.\n" -"\n" -"\"\"" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: base_module_quality @@ -241,11 +218,8 @@ msgid "Some tests are more critical than others, so they have a bigger weight in msgstr "" #. module: base_module_quality -#: code:addons/base_module_quality/pep8_test/pep8_test.py:0 -#, python-format -msgid "\"\"\n" -"PEP-8 Test , copyright of py files check, method can not call from loops\n" -"\"\"" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: base_module_quality @@ -282,12 +256,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: base_module_quality -#: code:addons/base_module_quality/speed_test/speed_test.py:0 -#, python-format -msgid "O(n) or worst" -msgstr "" - #. module: base_module_quality #: wizard_field:quality_detail_save,init,module_file:0 msgid "Save report" @@ -299,12 +267,6 @@ msgstr "" msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" msgstr "" -#. module: base_module_quality -#: code:addons/base_module_quality/method_test/method_test.py:0 -#, python-format -msgid "Module has no objects" -msgstr "" - #. module: base_module_quality #: code:addons/base_module_quality/structure_test/structure_test.py:0 #, python-format @@ -346,6 +308,13 @@ msgstr "" msgid "Note" msgstr "" +#. module: base_module_quality +#: code:addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is mostly wished.\n" +"" +msgstr "" + #. module: base_module_quality #: code:addons/base_module_quality/terp_test/terp_test.py:0 #, python-format @@ -364,12 +333,29 @@ msgstr "" msgid "Tests" msgstr "" +#. module: base_module_quality +#: code:addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"" +msgstr "" + #. module: base_module_quality #: code:addons/base_module_quality/pylint_test/pylint_test.py:0 #, python-format msgid "Unable to parse the result. Check the details." msgstr "" +#. module: base_module_quality +#: code:addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\n" +"This test checks if the module satisfy tiny structure\n" +"" +msgstr "" + #. module: base_module_quality #: code:addons/base_module_quality/structure_test/structure_test.py:0 #: code:addons/base_module_quality/workflow_test/workflow_test.py:0 @@ -413,12 +399,6 @@ msgstr "" msgid "Test Is Not Implemented" msgstr "" -#. module: base_module_quality -#: code:addons/base_module_quality/pylint_test/pylint_test.py:0 -#, python-format -msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" -msgstr "" - #. module: base_module_quality #: code:addons/base_module_quality/speed_test/speed_test.py:0 #, python-format @@ -431,9 +411,9 @@ msgid "Report Save" msgstr "" #. module: base_module_quality -#: code:addons/base_module_quality/workflow_test/workflow_test.py:0 +#: code:addons/base_module_quality/structure_test/structure_test.py:0 #, python-format -msgid "Feed back About Workflow of Module" +msgid "Feedback about structure of module" msgstr "" #. module: base_module_quality @@ -442,6 +422,19 @@ msgstr "" msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" msgstr "" +#. module: base_module_quality +#: code:addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n" +" " +msgstr "" + +#. module: base_module_quality +#: code:addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base_module_quality #: code:addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format @@ -458,6 +451,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: base_module_quality +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: base_module_quality #: field:module.quality.check,final_score:0 msgid "Final Score (%)" @@ -491,6 +489,23 @@ msgstr "" msgid "Workflow Test" msgstr "" +#. module: base_module_quality +#: code:addons/base_module_quality/unit_test/unit_test.py:0 +#, python-format +msgid "\n" +"This test checks the Unit Test(PyUnit) Cases of the module. Note that 'unit_test/test.py' is needed in module.\n" +"\n" +"" +msgstr "" + +#. module: base_module_quality +#: code:addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"" +msgstr "" + #. module: base_module_quality #: field:module.quality.detail,detail:0 msgid "Details" @@ -537,6 +552,23 @@ msgstr "" msgid "File name" msgstr "" +#. module: base_module_quality +#: model:ir.module.module,description:base_module_quality.module_meta_information +msgid "\n" +"The aim of this module is to check the quality of other modules.\n" +"\n" +"It defines a wizard on the list of modules in OpenERP, which allows you to\n" +"evaluate them on different criteria such as: the respect of OpenERP coding\n" +"standards, the speed efficiency...\n" +"\n" +"This module also provides generic framework to define your own quality test.\n" +"For further info, coders may take a look into base_module_quality\\README.txt\n" +"\n" +"WARNING: This module can not work as a ZIP file, you must unzip it before\n" +"using it, otherwise it may crash.\n" +" " +msgstr "" + #. module: base_module_quality #: model:ir.model,name:base_module_quality.model_module_quality_check msgid "module.quality.check" @@ -609,12 +641,6 @@ msgstr "" msgid "Structure Test" msgstr "" -#. module: base_module_quality -#: code:addons/base_module_quality/terp_test/terp_test.py:0 -#, python-format -msgid "Terp Test" -msgstr "" - #. module: base_module_quality #: field:module.quality.detail,quality_check_id:0 msgid "Quality" diff --git a/addons/base_module_record/i18n/base_module_record.pot b/addons/base_module_record/i18n/base_module_record.pot index 5848c0b5e00..8dd0ded1268 100644 --- a/addons/base_module_record/i18n/base_module_record.pot +++ b/addons/base_module_record/i18n/base_module_record.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:18+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:18+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:46+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -73,6 +73,11 @@ msgstr "" msgid "Filename" msgstr "" +#. module: base_module_record +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_module_record #: wizard_field:base_module_record.module_record_objects,info,version:0 msgid "Version" @@ -102,6 +107,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: base_module_record +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_module_record #: wizard_view:base_module_record.module_record_data,end:0 #: wizard_view:base_module_record.module_record_objects,end:0 diff --git a/addons/base_report_creator/i18n/base_report_creator.pot b/addons/base_report_creator/i18n/base_report_creator.pot index 0e40761360a..2b43d96924d 100644 --- a/addons/base_report_creator/i18n/base_report_creator.pot +++ b/addons/base_report_creator/i18n/base_report_creator.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:18+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:18+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:47+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -151,6 +151,11 @@ msgstr "" msgid "Report Type" msgstr "" +#. module: base_report_creator +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_report_creator #: view:base_report_creator.report:0 msgid "Add filter" @@ -231,6 +236,11 @@ msgstr "" msgid "AND" msgstr "" +#. module: base_report_creator +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_report_creator #: field:base_report_creator.report.fields,calendar_mode:0 msgid "Calendar Mode" @@ -369,6 +379,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: base_report_creator +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: base_report_creator #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot index 467d0e09a77..7948c932f22 100644 --- a/addons/base_report_designer/i18n/base_report_designer.pot +++ b/addons/base_report_designer/i18n/base_report_designer.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:18+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:18+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:47+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:47+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" +#. module: base_report_designer +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_report_designer #: view:base.report.file.sxw:0 msgid "The .SXW report" @@ -80,6 +85,11 @@ msgstr "" msgid "title" msgstr "" +#. module: base_report_designer +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: base_report_designer #: field:base.report.file.sxw,report_id:0 #: field:base.report.sxw,report_id:0 @@ -92,13 +102,13 @@ msgid "base.report.rml.save" msgstr "" #. module: base_report_designer -#: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard -msgid "Report Designer" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: base_report_designer -#: view:base.report.file.sxw:0 -msgid "This is the template of your requested report.\nSave it as a .SXW file and open it with OpenOffice.\nDon't forget to install the OpenERP SA OpenOffice package to modify it.\nOnce it is modified, re-upload it in OpenERP using this wizard." +#: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard +msgid "Report Designer" msgstr "" #. module: base_report_designer @@ -158,6 +168,14 @@ msgstr "" msgid "Configuration Progress" msgstr "" +#. module: base_report_designer +#: view:base.report.file.sxw:0 +msgid "This is the template of your requested report.\n" +"Save it as a .SXW file and open it with OpenOffice.\n" +"Don't forget to install the OpenERP SA OpenOffice package to modify it.\n" +"Once it is modified, re-upload it in OpenERP using this wizard." +msgstr "" + #. module: base_report_designer #: view:base_report_designer.installer:0 msgid "Skip" @@ -183,6 +201,11 @@ msgstr "" msgid "OpenObject Report Designer Plug-in" msgstr "" +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_ir_actions_report_xml +msgid "ir.actions.report.xml" +msgstr "" + #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_report_designer_installer msgid "OpenERP Report Designer Installation" @@ -196,8 +219,8 @@ msgid "Cancel" msgstr "" #. module: base_report_designer -#: model:ir.model,name:base_report_designer.model_ir_actions_report_xml -msgid "ir.actions.report.xml" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: base_report_designer diff --git a/addons/base_setup/i18n/base_setup.pot b/addons/base_setup/i18n/base_setup.pot index 9551397a038..ff0233dce73 100644 --- a/addons/base_setup/i18n/base_setup.pot +++ b/addons/base_setup/i18n/base_setup.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:19+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:19+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:48+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -45,6 +45,11 @@ msgstr "" msgid "E-mail" msgstr "" +#. module: base_setup +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_setup #: field:base.setup.company,account_no:0 msgid "Bank Account No" @@ -91,8 +96,10 @@ msgid "Helps you handle your accounting needs, if you are not an accountant, we msgstr "" #. module: base_setup -#: view:base.setup.config:0 -msgid "You can start configuring the system or connect directly to the database as an administrator." +#: code:addons/base_setup/__init__.py:0 +#, python-format +msgid "The following users have been installed : \n" +"" msgstr "" #. module: base_setup @@ -137,6 +144,11 @@ msgstr "" msgid "Lets you install various interesting but non-essential tools like Survey, Lunch and Ideas box." msgstr "" +#. module: base_setup +#: view:base.setup.config:0 +msgid "You can start configuring the system or connect directly to the database as an administrator." +msgstr "" + #. module: base_setup #: field:base.setup.installer,report_designer:0 msgid "Advanced Reporting" @@ -158,13 +170,13 @@ msgid "title" msgstr "" #. module: base_setup -#: view:base.setup.config:0 -msgid "Use Directly" +#: field:base.setup.installer,knowledge:0 +msgid "Knowledge Management" msgstr "" #. module: base_setup -#: field:base.setup.installer,knowledge:0 -msgid "Knowledge Management" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: base_setup @@ -182,6 +194,11 @@ msgstr "" msgid "Helps you get the most out of your points of sales with fast sale encoding, simplified payment mode encoding, automatic picking lists generation and more." msgstr "" +#. module: base_setup +#: view:base.setup.config:0 +msgid "Skip Configuration Wizards" +msgstr "" + #. module: base_setup #: help:base.setup.installer,hr:0 msgid "Helps you manage your human resources by encoding your employees structure, generating work sheets, tracking attendance and more." @@ -416,8 +433,7 @@ msgid "base.setup.config" msgstr "" #. module: base_setup -#: code:addons/base_setup/__init__.py:0 -#, python-format -msgid "The following users have been installed : \n" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/base_synchro/i18n/base_synchro.pot b/addons/base_synchro/i18n/base_synchro.pot index fc2926c1697..b9ed3020dcd 100644 --- a/addons/base_synchro/i18n/base_synchro.pot +++ b/addons/base_synchro/i18n/base_synchro.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:19+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:19+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:48+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,6 +51,11 @@ msgstr "" msgid "Field Name" msgstr "" +#. module: base_synchro +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: base_synchro #: field:base.synchro.obj,synchronize_date:0 msgid "Latest Synchronization" @@ -72,8 +77,8 @@ msgid "_Close" msgstr "" #. module: base_synchro -#: view:base.synchro:0 -msgid "Transfer Data To Server" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: base_synchro @@ -198,7 +203,7 @@ msgstr "" #. module: base_synchro #: model:ir.actions.act_window,name:base_synchro.action_base_synchro_server_tree #: model:ir.ui.menu,name:base_synchro.synchro_server_tree_menu_id -msgid "Synchronized Servers" +msgid "Servers to be synchronized" msgstr "" #. module: base_synchro @@ -223,6 +228,7 @@ msgstr "" #. module: base_synchro #: model:ir.ui.menu,name:base_synchro.next_id_62 +#: model:ir.ui.menu,name:base_synchro.synch_config msgid "Synchronization" msgstr "" @@ -298,3 +304,13 @@ msgstr "" msgid "Server URL" msgstr "" +#. module: base_synchro +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base_synchro +#: view:base.synchro:0 +msgid "Transfer Data To Server" +msgstr "" + diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot index c75c36d9047..339094bc176 100644 --- a/addons/base_vat/i18n/base_vat.pot +++ b/addons/base_vat/i18n/base_vat.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:19+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:19+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:48+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_vat +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: base_vat #: code:addons/base_vat/base_vat.py:0 #, python-format @@ -36,6 +41,16 @@ msgstr "" msgid "Base VAT - To check VAT number validity" msgstr "" +#. module: base_vat +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base_vat +#: field:res.partner,vat_subjected:0 +msgid "VAT Legal Statement" +msgstr "" + #. module: base_vat #: code:addons/base_vat/base_vat.py:0 #, python-format @@ -53,7 +68,7 @@ msgid "Partner" msgstr "" #. module: base_vat -#: field:res.partner,vat_subjected:0 -msgid "VAT Legal Statement" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/board/i18n/board.pot b/addons/board/i18n/board.pot index 3620c6203db..2e471f2e545 100644 --- a/addons/board/i18n/board.pot +++ b/addons/board/i18n/board.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:19+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:19+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:49+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: board +#: view:res.log.report:0 +msgid " Year " +msgstr "" + #. module: board #: model:ir.model,name:board.model_board_menu_create msgid "Menu Create" @@ -36,12 +41,22 @@ msgstr "" msgid "Dashboard main module" msgstr "" +#. module: board +#: view:res.users:0 +msgid "Latest Connections" +msgstr "" + #. module: board #: code:addons/board/wizard/board_menu_create.py:0 #, python-format msgid "User Error!" msgstr "" +#. module: board +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + #. module: board #: view:board.board:0 #: model:ir.actions.act_window,name:board.open_board_administration_form @@ -58,6 +73,7 @@ msgstr "" #. module: board #: view:board.note:0 +#: view:res.log.report:0 msgid "Group By..." msgstr "" @@ -71,6 +87,13 @@ msgstr "" msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: board +#: view:board.board:0 +#: model:ir.actions.act_window,name:board.board_weekly_res_log_report_action +#: view:res.log.report:0 +msgid "Weekly Global Activity" +msgstr "" + #. module: board #: field:board.board.line,name:0 msgid "Title" @@ -81,17 +104,71 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: board +#: field:res.log.report,nbr:0 +msgid "# of Entries" +msgstr "" + +#. module: board +#: view:res.log.report:0 +#: field:res.log.report,month:0 +msgid "Month" +msgstr "" + +#. module: board +#: model:ir.actions.act_window,name:board.dashboard_open +msgid "Open Dashboard" +msgstr "" + #. module: board #: model:ir.model,name:board.model_board_note_type msgid "NOte Type" msgstr "" +#. module: board +#: view:board.board:0 +#: model:ir.actions.act_window,name:board.board_monthly_res_log_report_action +#: view:res.log.report:0 +msgid "Monthly Activity per Document" +msgstr "" + +#. module: board +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: board +#: view:res.log.report:0 +msgid "Log Analysis" +msgstr "" + #. module: board #: model:ir.actions.act_window,name:board.action_view_board_list_form #: model:ir.ui.menu,name:board.menu_view_board_form msgid "Dashboard Definition" msgstr "" +#. module: board +#: selection:res.log.report,month:0 +msgid "March" +msgstr "" + +#. module: board +#: selection:res.log.report,month:0 +msgid "August" +msgstr "" + +#. module: board +#: view:board.board:0 +#: model:ir.actions.act_window,name:board.action_user_connection_tree +msgid "User Connections" +msgstr "" + +#. module: board +#: field:res.log.report,creation_date:0 +msgid "Creation Date" +msgstr "" + #. module: board #: model:ir.actions.act_window,name:board.action_view_board_note_form #: model:ir.ui.menu,name:board.menu_view_board_note_form @@ -104,10 +181,8 @@ msgid "Menu Information" msgstr "" #. module: board -#: view:board.board:0 -#: model:ir.actions.act_window,name:board.action_user_connection_tree -#: view:res.users:0 -msgid "Latest Connections" +#: selection:res.log.report,month:0 +msgid "June" msgstr "" #. module: board @@ -120,6 +195,11 @@ msgstr "" msgid "Action Views" msgstr "" +#. module: board +#: model:ir.model,name:board.model_res_log_report +msgid "Log Report" +msgstr "" + #. module: board #: view:board.note:0 #: field:board.note,date:0 @@ -127,9 +207,19 @@ msgid "Date" msgstr "" #. module: board -#: view:board.note:0 -#: field:board.note.type,name:0 -msgid "Note Type" +#: selection:res.log.report,month:0 +msgid "July" +msgstr "" + +#. module: board +#: view:res.log.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: board +#: view:res.log.report:0 +#: field:res.log.report,day:0 +msgid "Day" msgstr "" #. module: board @@ -138,8 +228,13 @@ msgid "Create Menu For Dashboard" msgstr "" #. module: board -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: selection:res.log.report,month:0 +msgid "February" +msgstr "" + +#. module: board +#: selection:res.log.report,month:0 +msgid "October" msgstr "" #. module: board @@ -152,20 +247,34 @@ msgstr "" msgid "Parent Menu" msgstr "" +#. module: board +#: selection:res.log.report,month:0 +msgid "January" +msgstr "" + #. module: board #: view:board.note:0 msgid "Notes" msgstr "" +#. module: board +#: selection:res.log.report,month:0 +msgid "November" +msgstr "" + #. module: board #: help:board.board.line,sequence:0 msgid "Gives the sequence order when displaying a list of board lines." msgstr "" #. module: board -#: code:addons/board/wizard/board_menu_create.py:0 -#, python-format -msgid "Please Insert Dashboard View(s) !" +#: selection:res.log.report,month:0 +msgid "September" +msgstr "" + +#. module: board +#: selection:res.log.report,month:0 +msgid "April" msgstr "" #. module: board @@ -182,14 +291,19 @@ msgstr "" msgid "Base module for all dashboards." msgstr "" +#. module: board +#: field:board.board.line,action_id:0 +msgid "Action" +msgstr "" + #. module: board #: field:board.board.line,position:0 msgid "Position" msgstr "" #. module: board -#: model:ir.actions.act_window,name:board.dashboard_open -msgid "Open Dashboard" +#: view:res.log.report:0 +msgid "Model" msgstr "" #. module: board @@ -203,6 +317,11 @@ msgstr "" msgid "Latest Activities" msgstr "" +#. module: board +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: board #: selection:board.board.line,position:0 msgid "Left" @@ -223,11 +342,27 @@ msgstr "" msgid "Width" msgstr "" +#. module: board +#: view:res.log.report:0 +msgid " Month " +msgstr "" + #. module: board #: field:board.board.line,sequence:0 msgid "Sequence" msgstr "" +#. module: board +#: view:board.note:0 +#: field:board.note.type,name:0 +msgid "Note Type" +msgstr "" + +#. module: board +#: selection:res.log.report,month:0 +msgid "December" +msgstr "" + #. module: board #: view:board.board:0 #: view:board.menu.create:0 @@ -244,6 +379,22 @@ msgstr "" msgid "Create Board Menu" msgstr "" +#. module: board +#: selection:res.log.report,month:0 +msgid "May" +msgstr "" + +#. module: board +#: field:res.log.report,res_model:0 +msgid "Object" +msgstr "" + +#. module: board +#: view:res.log.report:0 +#: field:res.log.report,name:0 +msgid "Year" +msgstr "" + #. module: board #: view:board.menu.create:0 msgid "Cancel" @@ -254,6 +405,17 @@ msgstr "" msgid "Dashboard View" msgstr "" +#. module: board +#: code:addons/board/wizard/board_menu_create.py:0 +#, python-format +msgid "Please Insert Dashboard View(s) !" +msgstr "" + +#. module: board +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: board #: view:board.note:0 #: field:board.note,name:0 diff --git a/addons/caldav/i18n/caldav.pot b/addons/caldav/i18n/caldav.pot index f199107103a..1364aeeb400 100644 --- a/addons/caldav/i18n/caldav.pot +++ b/addons/caldav/i18n/caldav.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:20+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:20+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:50+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:50+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,133 @@ msgid "Value Mapping" msgstr "" #. module: caldav -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: field:basic.calendar.alias,name:0 +msgid "Filename" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_calendar_event_export +msgid "Event Export" +msgstr "" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "Provide path for Remote Calendar" +msgstr "" + +#. module: caldav +#: model:ir.actions.act_window,name:caldav.action_calendar_event_import +#: model:ir.actions.act_window,name:caldav.action_calendar_event_import_values +msgid "Import .ics File" +msgstr "" + +#. module: caldav +#: view:calendar.event.export:0 +msgid "_Close" +msgstr "" + +#. module: caldav +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "Attendee" +msgstr "" + +#. module: caldav +#: selection:basic.calendar,type:0 +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "TODO" +msgstr "" + +#. module: caldav +#: field:basic.calendar.lines,object_id:0 +msgid "Object" +msgstr "" + +#. module: caldav +#: selection:basic.calendar.fields,fn:0 +msgid "Expression as constant" +msgstr "" + +#. module: caldav +#: view:calendar.event.import:0 +#: view:calendar.event.subscribe:0 +msgid "Ok" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:0 +#, python-format +msgid "Please provide proper configuration of \"%s\" in Calendar Lines" +msgstr "" + +#. module: caldav +#: field:calendar.event.export,name:0 +msgid "File name" +msgstr "" + +#. module: caldav +#: code:addons/caldav/wizard/calendar_event_subscribe.py:0 +#, python-format +msgid "Error!" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: caldav +#: view:calendar.event.export:0 +msgid "Export ICS" +msgstr "" + +#. module: caldav +#: selection:basic.calendar.fields,fn:0 +msgid "Use the field" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:0 +#, python-format +msgid "Can not create line \"%s\" more than once" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +#: field:basic.calendar,line_ids:0 +#: model:ir.model,name:caldav.model_basic_calendar_lines +msgid "Calendar Lines" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_calendar_event_subscribe +msgid "Event subscribe" +msgstr "" + +#. module: caldav +#: view:calendar.event.import:0 +msgid "Import ICS" +msgstr "" + +#. module: caldav +#: view:calendar.event.import:0 +#: view:calendar.event.subscribe:0 +msgid "_Cancel" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_event +msgid "basic.calendar.event" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +#: selection:basic.calendar,type:0 +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "Event" msgstr "" #. module: caldav @@ -36,69 +161,8 @@ msgid "Error! You can not create recursive Directories." msgstr "" #. module: caldav -#: view:basic.calendar:0 -msgid "Other Info" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_calendar_event_export -msgid "Event Export" -msgstr "" - -#. module: caldav -#: view:calendar.event.subscribe:0 -msgid "Message..." -msgstr "" - -#. module: caldav -#: field:basic.calendar.alias,name:0 -msgid "Filename" -msgstr "" - -#. module: caldav -#: code:addons/caldav/calendar.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: caldav -#: field:basic.calendar,has_webcal:0 -msgid "WebCal" -msgstr "" - -#. module: caldav -#: view:calendar.event.subscribe:0 -msgid "_Subscribe" -msgstr "" - -#. module: caldav -#: field:basic.calendar,collection_id:0 -msgid "Collection" -msgstr "" - -#. module: caldav -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_basic_calendar_attendee -msgid "basic.calendar.attendee" -msgstr "" - -#. module: caldav -#: help:basic.calendar,has_webcal:0 -msgid "Also export a .ics entry next to the calendar folder, with WebCal content." -msgstr "" - -#. module: caldav -#: view:calendar.event.subscribe:0 -msgid "Provide path for Remote Calendar" -msgstr "" - -#. module: caldav -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: caldav @@ -110,19 +174,13 @@ msgid "Type" msgstr "" #. module: caldav -#: model:ir.actions.act_window,name:caldav.action_calendar_event_import -#: model:ir.actions.act_window,name:caldav.action_calendar_event_import_values -msgid "Import .ics File" +#: field:basic.calendar,description:0 +msgid "description" msgstr "" #. module: caldav -#: field:basic.calendar.fields,field_id:0 -msgid "OpenObject Field" -msgstr "" - -#. module: caldav -#: field:basic.calendar.fields,fn:0 -msgid "Function" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: caldav @@ -130,208 +188,27 @@ msgstr "" msgid "Save in .ics format" msgstr "" -#. module: caldav -#: selection:basic.calendar.attributes,type:0 -#: selection:basic.calendar.lines,name:0 -msgid "Attendee" -msgstr "" - #. module: caldav #: code:addons/caldav/calendar.py:0 #, python-format msgid "Error !" msgstr "" -#. module: caldav -#: view:basic.calendar:0 -msgid "Description" -msgstr "" - -#. module: caldav -#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe -#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe_values -msgid "Subscribe" -msgstr "" - -#. module: caldav -#: selection:basic.calendar,type:0 -#: selection:basic.calendar.attributes,type:0 -#: selection:basic.calendar.lines,name:0 -msgid "TODO" -msgstr "" - -#. module: caldav -#: help:basic.calendar.alias,cal_line_id:0 -msgid "The calendar/line this mapping applies to" -msgstr "" - -#. module: caldav -#: field:basic.calendar.lines,object_id:0 -msgid "Object" -msgstr "" - -#. module: caldav -#: view:basic.calendar:0 -#: field:document.directory,calendar_ids:0 -#: model:ir.actions.act_window,name:caldav.action_caldav_form -#: model:ir.ui.menu,name:caldav.menu_caldav_directories -msgid "Calendars" -msgstr "" - -#. module: caldav -#: field:basic.calendar.fields,mapping:0 -msgid "Mapping" -msgstr "" - #. module: caldav #: model:ir.model,name:caldav.model_basic_calendar_attributes msgid "Calendar attributes" msgstr "" -#. module: caldav -#: field:basic.calendar.alias,res_id:0 -msgid "Res. ID" -msgstr "" - -#. module: caldav -#: view:calendar.event.import:0 -msgid "_Import" -msgstr "" - -#. module: caldav -#: field:basic.calendar,write_date:0 -msgid "Modifided Date" -msgstr "" - -#. module: caldav -#: view:calendar.event.export:0 -msgid "_Close" -msgstr "" - -#. module: caldav -#: view:calendar.event.export:0 -msgid "Export ICS" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_calendar_event_import -msgid "Event Import" -msgstr "" - -#. module: caldav -#: selection:basic.calendar.fields,fn:0 -msgid "Expression as constant" -msgstr "" - -#. module: caldav -#: field:calendar.event.export,name:0 -msgid "File name" -msgstr "" - -#. module: caldav -#: view:calendar.event.subscribe:0 -msgid "Subscribe to Remote Calendar" -msgstr "" - -#. module: caldav -#: code:addons/caldav/calendar.py:0 -#, python-format -msgid "Can not create \\n" -"line \"%s\" more than once' % (vals.get('name" -msgstr "" - -#. module: caldav -#: help:basic.calendar,calendar_color:0 -msgid "For supporting clients, the color of the calendar entries" -msgstr "" - #. module: caldav #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" msgstr "" -#. module: caldav -#: model:ir.model,name:caldav.model_basic_calendar_alarm -msgid "basic.calendar.alarm" -msgstr "" - -#. module: caldav -#: view:calendar.event.import:0 -#: view:calendar.event.subscribe:0 -msgid "Ok" -msgstr "" - -#. module: caldav -#: field:basic.calendar,name:0 -#: field:basic.calendar.attributes,name:0 -#: field:basic.calendar.fields,name:0 -msgid "Name" -msgstr "" - -#. module: caldav -#: selection:basic.calendar.fields,fn:0 -msgid "Use the field" -msgstr "" - -#. module: caldav -#: selection:basic.calendar.attributes,type:0 -#: selection:basic.calendar.lines,name:0 -msgid "Alarm" -msgstr "" - -#. module: caldav -#: view:calendar.event.import:0 -#: view:calendar.event.subscribe:0 -msgid "_Cancel" -msgstr "" - -#. module: caldav -#: code:addons/caldav/calendar.py:0 -#, python-format -msgid "Please provide proper configuration of \"%s\" in Calendar Lines' % (name)))\n" -" return True\n" -"\n" -" def create(self, cr, uid, vals, context=None):\n" -" \"\"\" Create Calendar's fields\n" -" @param self: The object pointer\n" -" @param cr: the current row, from the database cursor,\n" -" @param uid: the current user’s ID for security checks,\n" -" @param vals: Get Values\n" -" @param context: A standard dictionary for contextual values\n" -" \"\"\"\n" -"\n" -" cr.execute('SELECT name FROM basic_calendar_attributes \\n" -" WHERE id=%s', (vals.get('name" -msgstr "" - -#. module: caldav -#: code:addons/caldav/calendar.py:0 -#, python-format -msgid "Attendee must have an Email Id" -msgstr "" - #. module: caldav #: field:basic.calendar,create_date:0 msgid "Created Date" msgstr "" -#. module: caldav -#: code:addons/caldav/wizard/calendar_event_subscribe.py:0 -#, python-format -msgid "Error!" -msgstr "" - -#. module: caldav -#: model:ir.actions.act_window,name:caldav.action_calendar_event_export -#: model:ir.actions.act_window,name:caldav.action_calendar_event_export_values -msgid "Export .ics File" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_basic_calendar_timezone -msgid "basic.calendar.timezone" -msgstr "" - #. module: caldav #: view:basic.calendar:0 msgid "Attributes Mapping" @@ -347,113 +224,11 @@ msgstr "" msgid "Provide path for remote calendar" msgstr "" -#. module: caldav -#: field:basic.calendar.fields,expr:0 -msgid "Expression" -msgstr "" - -#. module: caldav -#: field:basic.calendar,calendar_order:0 -msgid "Order" -msgstr "" - -#. module: caldav -#: view:document.directory:0 -#: model:ir.actions.act_window,name:caldav.action_calendar_collection_form -#: model:ir.ui.menu,name:caldav.menu_calendar_collection -msgid "Calendar Collections" -msgstr "" - -#. module: caldav -#: field:basic.calendar,description:0 -msgid "description" -msgstr "" - -#. module: caldav -#: code:addons/caldav/wizard/calendar_event_subscribe.py:0 -#, python-format -msgid "Please provide Proper URL !" -msgstr "" - #. module: caldav #: field:basic.calendar.lines,domain:0 msgid "Domain" msgstr "" -#. module: caldav -#: model:ir.module.module,shortdesc:caldav.module_meta_information -msgid "Share Calendar using CalDAV" -msgstr "" - -#. module: caldav -#: field:basic.calendar,calendar_color:0 -msgid "Color" -msgstr "" - -#. module: caldav -#: selection:basic.calendar.fields,fn:0 -msgid "Interval in hours" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_basic_calendar_fields -msgid "Calendar fields" -msgstr "" - -#. module: caldav -#: code:addons/caldav/calendar.py:0 -#, python-format -msgid "The same filename cannot apply to two records!" -msgstr "" - -#. module: caldav -#: view:calendar.event.import:0 -msgid "Import Message" -msgstr "" - -#. module: caldav -#: view:basic.calendar:0 -#: field:basic.calendar,line_ids:0 -#: model:ir.model,name:caldav.model_basic_calendar_lines -msgid "Calendar Lines" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_calendar_event_subscribe -msgid "Event subscribe" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_basic_calendar_alias -msgid "basic.calendar.alias" -msgstr "" - -#. module: caldav -#: view:calendar.event.import:0 -#: field:calendar.event.import,file_path:0 -msgid "Select ICS file" -msgstr "" - -#. module: caldav -#: view:calendar.event.import:0 -msgid "Import ICS" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_basic_calendar_event -msgid "basic.calendar.event" -msgstr "" - -#. module: caldav -#: field:calendar.event.export,file_path:0 -msgid "Save ICS file" -msgstr "" - -#. module: caldav -#: field:basic.calendar.lines,mapping_ids:0 -msgid "Fields Mapping" -msgstr "" - #. module: caldav #: field:basic.calendar,user_id:0 msgid "Owner" @@ -467,6 +242,271 @@ msgstr "" msgid "Calendar" msgstr "" +#. module: caldav +#: view:basic.calendar:0 +msgid "Todo" +msgstr "" + +#. module: caldav +#: field:basic.calendar.fields,field_id:0 +msgid "OpenObject Field" +msgstr "" + +#. module: caldav +#: field:basic.calendar.alias,res_id:0 +msgid "Res. ID" +msgstr "" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "Message..." +msgstr "" + +#. module: caldav +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar +msgid "basic.calendar" +msgstr "" + +#. module: caldav +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +#: field:basic.calendar,has_webcal:0 +msgid "WebCal" +msgstr "" + +#. module: caldav +#: view:document.directory:0 +#: model:ir.actions.act_window,name:caldav.action_calendar_collection_form +#: model:ir.ui.menu,name:caldav.menu_calendar_collection +msgid "Calendar Collections" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:0 +#, python-format +msgid "The same filename cannot apply to two records!" +msgstr "" + +#. module: caldav +#: sql_constraint:document.directory:0 +msgid "Directory cannot be parent of itself!" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +#: field:document.directory,calendar_ids:0 +#: model:ir.actions.act_window,name:caldav.action_caldav_form +#: model:ir.ui.menu,name:caldav.menu_caldav_directories +msgid "Calendars" +msgstr "" + +#. module: caldav +#: field:basic.calendar,collection_id:0 +msgid "Collection" +msgstr "" + +#. module: caldav +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" +msgstr "" + +#. module: caldav +#: code:addons/caldav/wizard/calendar_event_subscribe.py:0 +#, python-format +msgid "Please provide Proper URL !" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_timezone +msgid "basic.calendar.timezone" +msgstr "" + +#. module: caldav +#: field:basic.calendar.fields,expr:0 +msgid "Expression" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_attendee +msgid "basic.calendar.attendee" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_alias +msgid "basic.calendar.alias" +msgstr "" + +#. module: caldav +#: view:calendar.event.import:0 +#: field:calendar.event.import,file_path:0 +msgid "Select ICS file" +msgstr "" + +#. module: caldav +#: field:basic.calendar.lines,mapping_ids:0 +msgid "Fields Mapping" +msgstr "" + +#. module: caldav +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: caldav +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +msgid "Other Info" +msgstr "" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "_Subscribe" +msgstr "" + +#. module: caldav +#: help:basic.calendar,has_webcal:0 +msgid "Also export a .ics entry next to the calendar folder, with WebCal content." +msgstr "" + +#. module: caldav +#: field:basic.calendar.fields,fn:0 +msgid "Function" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +msgid "Description" +msgstr "" + +#. module: caldav +#: help:basic.calendar.alias,cal_line_id:0 +msgid "The calendar/line this mapping applies to" +msgstr "" + +#. module: caldav +#: field:basic.calendar.fields,mapping:0 +msgid "Mapping" +msgstr "" + +#. module: caldav +#: view:calendar.event.import:0 +msgid "_Import" +msgstr "" + +#. module: caldav +#: field:basic.calendar,write_date:0 +msgid "Modifided Date" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_calendar_event_import +msgid "Event Import" +msgstr "" + +#. module: caldav +#: selection:basic.calendar.fields,fn:0 +msgid "Interval in hours" +msgstr "" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "Subscribe to Remote Calendar" +msgstr "" + +#. module: caldav +#: help:basic.calendar,calendar_color:0 +msgid "For supporting clients, the color of the calendar entries" +msgstr "" + +#. module: caldav +#: field:basic.calendar,name:0 +#: field:basic.calendar.attributes,name:0 +#: field:basic.calendar.fields,name:0 +msgid "Name" +msgstr "" + +#. module: caldav +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "Alarm" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_alarm +msgid "basic.calendar.alarm" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:0 +#, python-format +msgid "Attendee must have an Email Id" +msgstr "" + +#. module: caldav +#: model:ir.actions.act_window,name:caldav.action_calendar_event_export +#: model:ir.actions.act_window,name:caldav.action_calendar_event_export_values +msgid "Export .ics File" +msgstr "" + +#. module: caldav +#: field:calendar.event.export,file_path:0 +msgid "Save ICS file" +msgstr "" + +#. module: caldav +#: field:basic.calendar,calendar_order:0 +msgid "Order" +msgstr "" + +#. module: caldav +#: model:ir.module.module,shortdesc:caldav.module_meta_information +msgid "Share Calendar using CalDAV" +msgstr "" + +#. module: caldav +#: field:basic.calendar,calendar_color:0 +msgid "Color" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +msgid "MY" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_fields +msgid "Calendar fields" +msgstr "" + +#. module: caldav +#: view:calendar.event.import:0 +msgid "Import Message" +msgstr "" + +#. module: caldav +#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe +#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe_values +msgid "Subscribe" +msgstr "" + +#. module: caldav +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "" + #. module: caldav #: model:ir.model,name:caldav.model_basic_calendar_todo msgid "basic.calendar.todo" @@ -477,15 +517,3 @@ msgstr "" msgid "For supporting clients, the order of this folder among the calendars" msgstr "" -#. module: caldav -#: selection:basic.calendar,type:0 -#: selection:basic.calendar.attributes,type:0 -#: selection:basic.calendar.lines,name:0 -msgid "Event" -msgstr "" - -#. module: caldav -#: model:ir.model,name:caldav.model_basic_calendar -msgid "basic.calendar" -msgstr "" - diff --git a/addons/claim_from_delivery/i18n/claim_from_delivery.pot b/addons/claim_from_delivery/i18n/claim_from_delivery.pot index c25d4c18a39..611c1c45a37 100644 --- a/addons/claim_from_delivery/i18n/claim_from_delivery.pot +++ b/addons/claim_from_delivery/i18n/claim_from_delivery.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:20+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:20+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:50+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:50+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,8 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: claim_from_delivery -#: model:ir.model,name:claim_from_delivery.model_stock_picking -msgid "Picking List" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: claim_from_delivery @@ -25,11 +25,6 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: claim_from_delivery -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - #. module: claim_from_delivery #: model:ir.module.module,description:claim_from_delivery.module_meta_information msgid "Create Claim from delivery order:\n" @@ -41,3 +36,18 @@ msgstr "" msgid "Claim from delivery" msgstr "" +#. module: claim_from_delivery +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: claim_from_delivery +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: claim_from_delivery +#: model:ir.model,name:claim_from_delivery.model_stock_picking +msgid "Picking List" +msgstr "" + diff --git a/addons/crm/i18n/crm.pot b/addons/crm/i18n/crm.pot index dd910f61d28..5ed3e9d5395 100644 --- a/addons/crm/i18n/crm.pot +++ b/addons/crm/i18n/crm.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:22+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:22+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:54+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -112,11 +112,6 @@ msgstr "" msgid "Stage Name" msgstr "" -#. module: crm -#: view:crm.phonecall.report:0 -msgid "Cases" -msgstr "" - #. module: crm #: view:crm.lead.report:0 #: field:crm.lead.report,day:0 @@ -126,8 +121,14 @@ msgid "Day" msgstr "" #. module: crm -#: help:crm.segmentation,categ_id:0 -msgid "The partner category that will be added to partners that match the segmentation criterions after computation." +#: sql_constraint:crm.case.section:0 +msgid "The code of the sales team must be unique !" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0 +#, python-format +msgid "Lead '%s' has been converted to an opportunity." msgstr "" #. module: crm @@ -258,6 +259,11 @@ msgstr "" msgid "The opportunity '%s' has been marked as lost." msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.action_report_crm_lead +msgid "Leads Analysis allows you to check different CRM related information. Check for treatment delays, number of responses given and emails sent. You can sort out your leads analysis by different groups to get accurate grained analysis." +msgstr "" + #. module: crm #: view:crm.lead:0 msgid "Send New Email" @@ -268,12 +274,6 @@ msgstr "" msgid "Criteria" msgstr "" -#. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0 -#, python-format -msgid "is converted to Opportunity." -msgstr "" - #. module: crm #: view:crm.segmentation:0 msgid "Excluded Answers :" @@ -284,6 +284,11 @@ msgstr "" msgid "Sections" msgstr "" +#. module: crm +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: crm #: view:crm.merge.opportunity:0 msgid "_Merge" @@ -312,6 +317,11 @@ msgstr "" msgid "Campaigns" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action +msgid "Create specific phone call categories to better sort the type of calls tracked in the system." +msgstr "" + #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action #: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act @@ -519,6 +529,11 @@ msgstr "" msgid "August" msgstr "" +#. module: crm +#: field:crm.segmentation,sales_purchase_active:0 +msgid "Use The Sales Purchase Rules" +msgstr "" + #. module: crm #: code:addons/crm/crm.py:0 #: view:crm.lead:0 @@ -630,6 +645,11 @@ msgstr "" msgid "#Phone calls" msgstr "" +#. module: crm +#: help:crm.segmentation,categ_id:0 +msgid "The partner category that will be added to partners that match the segmentation criterions after computation." +msgstr "" + #. module: crm #: view:crm.lead:0 msgid "Communication history" @@ -777,15 +797,13 @@ msgid "Search Phonecalls" msgstr "" #. module: crm -#: view:crm.lead2opportunity.partner:0 -#: view:crm.lead2partner:0 -#: view:crm.phonecall2partner:0 -msgid "Continue" +#: model:ir.actions.act_window,help:crm.crm_lead_stage_act +msgid "Create specific stages that will help your sales better organise their sales pipeline by maintaining them to their leads and sales opportunities. It will allow them to easily track how is positioned a specific lead or opportunity in the sales cycle." msgstr "" #. module: crm -#: field:crm.partner2opportunity,name:0 -msgid "Opportunity Name" +#: field:crm.segmentation,som_interval:0 +msgid "Days per Periode" msgstr "" #. module: crm @@ -820,11 +838,6 @@ msgstr "" msgid "The opportunity '%s' has been won." msgstr "" -#. module: crm -#: help:crm.case.section,active:0 -msgid "If the active field is set to true, it will allow you to hide the sales team without removing it." -msgstr "" - #. module: crm #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" @@ -1019,11 +1032,9 @@ msgid "Meetings" msgstr "" #. module: crm -#: field:crm.lead,date_action_next:0 -#: field:crm.lead,title_action:0 -#: field:crm.meeting,date_action_next:0 -#: field:crm.phonecall,date_action_next:0 -msgid "Next Action" +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0 +#, python-format +msgid "Closed/Cancelled Leads Could not convert into Opportunity" msgstr "" #. module: crm @@ -1031,11 +1042,6 @@ msgstr "" msgid "Repeat Until" msgstr "" -#. module: crm -#: view:crm.meeting:0 -msgid "Extended Options..." -msgstr "" - #. module: crm #: field:crm.meeting,date_deadline:0 msgid "Deadline" @@ -1052,6 +1058,12 @@ msgstr "" msgid "_Cancel" msgstr "" +#. module: crm +#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0 +#, python-format +msgid "Closed/Cancelled Phone Call Could not convert into Opportunity" +msgstr "" + #. module: crm #: view:crm.segmentation:0 msgid "Partner Segmentations" @@ -1072,6 +1084,11 @@ msgstr "" msgid "Attendees" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all +msgid "'Leads' allows you to manage and keep track of all first potential interests of a partner in one of your products or services. A lead is a first, unqualified, contact with a prospect or customer. After being qualified, a lead can be converted into a business opportunity with the creation of the related partner for further detailed tracking of any linked activities. You can use leads when you import a database of prospects or to integrate your website's contact form with OpenERP." +msgstr "" + #. module: crm #: view:crm.lead2opportunity.action:0 #: view:res.partner:0 @@ -1172,11 +1189,13 @@ msgid "Tue" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:0 #: view:crm.case.stage:0 #: view:crm.lead:0 #: field:crm.lead,stage_id:0 #: view:crm.lead.report:0 #: field:crm.lead.report,stage_id:0 +#, python-format msgid "Stage" msgstr "" @@ -1262,21 +1281,26 @@ msgstr "" msgid "Duration in Minutes" msgstr "" +#. module: crm +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2partner:0 +#: view:crm.phonecall2partner:0 +msgid "Continue" +msgstr "" + #. module: crm #: help:crm.installer,crm_helpdesk:0 msgid "Manages a Helpdesk service." msgstr "" #. module: crm -#: field:crm.segmentation,som_interval:0 -msgid "Days per Periode" +#: field:crm.partner2opportunity,name:0 +msgid "Opportunity Name" msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0 -#, python-format -msgid "Closed/Cancelled \\n" -"Leads Could not convert into Opportunity" +#: help:crm.case.section,active:0 +msgid "If the active field is set to true, it will allow you to hide the sales team without removing it." msgstr "" #. module: crm @@ -1368,13 +1392,14 @@ msgstr "" #. module: crm #: view:crm.lead:0 #: view:crm.lead.report:0 +#: view:crm.meeting:0 #: view:crm.phonecall.report:0 msgid "Extended Filters..." msgstr "" #. module: crm -#: model:ir.model,name:crm.model_calendar_attendee -msgid "Attendee information" +#: field:crm.phonecall2opportunity,name:0 +msgid "Opportunity Summary" msgstr "" #. module: crm @@ -1529,6 +1554,11 @@ msgstr "" msgid "Unconfirmed" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.action_report_crm_opportunity +msgid "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." +msgstr "" + #. module: crm #: field:crm.case.categ,name:0 #: field:crm.installer,name:0 @@ -1539,14 +1569,14 @@ msgid "Name" msgstr "" #. module: crm -#: field:crm.meeting,alarm_id:0 -#: field:crm.meeting,base_calendar_alarm_id:0 -msgid "Alarm" +#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 +msgid "The Inbound Calls tool allows you to log your inbound calls on the fly. Each call you get will appear on the partner form for the traceability of every contact you get with a partner. From the call record, you can trigger a request for another call, a meeting or a business opportunity." msgstr "" #. module: crm -#: model:process.node,note:crm.process_node_meeting0 -msgid "Schedule a normal or phone meeting" +#: field:crm.meeting,alarm_id:0 +#: field:crm.meeting,base_calendar_alarm_id:0 +msgid "Alarm" msgstr "" #. module: crm @@ -1594,6 +1624,11 @@ msgstr "" msgid "High" msgstr "" +#. module: crm +#: selection:crm.meeting,freq:0 +msgid "Seconds" +msgstr "" + #. module: crm #: model:process.node,note:crm.process_node_partner0 msgid "Convert to prospect to business partner" @@ -1769,6 +1804,11 @@ msgstr "" msgid "Customer Name" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_categ_meet +msgid "The meeting calendar is shared between the sales teams and fully integrated with other applications such as the employee holidays or the business opportunities. You can also synchronize meetings with your mobile phone using the caldav interface." +msgstr "" + #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2opportunity msgid "Phonecall To Opportunity" @@ -1875,8 +1915,8 @@ msgid "Priority" msgstr "" #. module: crm -#: field:crm.segmentation,sales_purchase_active:0 -msgid "Use The Sales Purchase Rules" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: crm @@ -1900,9 +1940,8 @@ msgid "Weeks" msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0 -#, python-format -msgid "Lead " +#: model:process.node,note:crm.process_node_meeting0 +msgid "Schedule a normal or phone meeting" msgstr "" #. module: crm @@ -1912,8 +1951,8 @@ msgid "Error !" msgstr "" #. module: crm -#: selection:crm.meeting,freq:0 -msgid "Seconds" +#: model:ir.actions.act_window,help:crm.crm_meeting_categ_action +msgid "Create different meeting categories to better organize and classify your meetings." msgstr "" #. module: crm @@ -2096,6 +2135,11 @@ msgstr "" msgid "Internal Meeting" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_lead_categ_action +msgid "Create specific categories that fit your company's activities in order to better classify and analyse them after they have been maintained in your leads and opportunities. You can use categories to reflect your product structure or the different types of sales you do." +msgstr "" + #. module: crm #: code:addons/crm/crm.py:0 #: selection:crm.add.note,state:0 @@ -2116,6 +2160,11 @@ msgstr "" msgid "Customer Meeting" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_section_act +msgid "Sales team allows you to organize your different salesmen or departments into separate teams. Each team will work in his own list of opportunities, sales orders, eso. Each user can set a team by default in his preferences. The opportunities and sales order he will see, will be automatically filtered according to his team." +msgstr "" + #. module: crm #: view:crm.lead:0 #: field:crm.lead,email_cc:0 @@ -2151,6 +2200,12 @@ msgstr "" msgid "Active" msgstr "" +#. module: crm +#: code:addons/crm/crm_lead.py:0 +#, python-format +msgid "The stage of opportunity '%s' has been changed to '%s'." +msgstr "" + #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Mandatory Expression" @@ -2192,6 +2247,18 @@ msgstr "" msgid "This may help associations in their fundraising process and tracking." msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11 +msgid "Opportunities allows you to manage and keep track of your sales pipeline by creating specific customer or prospect related sales documents in order to follow up potential sales. Information such as the expected revenue, opportunity stage, expected closing date, communication history and so on can be maintained in them. Opportunities can be connected with the email gateway: new emails create opportunities, each of them automatically gets the history of the conversation with the customer.\n" +"\n" +"You and your team(s) will be able to plan meetings and phone calls from opportunities, convert them into quotations, manage related documents, track all customer related activities, and much more." +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 +msgid "Outbound Calls lists all the calls to be performed by your sales team. They can record the information about the call on the form view. These information will appear on the partner form for the traceability of every contact you get with a customer. You can import a .CSV file with a list of calls to be done for your sales team." +msgstr "" + #. module: crm #: field:crm.lead2opportunity.partner,action:0 #: field:crm.lead2partner,action:0 @@ -2221,6 +2288,11 @@ msgstr "" msgid "Weekly" msgstr "" +#. module: crm +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.action_report_crm_opportunity @@ -2233,6 +2305,11 @@ msgstr "" msgid "Misc" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act +msgid "Create specific partner categories that you will then be able to assign to your partners to better manage your interactions with them. The segmentation tool will assign categories to partners based on defined criteria." +msgstr "" + #. module: crm #: model:crm.case.categ,name:crm.categ_oppor8 #: view:crm.meeting:0 @@ -2246,6 +2323,11 @@ msgstr "" msgid "Done" msgstr "" +#. module: crm +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: crm #: field:crm.segmentation,som_interval_max:0 msgid "Max Interval" @@ -2392,10 +2474,8 @@ msgid "The computation is made on all events that occured during this interval, msgstr "" #. module: crm -#: field:crm.lead,message_ids:0 -#: field:crm.meeting,message_ids:0 -#: field:crm.phonecall,message_ids:0 -msgid "Messages" +#: view:board.board:0 +msgid "My Win/Lost Ratio for the Last Year" msgstr "" #. module: crm @@ -2446,8 +2526,8 @@ msgid "Lead To Opportunity" msgstr "" #. module: crm -#: field:crm.phonecall2opportunity,name:0 -msgid "Opportunity Summary" +#: model:ir.model,name:crm.model_calendar_attendee +msgid "Attendee information" msgstr "" #. module: crm @@ -2613,14 +2693,22 @@ msgstr "" msgid "Add Internal Note" msgstr "" +#. module: crm +#: code:addons/crm/crm_lead.py:0 +#, python-format +msgid "The stage of lead '%s' has been changed to '%s'." +msgstr "" + #. module: crm #: selection:crm.meeting,byday:0 msgid "Last" msgstr "" #. module: crm -#: view:board.board:0 -msgid "My Win/Lost Ratio for the Last Year" +#: field:crm.lead,message_ids:0 +#: field:crm.meeting,message_ids:0 +#: field:crm.phonecall,message_ids:0 +msgid "Messages" msgstr "" #. module: crm @@ -2658,6 +2746,11 @@ msgstr "" msgid "Note Body" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.action_view_attendee_form +msgid "'Meeting Invitations' allows you to create and manage the meeting invitations sent/to be sent to your colleagues/partners." +msgstr "" + #. module: crm #: view:board.board:0 msgid "My Planned Revenues by Stage" @@ -2680,6 +2773,11 @@ msgstr "" msgid "Links" msgstr "" +#. module: crm +#: model:ir.actions.act_window,help:crm.action_report_crm_phonecall +msgid "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." +msgstr "" + #. module: crm #: help:crm.segmentation,som_interval_decrease:0 msgid "If the partner has not purchased (or bought) during a period, decrease the state of mind by this factor. It's a multiplication" @@ -2815,6 +2913,14 @@ msgstr "" msgid "Schedule Call" msgstr "" +#. module: crm +#: field:crm.lead,date_action_next:0 +#: field:crm.lead,title_action:0 +#: field:crm.meeting,date_action_next:0 +#: field:crm.phonecall,date_action_next:0 +msgid "Next Action" +msgstr "" + #. module: crm #: view:crm.segmentation:0 msgid "Profiling" @@ -3258,6 +3364,11 @@ msgstr "" msgid "Close" msgstr "" +#. module: crm +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: crm #: view:crm.lead:0 #: view:crm.phonecall:0 @@ -3456,13 +3567,6 @@ msgstr "" msgid "Negotiation" msgstr "" -#. module: crm -#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0 -#, python-format -msgid "Closed/Cancelled Phone \\n" -"Call Could not convert into Opportunity" -msgstr "" - #. module: crm #: view:crm.lead:0 msgid "Exp.Closing" diff --git a/addons/crm_caldav/i18n/crm_caldav.pot b/addons/crm_caldav/i18n/crm_caldav.pot index 3c64e32702b..2aaddcfbb9b 100644 --- a/addons/crm_caldav/i18n/crm_caldav.pot +++ b/addons/crm_caldav/i18n/crm_caldav.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:22+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:22+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:54+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,8 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: crm_caldav -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: crm_caldav @@ -25,6 +25,21 @@ msgstr "" msgid "Extened Module to Add CalDav future on Meeting" msgstr "" +#. module: crm_caldav +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: crm_caldav +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: crm_caldav +#: sql_constraint:basic.calendar.fields:0 +msgid "Can not map a field more than once" +msgstr "" + #. module: crm_caldav #: model:ir.model,name:crm_caldav.model_crm_meeting msgid "Meeting" diff --git a/addons/crm_claim/i18n/crm_claim.pot b/addons/crm_claim/i18n/crm_claim.pot index f0adddaa5ea..3440917dbc7 100644 --- a/addons/crm_claim/i18n/crm_claim.pot +++ b/addons/crm_claim/i18n/crm_claim.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:22+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:22+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:55+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -64,8 +64,8 @@ msgid "#Claim" msgstr "" #. module: crm_claim -#: view:crm.claim.report:0 -msgid "Cases" +#: model:ir.actions.act_window,help:crm_claim.crm_claim_stage_act +msgid "You can create claim stages to categorize the status of every claim entered in the system. The stages define all the steps required for the resolution of a claim." msgstr "" #. module: crm_claim @@ -164,6 +164,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: crm_claim +#: field:crm.claim,active:0 +msgid "Active" +msgstr "" + #. module: crm_claim #: selection:crm.claim,type_action:0 #: selection:crm.claim.report,type_action:0 @@ -194,6 +199,11 @@ msgstr "" msgid "Priority" msgstr "" +#. module: crm_claim +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: crm_claim #: view:crm.claim:0 msgid "Send New Email" @@ -231,6 +241,11 @@ msgstr "" msgid "Creation Date" msgstr "" +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.action_report_crm_claim +msgid "Have a general overview of all claims processed in the system by sorting them with specific criteria." +msgstr "" + #. module: crm_claim #: view:crm.claim:0 #: field:crm.claim,date_deadline:0 @@ -459,8 +474,8 @@ msgid "Awaiting Response" msgstr "" #. module: crm_claim -#: field:crm.claim,active:0 -msgid "Active" +#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action +msgid "Claim Categories" msgstr "" #. module: crm_claim @@ -548,6 +563,11 @@ msgstr "" msgid "Attachments" msgstr "" +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0 +msgid "Record and track your customers' claims. Claims can be linked to a sales order or a lot. You can send emails with attachments and get the history of everything that happened on a specific claim (emails sent, interventions type and so on..). Claims can be automatically linked to an email address using the mail gateway module." +msgstr "" + #. module: crm_claim #: view:crm.claim:0 #: field:crm.claim,state:0 @@ -591,6 +611,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: crm_claim +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: crm_claim #: view:crm.claim:0 msgid "In Progress" @@ -647,6 +672,13 @@ msgstr "" msgid "Search Claims" msgstr "" +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,section_id:0 +#: view:crm.claim.report:0 +msgid "Sales Team" +msgstr "" + #. module: crm_claim #: selection:crm.claim.report,month:0 msgid "May" @@ -681,6 +713,11 @@ msgid "The state is set to 'Draft', when a case is created. "If the case needs to be reviewed then the state is set to 'Pending'." msgstr "" +#. module: crm_claim +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: crm_claim #: selection:crm.claim.report,month:0 msgid "February" @@ -718,10 +755,8 @@ msgid "High" msgstr "" #. module: crm_claim -#: view:crm.claim:0 -#: field:crm.claim,section_id:0 -#: view:crm.claim.report:0 -msgid "Sales Team" +#: model:ir.actions.act_window,help:crm_claim.crm_claim_categ_action +msgid "Create claim categories to better manage and classify your claims. Some example of claims can be: preventive action, corrective action." msgstr "" #. module: crm_claim @@ -740,8 +775,3 @@ msgstr "" msgid "Year" msgstr "" -#. module: crm_claim -#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action -msgid "Claim Categories" -msgstr "" - diff --git a/addons/crm_fundraising/i18n/crm_fundraising.pot b/addons/crm_fundraising/i18n/crm_fundraising.pot index d93151a46a2..4f32be9989e 100644 --- a/addons/crm_fundraising/i18n/crm_fundraising.pot +++ b/addons/crm_fundraising/i18n/crm_fundraising.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:23+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:23+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:55+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -177,7 +177,7 @@ msgstr "" #. module: crm_fundraising #: view:crm.fundraising:0 -msgid "Estimates" +msgid "Misc" msgstr "" #. module: crm_fundraising @@ -196,6 +196,11 @@ msgstr "" msgid "Priority" msgstr "" +#. module: crm_fundraising +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: crm_fundraising #: view:crm.fundraising:0 msgid "Send New Email" @@ -321,6 +326,11 @@ msgstr "" msgid "Fundraising" msgstr "" +#. module: crm_fundraising +#: model:ir.actions.act_window,help:crm_fundraising.action_report_crm_fundraising +msgid "Have a general overview of all fund raising activities by sorting them with specific criteria such as the estimated revenue, average success probability and delay to close." +msgstr "" + #. module: crm_fundraising #: selection:crm.fundraising.report,month:0 msgid "September" @@ -385,6 +395,11 @@ msgstr "" msgid "Category" msgstr "" +#. module: crm_fundraising +#: model:ir.actions.act_window,help:crm_fundraising.crm_case_category_act_fund_all1 +msgid "If you need to support your organization or a campaign, with 'Fund Raising' you can track all you fund raising activities. The search list allows you to filter by funds description, email, history and probability of success." +msgstr "" + #. module: crm_fundraising #: view:crm.fundraising.report:0 msgid " Year " @@ -508,6 +523,11 @@ msgstr "" msgid "Cheque" msgstr "" +#. module: crm_fundraising +#: model:ir.actions.act_window,help:crm_fundraising.crm_fund_categ_action +msgid "Manage and define the fund raising categories you want to be maintained in the system." +msgstr "" + #. module: crm_fundraising #: help:crm.fundraising,email_from:0 msgid "These people will receive email." @@ -535,7 +555,7 @@ msgstr "" #. module: crm_fundraising #: view:crm.fundraising:0 -msgid "Misc" +msgid "Estimates" msgstr "" #. module: crm_fundraising @@ -571,6 +591,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: crm_fundraising +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: crm_fundraising #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -613,6 +638,11 @@ msgstr "" msgid "Est. Rev*Prob." msgstr "" +#. module: crm_fundraising +#: model:ir.actions.act_window,help:crm_fundraising.crm_fundraising_stage_act +msgid "Create and manage fund raising activity categories you want to be maintained in the system." +msgstr "" + #. module: crm_fundraising #: field:crm.fundraising,description:0 msgid "Description" @@ -646,6 +676,11 @@ msgid "The state is set to 'Draft', when a case is created. "If the case needs to be reviewed then the state is set to 'Pending'." msgstr "" +#. module: crm_fundraising +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: crm_fundraising #: selection:crm.fundraising.report,month:0 msgid "February" diff --git a/addons/crm_helpdesk/i18n/crm_helpdesk.pot b/addons/crm_helpdesk/i18n/crm_helpdesk.pot index 68ad24b01de..0e5ab6fda0d 100644 --- a/addons/crm_helpdesk/i18n/crm_helpdesk.pot +++ b/addons/crm_helpdesk/i18n/crm_helpdesk.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:23+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:23+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:56+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,11 +58,6 @@ msgstr "" msgid "Watchers Emails" msgstr "" -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "Cases" -msgstr "" - #. module: crm_helpdesk #: selection:crm.helpdesk,priority:0 #: selection:crm.helpdesk.report,priority:0 @@ -176,6 +171,11 @@ msgstr "" msgid "Priority" msgstr "" +#. module: crm_helpdesk +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Send New Email" @@ -526,6 +526,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: crm_helpdesk +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Helpdesk Support Tree" @@ -569,6 +574,11 @@ msgstr "" msgid "Reply" msgstr "" +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.crm_helpdesk_categ_action +msgid "Create and manage helpdesk categories to better manage and classify your support request." +msgstr "" + #. module: crm_helpdesk #: field:crm.helpdesk,description:0 msgid "Description" @@ -579,6 +589,11 @@ msgstr "" msgid "May" msgstr "" +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.crm_case_helpdesk_act111 +msgid "'Helpdesk and Support' allows you to track your interventions. Select a customer, add notes and categorize interventions with partners if necessary and assign a priority level. Depending on your need, you may consider using the issues system of OpenERP to manage your support activities." +msgstr "" + #. module: crm_helpdesk #: field:crm.helpdesk,probability:0 msgid "Probability (%)" @@ -589,6 +604,11 @@ msgstr "" msgid "# Emails" msgstr "" +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.action_report_crm_helpdesk +msgid "Have a general overview of all support requests by sorting them with specific criteria such as the processing time, number of requests answered, emails sent and costs." +msgstr "" + #. module: crm_helpdesk #: help:crm.helpdesk,canal_id:0 msgid "The channels represent the different communication modes available with the customer." @@ -602,6 +622,11 @@ msgid "The state is set to 'Draft', when a case is created. "If the case needs to be reviewed then the state is set to 'Pending'." msgstr "" +#. module: crm_helpdesk +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 msgid "February" diff --git a/addons/crm_partner_assign/i18n/crm_partner_assign.pot b/addons/crm_partner_assign/i18n/crm_partner_assign.pot index c3954dd5a9d..b94c9fe1842 100644 --- a/addons/crm_partner_assign/i18n/crm_partner_assign.pot +++ b/addons/crm_partner_assign/i18n/crm_partner_assign.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:23+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:23+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:57+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:57+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -214,6 +214,11 @@ msgstr "" msgid "Priority" msgstr "" +#. module: crm_partner_assign +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: crm_partner_assign #: view:crm.lead.report.assign:0 #: field:crm.lead.report.assign,state:0 @@ -558,6 +563,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: crm_partner_assign +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: crm_partner_assign #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -619,6 +629,11 @@ msgstr "" msgid "Customer" msgstr "" +#. module: crm_partner_assign +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 msgid "February" diff --git a/addons/crm_profiling/i18n/crm_profiling.pot b/addons/crm_profiling/i18n/crm_profiling.pot index 14e84327750..4d6ec771a61 100644 --- a/addons/crm_profiling/i18n/crm_profiling.pot +++ b/addons/crm_profiling/i18n/crm_profiling.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:24+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:24+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:57+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:57+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,6 +42,11 @@ msgstr "" msgid "Open Questionnaire" msgstr "" +#. module: crm_profiling +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" @@ -106,6 +111,11 @@ msgstr "" msgid "Use a questionnaire" msgstr "" +#. module: crm_profiling +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: crm_profiling #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -139,6 +149,11 @@ msgstr "" msgid "Avalaible answers" msgstr "" +#. module: crm_profiling +#: model:ir.actions.act_window,help:crm_profiling.open_questionnaires +msgid "You can create specific topic related questionnaires that will be used to guide your team(s) in the sales cycle by helping them to ask the right questions. Using the segmentation tool, you will be able to automatically assign a partner to a category based on his answers to the different questionnaires." +msgstr "" + #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 msgid "Included Answers" @@ -187,3 +202,8 @@ msgstr "" msgid "Save Data" msgstr "" +#. module: crm_profiling +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/decimal_precision/i18n/decimal_precision.pot b/addons/decimal_precision/i18n/decimal_precision.pot index 815e4a6df51..1e3253ef68b 100644 --- a/addons/decimal_precision/i18n/decimal_precision.pot +++ b/addons/decimal_precision/i18n/decimal_precision.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:24+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:24+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:58+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" msgid "Digits" msgstr "" +#. module: decimal_precision +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: decimal_precision #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -46,6 +51,16 @@ msgstr "" msgid "Decimal Accuracy" msgstr "" +#. module: decimal_precision +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: decimal_precision +#: model:ir.model,name:decimal_precision.model_decimal_precision +msgid "decimal.precision" +msgstr "" + #. module: decimal_precision #: constraint:ir.ui.menu:0 msgid "Error ! You can not create recursive Menu." @@ -62,7 +77,7 @@ msgid "Decimal Precision" msgstr "" #. module: decimal_precision -#: model:ir.model,name:decimal_precision.model_decimal_precision -msgid "decimal.precision" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/delivery/i18n/delivery.pot b/addons/delivery/i18n/delivery.pot index cad28f16415..ca2f43799d9 100644 --- a/addons/delivery/i18n/delivery.pot +++ b/addons/delivery/i18n/delivery.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:24+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:24+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:58+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -179,6 +179,11 @@ msgstr "" msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: delivery +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: delivery #: report:sale.shipping:0 msgid "Invoiced to" @@ -194,6 +199,11 @@ msgstr "" msgid "Make Delievery" msgstr "" +#. module: delivery +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: delivery #: model:ir.module.module,description:delivery.module_meta_information msgid "Allows you to add delivery methods in sale orders and picking.\n" @@ -322,8 +332,8 @@ msgid "Condition" msgstr "" #. module: delivery -#: field:delivery.grid.line,standard_price:0 -msgid "Cost Price" +#: model:ir.actions.act_window,help:delivery.action_delivery_carrier_form +msgid "Create and manage the delivery method(s) you want your sales to be processed with. Each delivery method can be assigned to a pricelist which computes the price of the delivery according to the products sold or delivered." msgstr "" #. module: delivery @@ -357,6 +367,11 @@ msgstr "" msgid "Complete this field if you plan to invoice the shipping based on picking." msgstr "" +#. module: delivery +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: delivery #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -372,6 +387,16 @@ msgstr "" msgid "Sales & Purchases" msgstr "" +#. module: delivery +#: model:ir.actions.act_window,help:delivery.action_delivery_grid_form +msgid "The delivery pricelist allows you to compute the cost and sales price of the delivery based on the weight of the products and other criteria. You can define several pricelists for one delivery method, for each region such as countries or a zone in a specific country defined by a zip code range." +msgstr "" + +#. module: delivery +#: field:delivery.grid.line,standard_price:0 +msgid "Cost Price" +msgstr "" + #. module: delivery #: view:delivery.sale.order:0 msgid "Create Deliveries" diff --git a/addons/document/i18n/document.pot b/addons/document/i18n/document.pot index 5c31cd60a5b..0d6a589591a 100644 --- a/addons/document/i18n/document.pot +++ b/addons/document/i18n/document.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:25+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:25+0000\n" +"POT-Creation-Date: 2010-11-18 16:11:59+0000\n" +"PO-Revision-Date: 2010-11-18 16:11:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -281,6 +281,11 @@ msgstr "" msgid "Type" msgstr "" +#. module: document +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: document #: help:document.directory,ressource_type_id:0 msgid "Select an object here and there will be one folder per record of that resource." @@ -541,12 +546,22 @@ msgstr "" msgid "Security" msgstr "" +#. module: document +#: help:document.directory,ressource_id:0 +msgid "Along with Parent Model, this ID attaches this folder to a specific record of Parent Model." +msgstr "" + #. module: document #: selection:report.document.user,month:0 #: selection:report.files.partner,month:0 msgid "August" msgstr "" +#. module: document +#: sql_constraint:document.directory:0 +msgid "Directory cannot be parent of itself!" +msgstr "" + #. module: document #: selection:report.document.user,month:0 #: selection:report.files.partner,month:0 @@ -582,6 +597,11 @@ msgstr "" msgid "Data" msgstr "" +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Such directories are \"attached\" to the specific model or record, just like attachments. Don't put a parent directory if you select a parent model." +msgstr "" + #. module: document #: view:document.directory:0 msgid "Definition" @@ -644,14 +664,14 @@ msgid "Expression" msgstr "" #. module: document -#: field:document.directory,create_uid:0 -#: field:document.storage,create_uid:0 -msgid "Creator" +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" msgstr "" #. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +#: field:document.directory,create_uid:0 +#: field:document.storage,create_uid:0 +msgid "Creator" msgstr "" #. module: document @@ -672,6 +692,11 @@ msgstr "" msgid "Prefix" msgstr "" +#. module: document +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: document #: field:report.document.wall,last:0 msgid "Last Posted Time" @@ -682,6 +707,11 @@ msgstr "" msgid "File Name" msgstr "" +#. module: document +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" @@ -774,6 +804,11 @@ msgstr "" msgid "Users that did not inserted documents since one month" msgstr "" +#. module: document +#: model:ir.actions.act_window,help:document.action_document_file_form +msgid "The Documents repository gives you access to all attachments, such as mails, project documents, invoices etc." +msgstr "" + #. module: document #: view:document.directory:0 msgid "For each entry here, virtual files will appear in this folder." @@ -848,6 +883,11 @@ msgstr "" msgid "Name" msgstr "" +#. module: document +#: sql_constraint:document.storage:0 +msgid "The storage path must be unique!" +msgstr "" + #. module: document #: view:document.directory:0 msgid "Fields" @@ -885,6 +925,11 @@ msgstr "" msgid "Mime Type" msgstr "" +#. module: document +#: constraint:ir.rule:0 +msgid "Rules are not supported for osv_memory objects !" +msgstr "" + #. module: document #: field:document.directory.content,sequence:0 msgid "Sequence" @@ -906,6 +951,11 @@ msgstr "" msgid "Internal File storage" msgstr "" +#. module: document +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "" + #. module: document #: model:ir.actions.act_window,name:document.action_document_directory_tree #: model:ir.ui.menu,name:document.menu_document_directories_tree @@ -942,3 +992,8 @@ msgstr "" msgid "Document Type" msgstr "" +#. module: document +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + diff --git a/addons/document_ftp/i18n/document_ftp.pot b/addons/document_ftp/i18n/document_ftp.pot index 5e552a732c0..46e080aa241 100644 --- a/addons/document_ftp/i18n/document_ftp.pot +++ b/addons/document_ftp/i18n/document_ftp.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:25+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:25+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:00+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,6 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document_ftp -#: view:document.ftp.browse:0 -msgid "_Cancel" -msgstr "" - #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration msgid "Auto Directory Configuration" @@ -35,11 +30,71 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document_ftp +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document_ftp +#: field:document.ftp.browse,url:0 +msgid "FTP Server" +msgstr "" + +#. module: document_ftp +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: document_ftp +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." +msgstr "" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "Browse Document" +msgstr "" + +#. module: document_ftp +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Browse" +msgstr "" + #. module: document_ftp #: field:document.ftp.configuration,progress:0 msgid "Configuration Progress" msgstr "" +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "title" +msgstr "" + +#. module: document_ftp +#: model:ir.ui.menu,name:document_ftp.menu_document_browse +msgid "Shared Repository (FTP)" +msgstr "" + +#. module: document_ftp +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_config_auto_directory +msgid "FTP Server Configuration" +msgstr "" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_ftp_browse +msgid "Document Browse" +msgstr "" + #. module: document_ftp #: model:ir.actions.url,name:document_ftp.action_document_browse msgid "Browse Files" @@ -50,21 +105,6 @@ msgstr "" msgid "Image" msgstr "" -#. module: document_ftp -#: view:document.ftp.configuration:0 -msgid "title" -msgstr "" - -#. module: document_ftp -#: field:document.ftp.browse,url:0 -msgid "FTP Server" -msgstr "" - -#. module: document_ftp -#: model:ir.actions.act_window,name:document_ftp.action_config_auto_directory -msgid "FTP Server Configuration" -msgstr "" - #. module: document_ftp #: model:ir.module.module,description:document_ftp.module_meta_information msgid "This is a support FTP Interface with document management system.\n" @@ -74,29 +114,14 @@ msgid "This is a support FTP Interface with document management system.\n" "" msgstr "" -#. module: document_ftp -#: view:document.ftp.browse:0 -msgid "_Browse" -msgstr "" - #. module: document_ftp #: view:document.ftp.configuration:0 msgid "res_config_contents" msgstr "" #. module: document_ftp -#: model:ir.ui.menu,name:document_ftp.menu_document_browse -msgid "Shared Repository (FTP)" -msgstr "" - -#. module: document_ftp -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "" - -#. module: document_ftp -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: view:document.ftp.browse:0 +msgid "_Cancel" msgstr "" #. module: document_ftp @@ -104,23 +129,13 @@ msgstr "" msgid "Integrated FTP Server with Document Management System" msgstr "" -#. module: document_ftp -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_browse msgid "Document FTP Browse" msgstr "" #. module: document_ftp -#: model:ir.actions.act_window,name:document_ftp.action_ftp_browse -msgid "Document Browse" -msgstr "" - -#. module: document_ftp -#: view:document.ftp.browse:0 -msgid "Browse Document" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/document_ics/i18n/document_ics.pot b/addons/document_ics/i18n/document_ics.pot index 8b853ce4b95..908e67b7e33 100644 --- a/addons/document_ics/i18n/document_ics.pot +++ b/addons/document_ics/i18n/document_ics.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:26+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:26+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:00+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -175,6 +175,11 @@ msgstr "" msgid "ICS Calendar" msgstr "" +#. module: document_ics +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: document_ics #: field:document.directory.ics.fields,name:0 msgid "ICS Value" @@ -185,11 +190,21 @@ msgstr "" msgid "Expression as constant" msgstr "" +#. module: document_ics +#: sql_constraint:crm.case.section:0 +msgid "The code of the sales team must be unique !" +msgstr "" + #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "location" msgstr "" +#. module: document_ics +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: document_ics #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -345,6 +360,11 @@ msgstr "" msgid "dtstamp" msgstr "" +#. module: document_ics +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: document_ics #: help:document.directory.content,fname_field:0 msgid "The field of the object used in the filename. Has to be a unique identifier." diff --git a/addons/document_webdav/i18n/document_webdav.pot b/addons/document_webdav/i18n/document_webdav.pot index 49267f83709..7820ce419ec 100644 --- a/addons/document_webdav/i18n/document_webdav.pot +++ b/addons/document_webdav/i18n/document_webdav.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:26+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:26+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:01+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,24 +15,14 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document_webdav -#: model:ir.model,name:document_webdav.model_document_webdav_dir_property -msgid "document.webdav.dir.property" -msgstr "" - -#. module: document_webdav -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - #. module: document_webdav #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: document_webdav -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: document_webdav @@ -40,16 +30,6 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" -#. module: document_webdav -#: view:document.webdav.dir.property:0 -msgid "Group By..." -msgstr "" - -#. module: document_webdav -#: model:ir.module.module,shortdesc:document_webdav.module_meta_information -msgid "WebDAV server for Document Management" -msgstr "" - #. module: document_webdav #: view:document.webdav.dir.property:0 #: field:document.webdav.dir.property,namespace:0 @@ -62,8 +42,8 @@ msgid "DAV properties" msgstr "" #. module: document_webdav -#: view:document.directory:0 -msgid "Dynamic context" +#: view:document.webdav.dir.property:0 +msgid "Group By..." msgstr "" #. module: document_webdav @@ -72,13 +52,23 @@ msgid "These properties will be added to WebDAV requests" msgstr "" #. module: document_webdav -#: field:document.webdav.dir.property,do_subst:0 -msgid "Substitute" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: document_webdav -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "Directory cannot be parent of itself!" +msgstr "" + +#. module: document_webdav +#: view:document.directory:0 +msgid "Dynamic context" msgstr "" #. module: document_webdav @@ -87,19 +77,8 @@ msgid "WebDAV properties" msgstr "" #. module: document_webdav -#: field:document.webdav.dir.property,dir_id:0 -#: model:ir.model,name:document_webdav.model_document_directory -msgid "Directory" -msgstr "" - -#. module: document_webdav -#: field:document.webdav.dir.property,value:0 -msgid "Value" -msgstr "" - -#. module: document_webdav -#: view:document.webdav.dir.property:0 -msgid "Search Document storage" +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" msgstr "" #. module: document_webdav @@ -114,8 +93,8 @@ msgid "Properties" msgstr "" #. module: document_webdav -#: view:document.webdav.dir.property:0 -msgid "Dir" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document_webdav @@ -123,3 +102,54 @@ msgstr "" msgid "Name" msgstr "" +#. module: document_webdav +#: model:ir.model,name:document_webdav.model_document_webdav_dir_property +msgid "document.webdav.dir.property" +msgstr "" + +#. module: document_webdav +#: field:document.webdav.dir.property,value:0 +msgid "Value" +msgstr "" + +#. module: document_webdav +#: field:document.webdav.dir.property,dir_id:0 +#: model:ir.model,name:document_webdav.model_document_directory +msgid "Directory" +msgstr "" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +msgid "Dir" +msgstr "" + +#. module: document_webdav +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: document_webdav +#: model:ir.module.module,shortdesc:document_webdav.module_meta_information +msgid "WebDAV server for Document Management" +msgstr "" + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "" + +#. module: document_webdav +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +msgid "Search Document storage" +msgstr "" + +#. module: document_webdav +#: field:document.webdav.dir.property,do_subst:0 +msgid "Substitute" +msgstr "" + diff --git a/addons/email_template/i18n/email_template.pot b/addons/email_template/i18n/email_template.pot index bc3d15026db..1be84d2c577 100644 --- a/addons/email_template/i18n/email_template.pot +++ b/addons/email_template/i18n/email_template.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:26+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:26+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:02+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:02+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -31,6 +31,18 @@ msgstr "" msgid "Emails for multiple items saved in outbox." msgstr "" +#. module: email_template +#: code:addons/email_template/wizard/email_template_send_wizard.py:0 +#, python-format +msgid "No personal email accounts are configured for you. \n" +"Either ask admin to enforce an account for this template or get yourself a personal email account." +msgstr "" + +#. module: email_template +#: model:ir.actions.act_window,help:email_template.action_email_template_mailbox +msgid "An email template is an email document that will be sent as part of a marketing campaign. You can personalize it based on specific customer profile fields so that their names or other partner related information can be automatically inserted in it." +msgstr "" + #. module: email_template #: view:email_template.mailbox:0 msgid "Personal Emails" @@ -57,9 +69,10 @@ msgid "Plain Text & HTML with no attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Mail from Account %s failed on login. Probable Reason:Could not login to server\nError: %s" +#: help:email.template,model_object_field:0 +msgid "Select the field from the model you want to use.\n" +"If it is a relationship field you will be able to choose the nested values in the box below\n" +"(Note:If there are no values make sure you have selected the correct model)" msgstr "" #. module: email_template @@ -103,6 +116,11 @@ msgstr "" msgid "Send all mails" msgstr "" +#. module: email_template +#: help:email_template.account,smtpuname:0 +msgid "Specify the username if your SMTP server requires authentication, otherwise leave it empty." +msgstr "" + #. module: email_template #: field:email_template.mailbox,server_ref:0 msgid "Server Reference of mail" @@ -140,6 +158,12 @@ msgstr "" msgid "The description is used as the Sender name along with the provided From Email, unless it is already specified in the From Email, e.g: John Doe " msgstr "" +#. module: email_template +#: field:email_template.preview,to:0 +#: field:email_template.send.wizard,to:0 +msgid "To" +msgstr "" + #. module: email_template #: field:email.template,from_account:0 msgid "Email Account" @@ -372,6 +396,11 @@ msgstr "" msgid "Mail from Account %s successfully Sent." msgstr "" +#. module: email_template +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: email_template #: selection:email.template,template_language:0 msgid "Mako Templates" @@ -388,12 +417,6 @@ msgstr "" msgid "Sent Items" msgstr "" -#. module: email_template -#: code:addons/email_template/email_template_mailbox.py:0 -#, python-format -msgid "Sending of Mail %s failed. Probable Reason:Could not login to server\nError: %s" -msgstr "" - #. module: email_template #: view:email_template.account:0 msgid "Test Outgoing Connection" @@ -439,10 +462,8 @@ msgid "Template" msgstr "" #. module: email_template -#: help:email.template,model_object_field:0 -msgid "Select the field from the model you want to use.\n" -"If it is a relationship field you will be able to choose the nested values in the box below\n" -"(Note:If there are no values make sure you have selected the correct model)" +#: field:email.template,sub_model_object_field:0 +msgid "Sub Field" msgstr "" #. module: email_template @@ -536,6 +557,11 @@ msgstr "" msgid "Rec/Sent Date" msgstr "" +#. module: email_template +#: selection:email_template.account,state:0 +msgid "Initiated" +msgstr "" + #. module: email_template #: field:email.template,report_template:0 msgid "Report to send" @@ -597,13 +623,6 @@ msgstr "" msgid "Window Action" msgstr "" -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Datetime Extraction failed.Date:%s \\n" -" \tError:%s" -msgstr "" - #. module: email_template #: selection:email_template.account,send_pref:0 msgid "HTML, otherwise Text" @@ -694,8 +713,9 @@ msgid "Outgoing" msgstr "" #. module: email_template -#: selection:email_template.account,state:0 -msgid "Initiated" +#: code:addons/email_template/email_template_account.py:0 +#, python-format +msgid "Datetime Extraction failed.Date:%s Error:%s" msgstr "" #. module: email_template @@ -731,11 +751,6 @@ msgstr "" msgid "User Name" msgstr "" -#. module: email_template -#: field:email.template,sub_model_object_field:0 -msgid "Sub Field" -msgstr "" - #. module: email_template #: help:email.template,attachment_ids:0 msgid "You may attach existing files to this template, so they will be added in all emails created from this template" @@ -762,6 +777,13 @@ msgstr "" msgid "Save in Drafts" msgstr "" +#. module: email_template +#: code:addons/email_template/email_template_account.py:0 +#, python-format +msgid "Mail from Account %s failed. Probable Reason:MIME Error\n" +"Description: %s" +msgstr "" + #. module: email_template #: field:email_template.account,smtptls:0 msgid "TLS" @@ -775,7 +797,6 @@ msgstr "" #. module: email_template #: code:addons/email_template/email_template.py:0 #: code:addons/email_template/email_template_account.py:0 -#: code:addons/email_template/email_template_mailbox.py:0 #: code:addons/email_template/wizard/email_template_send_wizard.py:0 #: model:ir.ui.menu,name:email_template.menu_email_template #: model:ir.ui.menu,name:email_template.menu_email_template_config_tools @@ -795,19 +816,6 @@ msgstr "" msgid "Send Mail" msgstr "" -#. module: email_template -#: code:addons/email_template/email_template_mailbox.py:0 -#, python-format -msgid "Error sending mail: %s\" % str(e)))\n" -" \n" -" def send_all_mail(self, cr, uid, ids=None, context=None):\n" -" if ids is None:\n" -" ids = []\n" -" if context is None:\n" -" context = {}\n" -" filters = [('folder', '=', 'outbox" -msgstr "" - #. module: email_template #: help:email.template,allowed_groups:0 msgid "Only users from these groups will be allowed to send mails from this Template" @@ -856,9 +864,8 @@ msgid "Attachments" msgstr "" #. module: email_template -#: field:email_template.preview,to:0 -#: field:email_template.send.wizard,to:0 -msgid "To" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: email_template @@ -887,6 +894,17 @@ msgstr "" msgid "Close" msgstr "" +#. module: email_template +#: code:addons/email_template/email_template_mailbox.py:0 +#, python-format +msgid "Error sending mail: %s" +msgstr "" + +#. module: email_template +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: email_template #: view:email_template.mailbox:0 msgid "Body (HTML-Web Client Only)" @@ -903,12 +921,6 @@ msgstr "" msgid "%s (Email Attachment)" msgstr "" -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "No personal email accounts are configured for you. \nEither ask admin to enforce an account for this template or get yourself a personal email account." -msgstr "" - #. module: email_template #: field:email.template,allowed_groups:0 msgid "Allowed User Groups" @@ -924,6 +936,11 @@ msgstr "" msgid "User Information" msgstr "" +#. module: email_template +#: view:email.template:0 +msgid "Actions" +msgstr "" + #. module: email_template #: view:email_template.account:0 #: selection:email_template.account,state:0 @@ -936,8 +953,8 @@ msgid "Name of the generated report file. Placeholders can be used in the filena msgstr "" #. module: email_template -#: field:email_template.mailbox,folder:0 -msgid "Folder" +#: help:email_template.mailbox,date_mail:0 +msgid "Date on which Email Sent or Received" msgstr "" #. module: email_template @@ -947,13 +964,15 @@ msgid "Trash" msgstr "" #. module: email_template -#: help:email_template.mailbox,date_mail:0 -msgid "Date on which Email Sent or Received" +#: model:ir.model,name:email_template.model_email_template_mailbox +msgid "Email Mailbox" msgstr "" #. module: email_template -#: help:email_template.account,smtpuname:0 -msgid "Specify the username if your SMTP server requires authentication, otherwise leave it empty." +#: code:addons/email_template/email_template_mailbox.py:0 +#, python-format +msgid "Sending of Mail %s failed. Probable Reason:Could not login to server\n" +"Error: %s" msgstr "" #. module: email_template @@ -1009,11 +1028,6 @@ msgstr "" msgid "Null Value" msgstr "" -#. module: email_template -#: model:ir.model,name:email_template.model_email_template_mailbox -msgid "Email Mailbox" -msgstr "" - #. module: email_template #: field:email.template,template_language:0 msgid "Templating Language" @@ -1133,6 +1147,13 @@ msgstr "" msgid "Corporate" msgstr "" +#. module: email_template +#: code:addons/email_template/email_template_account.py:0 +#, python-format +msgid "Mail from Account %s failed on login. Probable Reason:Could not login to server\n" +"Error: %s" +msgstr "" + #. module: email_template #: model:ir.model,name:email_template.model_email_template_send_wizard msgid "This is the wizard for sending mail" @@ -1148,20 +1169,14 @@ msgstr "" msgid "Emails will be sent from this approved account." msgstr "" -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Mail from Account %s failed. Probable Reason:MIME Error\nDescription: %s" -msgstr "" - #. module: email_template #: field:email_template.account,send_pref:0 msgid "Mail Format" msgstr "" #. module: email_template -#: view:email.template:0 -msgid "Actions" +#: field:email_template.mailbox,folder:0 +msgid "Folder" msgstr "" #. module: email_template diff --git a/addons/event/i18n/event.pot b/addons/event/i18n/event.pot index acbdbdd7fa9..713a8a74f70 100644 --- a/addons/event/i18n/event.pot +++ b/addons/event/i18n/event.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:27+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:27+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:03+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:03+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,8 +48,8 @@ msgid "Minimum Registrations" msgstr "" #. module: event -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: model:ir.model,name:event.model_event_confirm_registration +msgid "Confirmation for Event Registration" msgstr "" #. module: event @@ -209,6 +209,11 @@ msgstr "" msgid "Cancelled" msgstr "" +#. module: event +#: view:event.registration:0 +msgid "Send New Email" +msgstr "" + #. module: event #: field:event.event,reply_to:0 msgid "Reply-To" @@ -279,11 +284,9 @@ msgid "Extra Info" msgstr "" #. module: event -#: view:event.event:0 -#: view:event.registration:0 -#: field:event.registration.badge,registration_id:0 -#: model:ir.actions.act_window,name:event.act_event_list_register_event -msgid "Registration" +#: code:addons/event/wizard/event_make_invoice.py:0 +#, python-format +msgid "Customer Invoices" msgstr "" #. module: event @@ -373,8 +376,13 @@ msgid "Warning !" msgstr "" #. module: event -#: view:event.registration:0 -msgid "Send New Email" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: event +#: model:ir.actions.act_window,help:event.action_event_view +msgid "Event is the low-level object used by meeting and others documents that have to be synchronized with mobile or calendar applications through caldav. Most of the users should work on the Calendar menu, and not on the list of events." msgstr "" #. module: event @@ -414,6 +422,11 @@ msgstr "" msgid "To be Invoiced" msgstr "" +#. module: event +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: event #: code:addons/event/event.py:0 #, python-format @@ -474,11 +487,6 @@ msgstr "" msgid "Event Organization" msgstr "" -#. module: event -#: model:ir.model,name:event.model_event_confirm_registration -msgid "Event Registraion" -msgstr "" - #. module: event #: view:event.registration:0 msgid "History Information" @@ -501,9 +509,11 @@ msgid "Error: UOS must be in a different category than the UOM" msgstr "" #. module: event -#: code:addons/event/wizard/event_make_invoice.py:0 -#, python-format -msgid "Registration is set as Cannot be invoiced" +#: view:event.event:0 +#: view:event.registration:0 +#: field:event.registration.badge,registration_id:0 +#: model:ir.actions.act_window,name:event.act_event_list_register_event +msgid "Registration" msgstr "" #. module: event @@ -697,6 +707,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: event +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: event #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_event_view @@ -894,6 +909,12 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: event +#: view:report.event.registration:0 +#: field:report.event.registration,year:0 +msgid "Year" +msgstr "" + #. module: event #: code:addons/event/event.py:0 #, python-format @@ -918,6 +939,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: event +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: event #: field:event.event,user_id:0 msgid "Responsible User" @@ -1102,9 +1128,9 @@ msgid "Country" msgstr "" #. module: event -#: view:report.event.registration:0 -#: field:report.event.registration,year:0 -msgid "Year" +#: code:addons/event/wizard/event_make_invoice.py:0 +#, python-format +msgid "Registration is set as Cannot be invoiced" msgstr "" #. module: event diff --git a/addons/event_project/i18n/event_project.pot b/addons/event_project/i18n/event_project.pot index cafb6911dec..41a890ed357 100644 --- a/addons/event_project/i18n/event_project.pot +++ b/addons/event_project/i18n/event_project.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:27+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:27+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:03+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:03+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: event_project +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: event_project #: model:ir.model,name:event_project.model_event_project msgid "Event Project" @@ -39,8 +44,8 @@ msgid "Organization and management of events.\n" msgstr "" #. module: event_project -#: help:event.project,project_id:0 -msgid "This is Template Project. Project of event is a duplicate of this Template. After click on 'Create Retro-planning', New Project will be duplicated from this template project." +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: event_project @@ -59,11 +64,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: event_project -#: field:event.event,project_id:0 -msgid "Project" -msgstr "" - #. module: event_project #: field:event.project,project_id:0 msgid "Template of Project" @@ -85,11 +85,6 @@ msgstr "" msgid "Tasks" msgstr "" -#. module: event_project -#: field:event.event,task_ids:0 -msgid "Project tasks" -msgstr "" - #. module: event_project #: view:event.project:0 msgid "Close" @@ -106,8 +101,13 @@ msgid "Create Retro-Planning" msgstr "" #. module: event_project -#: model:ir.model,name:event_project.model_event_event -msgid "Event" +#: help:event.project,project_id:0 +msgid "This is Template Project. Project of event is a duplicate of this Template. After click on 'Create Retro-planning', New Project will be duplicated from this template project." +msgstr "" + +#. module: event_project +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: event_project diff --git a/addons/fetchmail/i18n/fetchmail.pot b/addons/fetchmail/i18n/fetchmail.pot index bf5ad52c8f1..544cc57a30a 100644 --- a/addons/fetchmail/i18n/fetchmail.pot +++ b/addons/fetchmail/i18n/fetchmail.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:27+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:27+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:03+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:03+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: fetchmail +#: view:email.server:0 +msgid "Search Email Servers" +msgstr "" + #. module: fetchmail #: selection:email.server,state:0 msgid "Confirmed" @@ -26,14 +31,13 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: fetchmail -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: fetchmail -#: model:ir.actions.act_window,name:fetchmail.action_email_server_tree_imap -#: model:ir.ui.menu,name:fetchmail.menu_action_email_server_tree_imap -msgid "IMAP Servers" +#: view:email.server:0 +msgid "Confirm" msgstr "" #. module: fetchmail @@ -47,18 +51,24 @@ msgid "Server & Login" msgstr "" #. module: fetchmail -#: field:email.server,priority:0 -msgid "Server Priority" +#: view:email.server:0 +msgid "Group By..." msgstr "" #. module: fetchmail +#: view:email.server:0 #: field:email.server,state:0 msgid "State" msgstr "" #. module: fetchmail -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: view:email.server:0 +msgid "Set to Draft" +msgstr "" + +#. module: fetchmail +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: fetchmail @@ -66,6 +76,11 @@ msgstr "" msgid "Not Confirmed" msgstr "" +#. module: fetchmail +#: view:email.server:0 +msgid "Type" +msgstr "" + #. module: fetchmail #: view:email.server:0 msgid "POP/IMAP Servers" @@ -76,12 +91,22 @@ msgstr "" msgid "Fetchmail Server" msgstr "" +#. module: fetchmail +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: fetchmail #: view:email.server:0 #: field:email.server,note:0 msgid "Description" msgstr "" +#. module: fetchmail +#: field:email.server,priority:0 +msgid "Server Priority" +msgstr "" + #. module: fetchmail #: field:email.server,attach:0 msgid "Add Attachments ?" @@ -89,7 +114,7 @@ msgstr "" #. module: fetchmail #: view:email.server:0 -msgid "Set to Draft" +msgid "POP" msgstr "" #. module: fetchmail @@ -102,6 +127,11 @@ msgstr "" msgid "User" msgstr "" +#. module: fetchmail +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: fetchmail #: field:email.server,date:0 msgid "Date" @@ -113,8 +143,14 @@ msgid "Waiting for Verification" msgstr "" #. module: fetchmail -#: field:email.server,password:0 -msgid "Password" +#: help:email.server,object_id:0 +msgid "OpenObject Model. Generates a record of this model." +msgstr "" + +#. module: fetchmail +#: model:ir.actions.act_window,name:fetchmail.act_server_history +#: view:mailgate.message:0 +msgid "Emails" msgstr "" #. module: fetchmail @@ -142,29 +178,26 @@ msgstr "" msgid "Mailgateway Message" msgstr "" +#. module: fetchmail +#: field:email.server,message_ids:0 +#: model:ir.actions.act_window,name:fetchmail.action_view_mail_message_emails +msgid "Messages" +msgstr "" + #. module: fetchmail #: model:ir.actions.act_window,name:fetchmail.action_email_server_tree -#: model:ir.ui.menu,name:fetchmail.menu_action_email_server_tree -msgid "POP Servers" -msgstr "" - -#. module: fetchmail #: model:ir.ui.menu,name:fetchmail.menu_action_fetchmail_server_tree -msgid "Fetchmail Services" +msgid "Email Servers" msgstr "" #. module: fetchmail -#: model:ir.actions.act_window,name:fetchmail.action_mailgate_message_tree -#: model:ir.actions.act_window,name:fetchmail.action_mailgate_message_tree_pop -#: model:ir.ui.menu,name:fetchmail.menu_action_mailgate_message_tree -#: model:ir.ui.menu,name:fetchmail.menu_action_mailgate_message_tree_pop -msgid "Received Email History" +#: field:email.server,server:0 +msgid "Server" msgstr "" #. module: fetchmail -#: field:email.server,type:0 -#: field:mailgate.message,server_type:0 -msgid "Server Type" +#: field:email.server,active:0 +msgid "Active" msgstr "" #. module: fetchmail @@ -189,13 +222,8 @@ msgid "Model" msgstr "" #. module: fetchmail -#: field:email.server,server:0 -msgid "Server" -msgstr "" - -#. module: fetchmail -#: model:ir.actions.act_window,name:fetchmail.act_server_history -msgid "Email History" +#: view:email.server:0 +msgid "IMAP" msgstr "" #. module: fetchmail @@ -204,6 +232,17 @@ msgstr "" msgid "POP/IMAP Server" msgstr "" +#. module: fetchmail +#: field:email.server,password:0 +msgid "Password" +msgstr "" + +#. module: fetchmail +#: field:email.server,type:0 +#: field:mailgate.message,server_type:0 +msgid "Server Type" +msgstr "" + #. module: fetchmail #: view:email.server:0 msgid "Login Information" @@ -214,6 +253,11 @@ msgstr "" msgid "Server Information" msgstr "" +#. module: fetchmail +#: help:email.server,attach:0 +msgid "Fetches mail with attachments if true." +msgstr "" + #. module: fetchmail #: selection:email.server,type:0 #: selection:mailgate.message,server_type:0 @@ -236,16 +280,32 @@ msgid "Fetchmail: \n" " " msgstr "" +#. module: fetchmail +#: view:email.server:0 +msgid "SSL" +msgstr "" + +#. module: fetchmail +#: help:email.server,action_id:0 +msgid "An Email Server Action. It will be run whenever an e-mail is fetched from server." +msgstr "" + #. module: fetchmail #: help:email.server,priority:0 msgid "Priority between 0 to 10, select define the order of Processing" msgstr "" #. module: fetchmail +#: view:mailgate.message:0 #: field:mailgate.message,server_id:0 msgid "Mail Server" msgstr "" +#. module: fetchmail +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: fetchmail #: view:email.server:0 msgid "Fetch Emails" diff --git a/addons/google_map/i18n/google_map.pot b/addons/google_map/i18n/google_map.pot index 992db6053eb..515fbb3fad1 100644 --- a/addons/google_map/i18n/google_map.pot +++ b/addons/google_map/i18n/google_map.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:28+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:28+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:04+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: google_map +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: google_map #: view:res.partner:0 #: view:res.partner.address:0 @@ -49,6 +54,11 @@ msgid "The module adds google map field in partner address\n" "url widget." msgstr "" +#. module: google_map +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: google_map #: model:ir.model,name:google_map.model_res_partner_address msgid "Partner Addresses" diff --git a/addons/hr/i18n/hr.pot b/addons/hr/i18n/hr.pot index 580f330e847..ae42b8a2b9f 100644 --- a/addons/hr/i18n/hr.pot +++ b/addons/hr/i18n/hr.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:28+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:28+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:05+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -247,6 +247,11 @@ msgstr "" msgid "Job Description" msgstr "" +#. module: hr +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: hr #: field:hr.employee,work_location:0 msgid "Office Location" @@ -280,6 +285,11 @@ msgstr "" msgid "Human Resources Application Configuration" msgstr "" +#. module: hr +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr #: field:hr.employee,birthday:0 msgid "Date of Birth" @@ -404,6 +414,11 @@ msgstr "" msgid "hr.department" msgstr "" +#. module: hr +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr #: help:hr.employee,parent_id:0 msgid "It is linked with manager of Department" @@ -420,6 +435,11 @@ msgstr "" msgid "Category" msgstr "" +#. module: hr +#: model:ir.actions.act_window,help:hr.open_view_employee_list_my +msgid "Here you can manage your work force by creating employees and assigning them specific properties in the system. Maintain all employee related information and keep track of anything that needs to be recorded for them. The personal information tab will help you maintain their identity data. The Categories tab gives you the opportunity to assign them related employee categories depending on their position and activities within the company. A category can be a seniority level within the company or a department. The Timesheets tab allows to assign them a specific timesheet and analytic journal where they will be able to enter time through the system. In the note tab, you can enter text data that should be recorded for a specific employee." +msgstr "" + #. module: hr #: help:hr.employee,bank_account_id:0 msgid "Employee bank salary account" @@ -450,6 +470,11 @@ msgstr "" msgid "Status" msgstr "" +#. module: hr +#: model:ir.actions.act_window,help:hr.open_module_tree_department +msgid "Your Company's Departments Structure is used to manage all documents related to employees by departments: expenses and timesheet validation, leaves management, recruitements, etc." +msgstr "" + #. module: hr #: field:hr.installer,progress:0 msgid "Configuration Progress" @@ -733,6 +758,11 @@ msgstr "" msgid "Generic Payroll system Integrated with Accountings." msgstr "" +#. module: hr +#: model:ir.actions.act_window,help:hr.action_hr_job +msgid "JJob Positions is used to define jobs and their requirements. You can attach a survey to a job position. This survey will be used in the recruitment process to evaluate the applicants for this job position." +msgstr "" + #. module: hr #: field:hr.employee,child_ids:0 msgid "Subordinates" diff --git a/addons/hr_attendance/i18n/hr_attendance.pot b/addons/hr_attendance/i18n/hr_attendance.pot index 064cfc261b9..3ee1455c19d 100644 --- a/addons/hr_attendance/i18n/hr_attendance.pot +++ b/addons/hr_attendance/i18n/hr_attendance.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:28+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:28+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:05+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,12 +35,6 @@ msgstr "" msgid "Today" msgstr "" -#. module: hr_attendance -#: code:addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "You tried to %s with a date anterior to another event !\nTry to contact the administrator to correct attendances." -msgstr "" - #. module: hr_attendance #: selection:hr.attendance.month,month:0 msgid "March" @@ -73,8 +67,10 @@ msgid "The sign-out date must be in the past" msgstr "" #. module: hr_attendance -#: report:report.hr.timesheet.attendance.error:0 -msgid "Date Signed" +#: selection:hr.action.reason,action_type:0 +#: view:hr.sign.in.out:0 +#: view:hr.sign.in.out.ask:0 +msgid "Sign in" msgstr "" #. module: hr_attendance @@ -173,13 +169,13 @@ msgid "Attendance" msgstr "" #. module: hr_attendance -#: view:hr.sign.in.out:0 -msgid "You are now ready to sign in or out of the attendance follow up" +#: field:hr.attendance.error,max_delay:0 +msgid "Max. Delay (Min)" msgstr "" #. module: hr_attendance -#: field:hr.attendance.error,max_delay:0 -msgid "Max. Delay (Min)" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: hr_attendance @@ -188,6 +184,11 @@ msgstr "" msgid "Print" msgstr "" +#. module: hr_attendance +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_attendance #: view:hr.attendance:0 msgid "Hr Attendance Search" @@ -286,6 +287,11 @@ msgstr "" msgid "Sign in / Sign out" msgstr "" +#. module: hr_attendance +#: model:ir.actions.act_window,help:hr_attendance.open_view_attendance +msgid "Time Tracking functionality aims to manage employee's attendances on the basis of the actions (Sign in/Sign out) performed by them. You can also link this to an attendance machine using OpenERP's webservices features." +msgstr "" + #. module: hr_attendance #: view:hr.sign.in.out.ask:0 msgid "hr.sign.out.ask" @@ -348,10 +354,8 @@ msgid "January" msgstr "" #. module: hr_attendance -#: selection:hr.action.reason,action_type:0 -#: view:hr.sign.in.out:0 -#: view:hr.sign.in.out.ask:0 -msgid "Sign in" +#: report:report.hr.timesheet.attendance.error:0 +msgid "Date Signed" msgstr "" #. module: hr_attendance @@ -375,6 +379,11 @@ msgstr "" msgid "Action" msgstr "" +#. module: hr_attendance +#: view:hr.sign.in.out:0 +msgid "If you need your staff to sign in when they arrive at work and sign out again at the end of the day, OpenERP allows you to manage this with this tool. If each employee has been linked to a system user, then they can encode their time with this action button." +msgstr "" + #. module: hr_attendance #: code:addons/hr_attendance/wizard/hr_attendance_error.py:0 #, python-format @@ -392,6 +401,11 @@ msgstr "" msgid "Empoyee ID" msgstr "" +#. module: hr_attendance +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: hr_attendance #: view:hr.attendance.error:0 #: view:hr.attendance.month:0 @@ -400,6 +414,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: hr_attendance +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_attendance #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -438,6 +457,13 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_attendance +#: code:addons/hr_attendance/hr_attendance.py:0 +#, python-format +msgid "You tried to %s with a date anterior to another event !\n" +"Try to contact the administrator to correct attendances." +msgstr "" + #. module: hr_attendance #: view:hr.sign.in.out.ask:0 #: field:hr.sign.in.out.ask,last_time:0 @@ -472,6 +498,11 @@ msgstr "" msgid "Sign Out" msgstr "" +#. module: hr_attendance +#: model:ir.actions.act_window,help:hr_attendance.action_hr_attendance_sigh_in_out +msgid "Sign in / Sign out. In some companies, staff have to sign in when they arrive at work and sign out again at the end of the day. If each employee has been linked to a system user, then they can encode their time with this action button." +msgstr "" + #. module: hr_attendance #: field:hr.attendance,employee_id:0 msgid "Employee's Name" diff --git a/addons/hr_contract/i18n/hr_contract.pot b/addons/hr_contract/i18n/hr_contract.pot index 832f47a1e08..6379d47cec8 100644 --- a/addons/hr_contract/i18n/hr_contract.pot +++ b/addons/hr_contract/i18n/hr_contract.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:29+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:29+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:06+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,6 +55,11 @@ msgstr "" msgid "Company Vehicle" msgstr "" +#. module: hr_contract +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_contract #: field:hr.contract,department_id:0 msgid "Department" @@ -351,6 +356,11 @@ msgstr "" msgid "Group By..." msgstr "" +#. module: hr_contract +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: hr_contract #: view:hr.contract.wage.type:0 msgid "Period" @@ -413,6 +423,11 @@ msgstr "" msgid "Main Data" msgstr "" +#. module: hr_contract +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_contract #: view:hr.contract.type:0 msgid "Search Contract Type" diff --git a/addons/hr_evaluation/i18n/hr_evaluation.pot b/addons/hr_evaluation/i18n/hr_evaluation.pot index 31ba0530500..ff88391100e 100644 --- a/addons/hr_evaluation/i18n/hr_evaluation.pot +++ b/addons/hr_evaluation/i18n/hr_evaluation.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:29+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:29+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:07+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -171,9 +171,8 @@ msgid "July" msgstr "" #. module: hr_evaluation -#: code:addons/hr_evaluation/hr_evaluation.py:0 -#, python-format -msgid "You cannot change state, because some appraisal in waiting answer or draft state" +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" msgstr "" #. module: hr_evaluation @@ -182,8 +181,28 @@ msgid "Ending Date" msgstr "" #. module: hr_evaluation -#: field:hr_evaluation.plan,month_next:0 -msgid "After the Date of Start" +#: model:ir.actions.act_window,help:hr_evaluation.open_view_hr_evaluation_tree +msgid "Each employee can be assigned to an evaluation plan. These plans define the frequency and the way you manage your periodic personnal evaluation. You will be able to define steps and attach interview forms to each step. OpenERP manages all kind of evaluations: bottom-up, top-down, self evaluation and final evaluation by the manager." +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:0 +#, python-format +msgid "\n" +"Date: %(date)s\n" +"\n" +"Dear %(employee_name)s,\n" +"\n" +"I am doing an evaluation regarding %(eval_name)s.\n" +"\n" +"Kindly submit your response.\n" +"\n" +"\n" +"Thanks,\n" +"--\n" +"%(user_signature)s\n" +"\n" +" " msgstr "" #. module: hr_evaluation @@ -191,6 +210,11 @@ msgstr "" msgid "Send to Employees" msgstr "" +#. module: hr_evaluation +#: field:hr_evaluation.plan,month_next:0 +msgid "After the Date of Start" +msgstr "" + #. module: hr_evaluation #: field:hr.evaluation.report,deadline:0 msgid "Deadline" @@ -216,12 +240,6 @@ msgstr "" msgid "Periodic Evaluations" msgstr "" -#. module: hr_evaluation -#: code:addons/hr_evaluation/hr_evaluation.py:0 -#, python-format -msgid "''Regarding ''" -msgstr "" - #. module: hr_evaluation #: view:hr.evaluation.reminder:0 msgid "Send evaluation reminder" @@ -237,6 +255,17 @@ msgstr "" msgid "(date)s: Current Date" msgstr "" +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:0 +#, python-format +msgid "Regarding " +msgstr "" + +#. module: hr_evaluation +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: hr_evaluation #: view:hr.evaluation.interview:0 #: view:hr.evaluation.report:0 @@ -439,6 +468,11 @@ msgstr "" msgid "Check this box if you want to wait that all preceding phases are finished before launching this phase." msgstr "" +#. module: hr_evaluation +#: model:ir.actions.act_window,help:hr_evaluation.action_hr_evaluation_interview_tree +msgid "Interview Requests are generated automatically by OpenERP according to employees evaluation plan. Each user receives automatic emails and requests to perform evaluation of their collegues periodically." +msgstr "" + #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Evaluation Data" @@ -536,26 +570,6 @@ msgstr "" msgid "October" msgstr "" -#. module: hr_evaluation -#: code:addons/hr_evaluation/hr_evaluation.py:0 -#, python-format -msgid "''\n" -"Date : %(date)s\n" -"\n" -"Dear %(employee_name)s,\n" -"\n" -"I am doing an evaluation regarding %(eval_name)s.\n" -"\n" -"Kindly submit your response.\n" -"\n" -"\n" -"Thanks,\n" -"--\n" -"%(user_signature)s\n" -"\n" -" ''" -msgstr "" - #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 msgid "January" @@ -678,6 +692,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: hr_evaluation +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_evaluation #: view:hr.evaluation.report:0 msgid "In Progress" @@ -780,6 +799,11 @@ msgstr "" msgid "Evaluation Plan" msgstr "" +#. module: hr_evaluation +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 msgid "February" @@ -830,6 +854,12 @@ msgstr "" msgid "(user_signature)s: User name" msgstr "" +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:0 +#, python-format +msgid "You cannot change state, because some appraisal in waiting answer or draft state" +msgstr "" + #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_tree #: model:ir.ui.menu,name:hr_evaluation.menu_open_hr_evaluation_interview_requests diff --git a/addons/hr_expense/i18n/hr_expense.pot b/addons/hr_expense/i18n/hr_expense.pot index 7d1c5a6e682..082164a9778 100644 --- a/addons/hr_expense/i18n/hr_expense.pot +++ b/addons/hr_expense/i18n/hr_expense.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:30+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:30+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:08+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -60,11 +60,6 @@ msgstr "" msgid "Department" msgstr "" -#. module: hr_expense -#: view:hr.expense.report:0 -msgid "Extended filters..." -msgstr "" - #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "March" @@ -259,6 +254,11 @@ msgstr "" msgid "Total Price" msgstr "" +#. module: hr_expense +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reinvoicing0 msgid "Some costs may be reinvoices to the customer" @@ -506,6 +506,11 @@ msgstr "" msgid "User" msgstr "" +#. module: hr_expense +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: hr_expense #: report:hr.expense:0 #: field:hr.expense.expense,date:0 @@ -518,6 +523,11 @@ msgstr "" msgid "November" msgstr "" +#. module: hr_expense +#: view:hr.expense.report:0 +msgid "Extended Filters..." +msgstr "" + #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "October" @@ -587,11 +597,21 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: hr_expense +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_reimbursereinvoice0 msgid "Reinvoice" msgstr "" +#. module: hr_expense +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_expense #: view:board.board:0 #: model:ir.actions.act_window,name:hr_expense.action_employee_expense @@ -701,6 +721,11 @@ msgstr "" msgid "Employee's Name" msgstr "" +#. module: hr_expense +#: model:ir.actions.act_window,help:hr_expense.expense_all +msgid "The OpenERP expenses management module allows you to track the full flow. Every month, the employees record their expenses. At the end of the month, their managers validates the expenses sheets which creates costs on projects/analytic accounts. The accountant validates the proposed entries and the employee can be reimbursed. You can also reinvoice the customer at the end of the flow." +msgstr "" + #. module: hr_expense #: view:hr.expense.expense:0 msgid "This Month" diff --git a/addons/hr_holidays/i18n/hr_holidays.pot b/addons/hr_holidays/i18n/hr_holidays.pot index ca14a6b76c9..1d7e57d0d3a 100644 --- a/addons/hr_holidays/i18n/hr_holidays.pot +++ b/addons/hr_holidays/i18n/hr_holidays.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:30+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:30+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:09+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,9 +48,22 @@ msgstr "" msgid "Leaves Management" msgstr "" +#. module: hr_holidays +#: code:addons/hr_holidays/hr_holidays.py:0 +#, python-format +msgid "You cannot validate leaves for %s while available leaves are less than asked leaves.' %(record.employee_id.name)))\n" +" nb = -(record.number_of_days_temp)\n" +" elif record.holiday_type == 'category' and record.type == 'remove':\n" +" if record.category_id and not record.holiday_status_id.limit:\n" +" leaves_rest = obj_hr_holiday_status.get_days_cat( cr, uid, [record.holiday_status_id.id], record.category_id.id, False)[record.holiday_status_id.id]['remaining_leaves']\n" +" if leaves_rest < leave_asked:\n" +" raise osv.except_osv(_('Warning!" +msgstr "" + #. module: hr_holidays #: view:available.holidays.report:0 #: view:hr.holidays:0 +#: view:hr.holidays.status:0 msgid "Group By..." msgstr "" @@ -79,9 +92,8 @@ msgid "Refused" msgstr "" #. module: hr_holidays -#: view:available.holidays.report:0 -#: field:available.holidays.report,max_leave:0 -msgid "Allocated Leaves" +#: help:hr.holidays,category_id:0 +msgid "Category Of employee" msgstr "" #. module: hr_holidays @@ -95,7 +107,6 @@ msgid "Brown" msgstr "" #. module: hr_holidays -#: view:available.holidays.report:0 #: view:hr.holidays:0 msgid "Remaining Days" msgstr "" @@ -115,11 +126,6 @@ msgstr "" msgid "Leave Manager can let this field empty if this leave request/allocation is for every employee" msgstr "" -#. module: hr_holidays -#: view:available.holidays.report:0 -msgid "Leave Days" -msgstr "" - #. module: hr_holidays #: view:hr.holidays:0 msgid "Set to Draft" @@ -196,6 +202,11 @@ msgid "Choose 'Leave Request' if someone wants to take an off-day. \n" "Choose 'Allocation Request' if you want to increase the number of leaves available for someone" msgstr "" +#. module: hr_holidays +#: view:hr.holidays.status:0 +msgid "Validation" +msgstr "" + #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:0 #, python-format @@ -214,6 +225,7 @@ msgstr "" #. module: hr_holidays #: field:available.holidays.report,holiday_status_id:0 +#: field:hr.holidays,holiday_status_id:0 #: field:hr.holidays.remaining.leaves.user,leave_type:0 #: view:hr.holidays.status:0 #: field:hr.holidays.status,name:0 @@ -365,6 +377,11 @@ msgstr "" msgid "Leaves by Type" msgstr "" +#. module: hr_holidays +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" @@ -383,8 +400,9 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: help:hr.holidays,category_id:0 -msgid "Category Of employee" +#: view:available.holidays.report:0 +#: field:available.holidays.report,max_leave:0 +msgid "Allocated Leaves" msgstr "" #. module: hr_holidays @@ -392,6 +410,11 @@ msgstr "" msgid "Remaining Leave by Type and User" msgstr "" +#. module: hr_holidays +#: view:hr.holidays.status:0 +msgid "Search Leave Type" +msgstr "" + #. module: hr_holidays #: selection:available.holidays.report,month:0 msgid "July" @@ -422,6 +445,11 @@ msgstr "" msgid " Month " msgstr "" +#. module: hr_holidays +#: view:board.board:0 +msgid "Leaves By Month" +msgstr "" + #. module: hr_holidays #: help:hr.holidays.status,categ_id:0 msgid "If you link this type of leave with a category in the CRM, it will synchronize each leave asked with a case in this category, to display it in the company shared calendar for example." @@ -613,6 +641,7 @@ msgstr "" #. module: hr_holidays #: view:available.holidays.report:0 +#: view:hr.holidays:0 msgid "Extended Filters..." msgstr "" @@ -648,7 +677,8 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 -msgid "Extended options..." +#: model:ir.ui.menu,name:hr_holidays.menu_open_company_allocation +msgid "Leaves Summary" msgstr "" #. module: hr_holidays @@ -657,16 +687,6 @@ msgstr "" msgid "Error" msgstr "" -#. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:0 -#, python-format -msgid "You cannot validate leaves for %s while available leaves are less than asked leaves.' %(record.employee_id.name)))\n" -" nb = -(record.number_of_days_temp)\n" -" elif record.holiday_type == 'category' and record.type == 'remove':\n" -" if record.category_id and not record.holiday_status_id.limit:\n" -" leaves_rest = self.pool.get('hr.holidays.status" -msgstr "" - #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Blue" @@ -683,6 +703,11 @@ msgstr "" msgid "Request Type" msgstr "" +#. module: hr_holidays +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: hr_holidays #: help:hr.holidays.status,active:0 msgid "If the active field is set to false, it will allow you to hide the leave type without removing it." @@ -700,12 +725,22 @@ msgstr "" msgid "Reasons" msgstr "" +#. module: hr_holidays +#: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays +msgid "Leaves requests can be recorded by employees and validated by their managers. Once a leave request is validated it appears automatically in the agenda of the employee. You can define several allowance types (paid holidays, sickness, etc) and manage allowances per type." +msgstr "" + #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_hr_available_holidays_report #: model:ir.ui.menu,name:hr_holidays.menu_hr_available_holidays_report_tree msgid "Leaves Analysis" msgstr "" +#. module: hr_holidays +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: hr_holidays #: view:hr.holidays:0 #: view:hr.holidays.summary.dept:0 @@ -727,6 +762,11 @@ msgstr "" msgid "Validated" msgstr "" +#. module: hr_holidays +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_holidays #: view:hr.holidays:0 #: selection:hr.holidays,type:0 @@ -748,11 +788,6 @@ msgstr "" msgid "Apply Double Validation" msgstr "" -#. module: hr_holidays -#: field:hr.holidays,holiday_status_id:0 -msgid " Leave Type" -msgstr "" - #. module: hr_holidays #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 @@ -760,14 +795,14 @@ msgid "Print" msgstr "" #. module: hr_holidays -#: view:board.board:0 -#: model:ir.actions.act_window,name:hr_holidays.action_view_holiday_status_board -msgid "My Leaves" +#: view:hr.holidays.status:0 +msgid "Details" msgstr "" #. module: hr_holidays #: view:board.board:0 -msgid "My Leaves by Type" +#: model:ir.actions.act_window,name:hr_holidays.action_view_holiday_status_board +msgid "My Leaves" msgstr "" #. module: hr_holidays @@ -792,6 +827,7 @@ msgid "May" msgstr "" #. module: hr_holidays +#: view:hr.holidays.status:0 #: field:hr.holidays.status,categ_id:0 msgid "Meeting Category" msgstr "" @@ -917,12 +953,6 @@ msgstr "" msgid "Light Pink" msgstr "" -#. module: hr_holidays -#: view:hr.holidays:0 -#: model:ir.ui.menu,name:hr_holidays.menu_open_company_allocation -msgid "Leaves Summary" -msgstr "" - #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:0 #, python-format diff --git a/addons/hr_payroll/i18n/hr_payroll.pot b/addons/hr_payroll/i18n/hr_payroll.pot index 025848d46a6..af83eb33239 100644 --- a/addons/hr_payroll/i18n/hr_payroll.pot +++ b/addons/hr_payroll/i18n/hr_payroll.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:31+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:31+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:11+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,14 +39,6 @@ msgstr "" msgid "Recompute Sheet" msgstr "" -#. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:0 -#, python-format -msgid "Variable Error : %s ' % (e)))\n" -"\n" -" if sal_type in ('gross', 'net" -msgstr "" - #. module: hr_payroll #: report:employees.salary:0 msgid "Employees Salary Details" @@ -155,6 +147,12 @@ msgstr "" msgid "Set to Draft" msgstr "" +#. module: hr_payroll +#: code:addons/hr_payroll/hr_payroll.py:0 +#, python-format +msgid "Variable Error: %s " +msgstr "" + #. module: hr_payroll #: view:hr.passport:0 msgid "Expire" @@ -165,77 +163,6 @@ msgstr "" msgid "Half-Pay Holiday" msgstr "" -#. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:0 -#, python-format -msgid "Please check configuration of %s, payroll head is missing' % (hday.holiday_status_id.name)))\n" -" \n" -" res = {\n" -" 'slip_id':slip.id,\n" -" 'name':hday.holiday_status_id.name + '-%s' % (hday.number_of_days),\n" -" 'code':hday.holiday_status_id.code,\n" -" 'amount_type':'fix',\n" -" 'category_id':hday.holiday_status_id.head_id.id,\n" -" 'sequence':hday.holiday_status_id.head_id.sequence\n" -" }\n" -" days = hday.number_of_days\n" -" if hday.number_of_days < 0:\n" -" days = hday.number_of_days * -1\n" -" total_leave += days\n" -" if hday.holiday_status_id.type == 'paid':\n" -" paid_leave += days\n" -" continue\n" -"# res['name'] = hday.holiday_status_id.name + '-%s' % (days)\n" -"# res['amount'] = perday * days\n" -"# res['type'] = 'allowance'\n" -"# leave += days\n" -"# total += perday * days\n" -" \n" -" elif hday.holiday_status_id.type == 'halfpaid':\n" -" paid_leave += (days / 2)\n" -" res['name'] = hday.holiday_status_id.name + '-%s/2' % (days)\n" -" res['amount'] = perday * (days/2)\n" -" total += perday * (days/2)\n" -" leave += days / 2\n" -" res['type'] = 'deduction'\n" -" else:\n" -" res['name'] = hday.holiday_status_id.name + '-%s' % (days)\n" -" res['amount'] = perday * days\n" -" res['type'] = 'deduction'\n" -" leave += days\n" -" total += perday * days\n" -"\n" -" slip_line_pool.create(cr, uid, res, context=context)\n" -" basic = basic - total\n" -" leaves = total\n" -" update.update({\n" -" 'basic':basic,\n" -" 'basic_before_leaves': round(basic_before_leaves),\n" -" 'leaves':total,\n" -" 'holiday_days':leave,\n" -" 'worked_days':working_day - leave,\n" -" 'working_days':working_day,\n" -" })\n" -" self.write(cr, uid, [slip.id], update, context=context)\n" -" return True\n" -"hr_payslip()\n" -"\n" -"class hr_payslip_line(osv.osv):\n" -" '''\n" -" Payslip Line\n" -" '''\n" -" \n" -" _name = 'hr.payslip.line'\n" -" _description = 'Payslip Line'\n" -"\n" -" def onchange_category(self, cr, uid, ids, category_id):\n" -" seq = 0\n" -" res = {\n" -" }\n" -" if category_id:\n" -" category = self.pool.get('hr.allounce.deduction.categoty" -msgstr "" - #. module: hr_payroll #: report:hr.payroll.register.sheet:0 #: field:hr.payslip,other_pay:0 @@ -331,6 +258,12 @@ msgstr "" msgid "Amount" msgstr "" +#. module: hr_payroll +#: code:addons/hr_payroll/hr_payroll.py:0 +#, python-format +msgid "Please check configuration of %s, payroll head is missing" +msgstr "" + #. module: hr_payroll #: selection:company.contribution,amount_type:0 msgid "Percentage" @@ -352,6 +285,13 @@ msgstr "" msgid "Employee Deduction" msgstr "" +#. module: hr_payroll +#: code:addons/hr_payroll/hr_payroll.py:0 +#, python-format +msgid "Variable Error: %s ' % (e)))\n" +" elif line.amount_type in ('fix', 'func" +msgstr "" + #. module: hr_payroll #: selection:hr.allounce.deduction.categoty,type:0 #: selection:hr.payslip.line,type:0 @@ -508,36 +448,6 @@ msgstr "" msgid "Employee PaySlip" msgstr "" -#. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:0 -#, python-format -msgid "Variable Error : %s ' % (e)))\n" -" amount = 0.0\n" -" if line.amount_type == 'per':\n" -" amount = amt * line.amount\n" -" elif line.amount_type == 'func':\n" -" amount = slip_line_pool.execute_function(cr, uid, line.id, amt, context)\n" -" elif line.amount_type == 'fix':\n" -" amount = line.amount\n" -" \n" -" if line.type == 'allowance':\n" -" allowance += amount\n" -" elif line.type == 'deduction':\n" -" deduction += amount\n" -" \n" -" vals[employee.id] = {\n" -" 'basic':basic, \n" -" 'advantages_gross':allowance, \n" -" 'gross':basic + allowance, \n" -" 'advantages_net':deduction,\n" -" 'net':basic + allowance - deduction\n" -" }\n" -" return vals\n" -" \n" -" _columns = {\n" -" 'passport_id':fields.many2one('hr.passport', 'Passport', required=False, domain=\"[('employee_id','=',active_id), ('address_id','=',address_home_id)]\", help=\"Employee Passport Information" -msgstr "" - #. module: hr_payroll #: field:hr.payslip,leaves:0 msgid "Leave Deductions" @@ -630,6 +540,11 @@ msgstr "" msgid "Email" msgstr "" +#. module: hr_payroll +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_payroll #: code:addons/hr_payroll/hr_payroll.py:0 #, python-format @@ -730,13 +645,6 @@ msgstr "" msgid "Fixed Amount" msgstr "" -#. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:0 -#, python-format -msgid "Variable Error : %s ' % (e)))\n" -" elif line.amount_type in ('fix', 'func" -msgstr "" - #. module: hr_payroll #: field:company.contribution.line,to_val:0 #: report:employees.salary:0 @@ -768,28 +676,16 @@ msgid "Pay Salary" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:0 -#, python-format -msgid "Please define bank account for the %s employee' % (slip.employee_id.name)))\n" -" pline = {\n" -" 'advice_id':pid,\n" -" 'name':slip.employee_id.bank_account_id.acc_number,\n" -" 'employee_id':slip.employee_id.id,\n" -" 'amount':slip.other_pay + slip.net,\n" -" 'bysal':slip.net\n" -" }\n" -" id = advice_line_pool.create(cr, uid, pline, context=context)\n" -"\n" -" self.write(cr, uid, ids, {'state':'confirm'}, context=context)\n" -" return True\n" -"\n" -" def process_sheet(self, cr, uid, ids, context=None):\n" -" slip_pool = self.pool.get('hr.payslip" +#: field:hr.payroll.advice.line,name:0 +msgid "Bank Account A/C" msgstr "" #. module: hr_payroll -#: field:hr.payroll.advice.line,name:0 -msgid "Bank Account A/C" +#: code:addons/hr_payroll/hr_payroll.py:0 +#, python-format +msgid "Variable Error: %s ' % (e)))\n" +"\n" +" if sal_type in ('gross', 'net" msgstr "" #. module: hr_payroll @@ -1214,27 +1110,6 @@ msgstr "" msgid "Label" msgstr "" -#. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:0 -#, python-format -msgid "Variable Error : %s ' % (e)))\n" -"\n" -" if not calculate:\n" -" continue\n" -"\n" -" percent = 0.0\n" -" value = 0.0\n" -" base = False\n" -" company_contrib = 0.0\n" -" base = line.category_id.base\n" -"\n" -" try:\n" -" #Please have a look at the configuration guide.\n" -" amt = eval(base, obj)\n" -" except Exception, e:\n" -" raise osv.except_osv(_('Variable Error !" -msgstr "" - #. module: hr_payroll #: view:hr.payroll.structure:0 #: view:hr.payslip:0 @@ -1340,6 +1215,11 @@ msgstr "" msgid "Current Month Date" msgstr "" +#. module: hr_payroll +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_payroll #: report:salary.structure:0 msgid "Salary" @@ -1518,6 +1398,27 @@ msgstr "" msgid "Wage Type" msgstr "" +#. module: hr_payroll +#: code:addons/hr_payroll/hr_payroll.py:0 +#, python-format +msgid "Variable Error: %s ' % (e)))\n" +"\n" +" if not calculate:\n" +" continue\n" +"\n" +" percent = 0.0\n" +" value = 0.0\n" +" base = False\n" +"# company_contrib = 0.0\n" +" base = line.category_id.base\n" +"\n" +" try:\n" +" #Please have a look at the configuration guide.\n" +" amt = eval(base, obj)\n" +" except Exception, e:\n" +" raise osv.except_osv(_('Variable Error !" +msgstr "" + #. module: hr_payroll #: report:hr.payroll.register.sheet:0 msgid "Net Sal." @@ -1659,6 +1560,12 @@ msgstr "" msgid "Payroll Configurtion" msgstr "" +#. module: hr_payroll +#: code:addons/hr_payroll/hr_payroll.py:0 +#, python-format +msgid "Please define bank account for the %s employee" +msgstr "" + #. module: hr_payroll #: field:hr.passport,date_issue:0 msgid "Passport Issue Date" @@ -1741,3 +1648,8 @@ msgstr "" msgid "Contributions" msgstr "" +#. module: hr_payroll +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + diff --git a/addons/hr_payroll_account/i18n/hr_payroll_account.pot b/addons/hr_payroll_account/i18n/hr_payroll_account.pot index b97e301dd86..f1b412911f6 100644 --- a/addons/hr_payroll_account/i18n/hr_payroll_account.pot +++ b/addons/hr_payroll_account/i18n/hr_payroll_account.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:32+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:32+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:12+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:12+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -27,88 +27,13 @@ msgid "Bank Journal" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Period is not defined for slip date %s'%slip.date))\n" -" period_id = search_periods[0]\n" -"\n" -" move = {\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'date': slip.date,\n" -" 'ref':slip.number,\n" -" 'narration': slip.name\n" -" }\n" -" move_id = move_pool.create(cr, uid, move, context=context)\n" -" self.create_voucher(cr, uid, [slip.id], slip.name, move_id)\n" -"\n" -" line = {\n" -" 'move_id':move_id,\n" -" 'name': \"By Basic Salary / \" + slip.employee_id.name,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.salary_account.id,\n" -" 'debit': slip.basic,\n" -" 'credit': 0.0,\n" -" 'quantity':slip.working_days,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'analytic_account_id': False,\n" -" 'ref':slip.number\n" -" }\n" -"\n" -" #Setting Analysis Account for Basic Salary\n" -" if slip.employee_id.analytic_account:\n" -" line['analytic_account_id'] = slip.employee_id.analytic_account.id\n" -"\n" -" move_line_id = movel_pool.create(cr, uid, line, context=context)\n" -" line_ids += [move_line_id]\n" -"\n" -" line = {\n" -" 'move_id':move_id,\n" -" 'name': \"To Basic Paysble Salary / \" + slip.employee_id.name,\n" -" 'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.employee_account.id,\n" -" 'debit': 0.0,\n" -" 'quantity':slip.working_days,\n" -" 'credit': slip.basic,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, line, context=context)]\n" -"\n" -" for line in slip.line_ids:\n" -" name = \"[%s] - %s / %s\" % (line.code, line.name, slip.employee_id.name)\n" -" amount = line.total\n" -"\n" -" if line.type == 'leaves':\n" -" continue\n" -"\n" -" rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" 'date': slip.date,\n" -" 'account_id': line.account_id.id,\n" -" 'debit': 0.0,\n" -" 'credit' : 0.0,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'analytic_account_id':False,\n" -" 'ref':slip.number,\n" -" 'quantity':1\n" -" }\n" -"\n" -" #Setting Analysis Account for Salary Slip Lines\n" -" if line.analytic_account_id:\n" -" rec['analytic_account_id'] = line.analytic_account_id.id\n" -" else:\n" -" rec['analytic_account_id'] = slip.deg_id.account_id.id\n" -"\n" -" if line.type == 'allowance' or line.type == 'otherpay':\n" -" rec['debit'] = amount\n" -" if not partner.property_account_payable:\n" -" raise osv.except_osv(_('Integrity Error !" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: hr_payroll_account +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: hr_payroll_account @@ -157,6 +82,11 @@ msgstr "" msgid "Salary Account" msgstr "" +#. module: hr_payroll_account +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payroll_register msgid "Payroll Register" @@ -175,21 +105,13 @@ msgstr "" #. module: hr_payroll_account #: code:addons/hr_payroll_account/hr_payroll_account.py:0 #, python-format -msgid "Please defined bank account for %s !' % (slip.employee_id.name)))\n" -"\n" -" if not slip.employee_id.bank_account_id.partner_id:\n" -" raise osv.except_osv(_('Integrity Error !" +msgid "Please Confirm all Expense Invoice appear for Reimbursement" msgstr "" #. module: hr_payroll_account #: code:addons/hr_payroll_account/hr_payroll_account.py:0 #, python-format -msgid "Please Confirm all Expense Invoice appear for Reimbursement" -msgstr "" - -#. module: hr_payroll_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +msgid "Please defined partner in bank account for %s !" msgstr "" #. module: hr_payroll_account @@ -197,6 +119,12 @@ msgstr "" msgid "Accounting Informations" msgstr "" +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Please defined bank account for %s !" +msgstr "" + #. module: hr_payroll_account #: model:ir.module.module,shortdesc:hr_payroll_account.module_meta_information msgid "Human Resource Payroll Accounting" @@ -290,15 +218,6 @@ msgstr "" msgid "Accounting vouchers" msgstr "" -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Fiscal Year is not defined for slip date %s'%slip.date))\n" -" search_periods = period_pool.search(cr,uid,[('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context)\n" -" if not search_periods:\n" -" raise osv.except_osv(_('Warning !" -msgstr "" - #. module: hr_payroll_account #: code:addons/hr_payroll_account/hr_payroll_account.py:0 #, python-format @@ -310,76 +229,19 @@ msgstr "" msgid "Employee Account" msgstr "" -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Period is not defined for slip date %s'%slip.date))\n" -" period_id = search_periods[0]\n" -" name = 'Payment of Salary to %s' % (slip.employee_id.name)\n" -" move = {\n" -" 'journal_id': slip.bank_journal_id.id,\n" -" 'period_id': period_id,\n" -" 'date': slip.date,\n" -" 'type':'bank_pay_voucher',\n" -" 'ref':slip.number,\n" -" 'narration': name\n" -" }\n" -" move_id = move_pool.create(cr, uid, move, context=context)\n" -" self.create_voucher(cr, uid, [slip.id], name, move_id)\n" -"\n" -" name = \"To %s account\" % (slip.employee_id.name)\n" -" ded_rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.property_bank_account.id,\n" -" 'debit': 0.0,\n" -" 'credit' : slip.total_pay,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, ded_rec, context=context)]\n" -" name = \"By %s account\" % (slip.employee_id.property_bank_account.name)\n" -" cre_rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" 'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': partner.property_account_payable.id,\n" -" 'debit': slip.total_pay,\n" -" 'credit' : 0.0,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, cre_rec, context=context)]\n" -"\n" -" other_pay = slip.other_pay\n" -" #Process all Reambuse Entries\n" -" for line in slip.line_ids:\n" -" if line.type == 'otherpay' and line.expanse_id.invoice_id:\n" -" if not line.expanse_id.invoice_id.move_id:\n" -" raise osv.except_osv(_('Warning !" -msgstr "" - #. module: hr_payroll_account #: field:hr.payslip.line,account_id:0 msgid "General Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Fiscal Year is not defined for slip date %s'%slip.date))\n" -" search_periods = period_pool.search(cr, uid, [('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context)\n" -" if not search_periods:\n" -" raise osv.except_osv(_('Warning !" +#: field:hr.payslip.account.move,sequence:0 +msgid "Sequence" msgstr "" #. module: hr_payroll_account -#: field:hr.payslip.account.move,sequence:0 -msgid "Sequence" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: hr_payroll_account @@ -399,6 +261,12 @@ msgstr "" msgid "Leave Type" msgstr "" +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Fiscal Year is not defined for slip date %s" +msgstr "" + #. module: hr_payroll_account #: field:hr.contibution.register,analytic_account_id:0 #: field:hr.employee,analytic_account:0 @@ -435,26 +303,14 @@ msgid "Year" msgstr "" #. module: hr_payroll_account -#: view:hr.employee:0 -msgid "Accounting" +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Period is not defined for slip date %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Please defined partner in bank account for %s !' % (slip.employee_id.name)))\n" -"\n" -" partner = slip.employee_id.bank_account_id.partner_id\n" -" partner_id = slip.employee_id.bank_account_id.partner_id.id\n" -"\n" -" period_id = False\n" -"\n" -" if slip.period_id:\n" -" period_id = slip.period_id.id\n" -" else:\n" -" fiscal_year_ids = fiscalyear_pool.search(cr, uid, [], context=context)\n" -" if not fiscal_year_ids:\n" -" raise osv.except_osv(_('Warning !" +#: view:hr.employee:0 +msgid "Accounting" msgstr "" #. module: hr_payroll_account diff --git a/addons/hr_recruitment/i18n/hr_recruitment.pot b/addons/hr_recruitment/i18n/hr_recruitment.pot index ddd677db7cd..a5a381c5efd 100644 --- a/addons/hr_recruitment/i18n/hr_recruitment.pot +++ b/addons/hr_recruitment/i18n/hr_recruitment.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:32+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:32+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:13+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -110,6 +110,11 @@ msgstr "" msgid "Day" msgstr "" +#. module: hr_recruitment +#: sql_constraint:crm.case.section:0 +msgid "The code of the sales team must be unique !" +msgstr "" + #. module: hr_recruitment #: view:hr.applicant:0 msgid "Contract Data" @@ -259,6 +264,11 @@ msgstr "" msgid "Job Description" msgstr "" +#. module: hr_recruitment +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: hr_recruitment #: view:hr.applicant:0 msgid "Send New Email" @@ -748,6 +758,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: hr_recruitment +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_recruitment #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:0 #, python-format @@ -876,6 +891,11 @@ msgstr "" msgid "Emails" msgstr "" +#. module: hr_recruitment +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 msgid "February" diff --git a/addons/hr_timesheet/i18n/hr_timesheet.pot b/addons/hr_timesheet/i18n/hr_timesheet.pot index 012987592bf..7e6dceb595a 100644 --- a/addons/hr_timesheet/i18n/hr_timesheet.pot +++ b/addons/hr_timesheet/i18n/hr_timesheet.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:33+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:33+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:14+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -44,8 +44,8 @@ msgid "Group By..." msgstr "" #. module: hr_timesheet -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: model:ir.actions.act_window,help:hr_timesheet.action_hr_timesheet_sign_in +msgid "Employees can encode their time spent on the different projects. A project is an analytic account and the time spent on a project generate costs on the analytic account. This feature allows to record at the same time the attendance and the timesheet." msgstr "" #. module: hr_timesheet @@ -99,9 +99,8 @@ msgid "Sign in" msgstr "" #. module: hr_timesheet -#: selection:hr.analytical.timesheet.employee,month:0 -#: selection:hr.analytical.timesheet.users,month:0 -msgid "avril" +#: view:hr.sign.in.project:0 +msgid "Employees can encode their time spent on the different projects they are assigned on. A project is an analytic account and the time spent on a project generates costs on the analytic account. This feature allows to record at the same time the attendance and the timesheet." msgstr "" #. module: hr_timesheet @@ -195,6 +194,11 @@ msgstr "" msgid "Sat" msgstr "" +#. module: hr_timesheet +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -202,6 +206,16 @@ msgstr "" msgid "Sun" msgstr "" +#. module: hr_timesheet +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: hr_timesheet +#: model:ir.actions.act_window,help:hr_timesheet.act_hr_timesheet_line_evry1_all_form +msgid "Working Hours allows you to log your working hours by project every day." +msgstr "" + #. module: hr_timesheet #: view:hr.analytical.timesheet.employee:0 #: view:hr.analytical.timesheet.users:0 @@ -209,8 +223,8 @@ msgid "Print" msgstr "" #. module: hr_timesheet -#: model:ir.model,name:hr_timesheet.model_hr_sign_out_project -msgid "Sign Out By Project" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: hr_timesheet @@ -346,6 +360,13 @@ msgstr "" msgid "Error: The default UOM and the purchase UOM must be in the same category." msgstr "" +#. module: hr_timesheet +#: code:addons/hr_timesheet/hr_timesheet.py:0 +#, python-format +msgid "Analytic journal is not defined for employee %s \n" +"Define an employee for the selected user and assign an analytic journal!" +msgstr "" + #. module: hr_timesheet #: view:hr.sign.in.project:0 msgid "(Keep empty for current time)" @@ -421,12 +442,6 @@ msgstr "" msgid "October" msgstr "" -#. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "No analytic account defined on the project.\nPlease set one or we can not automatically fill the timesheet." -msgstr "" - #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/hr_timesheet/report/users_timesheet.py:0 @@ -499,6 +514,11 @@ msgstr "" msgid "février" msgstr "" +#. module: hr_timesheet +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: hr_timesheet #: view:hr.analytic.timesheet:0 msgid "Information" @@ -515,6 +535,12 @@ msgstr "" msgid "Employee" msgstr "" +#. module: hr_timesheet +#: selection:hr.analytical.timesheet.employee,month:0 +#: selection:hr.analytical.timesheet.users,month:0 +msgid "avril" +msgstr "" + #. module: hr_timesheet #: field:hr.sign.in.project,server_date:0 #: field:hr.sign.out.project,server_date:0 @@ -595,8 +621,8 @@ msgid "Analytic line" msgstr "" #. module: hr_timesheet -#: view:hr.sign.in.project:0 -msgid "This Wizard will make Sign In/Out By Project" +#: model:ir.model,name:hr_timesheet.model_hr_sign_out_project +msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet @@ -604,12 +630,6 @@ msgstr "" msgid "Employees" msgstr "" -#. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "Analytic journal is not defined for employee %s \nDefine an employee for the selected user and assign an analytic journal!" -msgstr "" - #. module: hr_timesheet #: selection:hr.analytical.timesheet.employee,month:0 #: selection:hr.analytical.timesheet.users,month:0 @@ -623,6 +643,13 @@ msgstr "" msgid "April" msgstr "" +#. module: hr_timesheet +#: code:addons/hr_timesheet/hr_timesheet.py:0 +#, python-format +msgid "No analytic account defined on the project.\n" +"Please set one or we can not automatically fill the timesheet." +msgstr "" + #. module: hr_timesheet #: selection:hr.analytical.timesheet.employee,month:0 #: selection:hr.analytical.timesheet.users,month:0 diff --git a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot index 826a84aacc0..15acc8ba908 100644 --- a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot +++ b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:33+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:33+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:15+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -47,6 +47,11 @@ msgstr "" msgid "Force to use a specific product" msgstr "" +#. module: hr_timesheet_invoice +#: model:ir.actions.act_window,help:hr_timesheet_invoice.action_hr_analytic_timesheet_open_tree +msgid "This lists show you every task work you can invoice to the customer. Select the lines in order to generate the invoices automatically." +msgstr "" + #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 msgid " 7 Days " @@ -147,6 +152,19 @@ msgstr "" msgid "Random Timesheets Lines" msgstr "" +#. module: hr_timesheet_invoice +#: view:random.timesheet.lines:0 +#: field:random.timesheet.lines,user_id:0 +#: field:report.random.timesheet,user_id:0 +#: view:report.timesheet.line:0 +#: field:report.timesheet.line,user_id:0 +#: field:report_timesheet.account,user_id:0 +#: field:report_timesheet.account.date,user_id:0 +#: field:report_timesheet.invoice,user_id:0 +#: field:report_timesheet.user,user_id:0 +msgid "User" +msgstr "" + #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,account_id:0 msgid "Project" @@ -188,6 +206,11 @@ msgstr "" msgid "Analytic account to close" msgstr "" +#. module: hr_timesheet_invoice +#: model:ir.actions.act_window,help:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form +msgid "OpenERP allows you to create default invoicing types. You could need to regularly make discounts based on a specific contract or agreement with a customer. From this menu, you can create additional default types of invoicing that will speed up your invoicing." +msgstr "" + #. module: hr_timesheet_invoice #: view:random.timesheet.lines:0 #: view:report.timesheet.line:0 @@ -263,12 +286,6 @@ msgstr "" msgid "hr.timesheet.analytic.cost.ledger" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the Partner or Customer and Sale Pricelist fields in the Analytic Account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_create_final msgid "Final Invoice" @@ -297,6 +314,11 @@ msgstr "" msgid "Analytic account" msgstr "" +#. module: hr_timesheet_invoice +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: hr_timesheet_invoice #: view:account.analytic.account:0 #: field:report.analytic.account.close,state:0 @@ -334,6 +356,11 @@ msgstr "" msgid "Name" msgstr "" +#. module: hr_timesheet_invoice +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.act_acc_analytic_acc_2_report_acc_analytic_line_to_invoice msgid "Lines to Invoice" @@ -410,13 +437,6 @@ msgstr "" msgid "Types of Invoicing" msgstr "" -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field '\n" -" 'in the analytic account:\n%s" -msgstr "" - #. module: hr_timesheet_invoice #: report:account.analytic.profit:0 msgid "Theorical" @@ -495,16 +515,8 @@ msgid "Currency" msgstr "" #. module: hr_timesheet_invoice -#: view:random.timesheet.lines:0 -#: field:random.timesheet.lines,user_id:0 -#: field:report.random.timesheet,user_id:0 -#: view:report.timesheet.line:0 -#: field:report.timesheet.line,user_id:0 -#: field:report_timesheet.account,user_id:0 -#: field:report_timesheet.account.date,user_id:0 -#: field:report_timesheet.invoice,user_id:0 -#: field:report_timesheet.user,user_id:0 -msgid "User" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: hr_timesheet_invoice @@ -677,6 +689,13 @@ msgstr "" msgid "Credit" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 +#, python-format +msgid "Please fill in the partner and pricelist field in the analytic account:\n" +"%s" +msgstr "" + #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 #, python-format @@ -797,6 +816,13 @@ msgstr "" msgid "Billing Data" msgstr "" +#. module: hr_timesheet_invoice +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 +#, python-format +msgid "Please fill in the Partner or Customer and Sale Pricelist fields in the Analytic Account:\n" +"%s" +msgstr "" + #. module: hr_timesheet_invoice #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" diff --git a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot index ecbb2691eb5..ec3f4abccb7 100644 --- a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot +++ b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-11-15 18:44:53+0000\n" -"PO-Revision-Date: 2010-11-15 18:44:53+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:16+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/html_view/i18n/html_view.pot b/addons/html_view/i18n/html_view.pot index 3d75f999fda..70e8dfbe535 100644 --- a/addons/html_view/i18n/html_view.pot +++ b/addons/html_view/i18n/html_view.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:34+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:34+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:17+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: html_view +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: html_view #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -30,6 +35,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: html_view +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: html_view #: field:html.view,comp_id:0 msgid "Company" @@ -66,6 +76,11 @@ msgstr "" msgid "html.view" msgstr "" +#. module: html_view +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: html_view #: field:html.view,name:0 msgid "Name" diff --git a/addons/idea/i18n/idea.pot b/addons/idea/i18n/idea.pot index 9cbc7d029e5..a403ea399e9 100644 --- a/addons/idea/i18n/idea.pot +++ b/addons/idea/i18n/idea.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:35+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:35+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:17+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,13 +20,6 @@ msgstr "" msgid "If True creator of the idea will be visible to others" msgstr "" -#. module: idea -#: code:addons/idea/wizard/idea_post_vote.py:0 -#, python-format -msgid "Idea must be in \\n" -"\'Open\' state before vote for that idea." -msgstr "" - #. module: idea #: model:ir.actions.act_window,name:idea.action_idea_select msgid "Idea select" @@ -79,6 +72,12 @@ msgstr "" msgid "March" msgstr "" +#. module: idea +#: code:addons/idea/wizard/idea_post_vote.py:0 +#, python-format +msgid "Idea must be in 'Open' state before vote for that idea." +msgstr "" + #. module: idea #: view:report.vote:0 #: field:report.vote,day:0 @@ -199,6 +198,11 @@ msgstr "" msgid "Not Voted" msgstr "" +#. module: idea +#: sql_constraint:idea.category:0 +msgid "The name of the category must be unique" +msgstr "" + #. module: idea #: model:ir.model,name:idea.model_idea_select msgid "select idea" @@ -219,6 +223,11 @@ msgstr "" msgid "Next" msgstr "" +#. module: idea +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: idea #: view:idea.idea:0 #: field:idea.idea,state:0 @@ -227,6 +236,11 @@ msgstr "" msgid "State" msgstr "" +#. module: idea +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: idea #: selection:idea.idea,my_vote:0 #: selection:idea.post.vote,vote:0 @@ -543,6 +557,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: idea +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: idea #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" diff --git a/addons/knowledge/i18n/knowledge.pot b/addons/knowledge/i18n/knowledge.pot index 185d2571d1b..f6561ead15f 100644 --- a/addons/knowledge/i18n/knowledge.pot +++ b/addons/knowledge/i18n/knowledge.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:35+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:35+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:18+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Knowledge Management System" msgstr "" +#. module: knowledge +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: knowledge #: constraint:ir.ui.menu:0 msgid "Error ! You can not create recursive Menu." @@ -55,6 +60,11 @@ msgstr "" msgid "Knowledge" msgstr "" +#. module: knowledge +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: knowledge #: help:knowledge.installer,document_ftp:0 msgid "Provides an FTP access to your OpenERP's Document Management System. It lets you access attachments and virtual documents through a standard FTP client." @@ -131,6 +141,11 @@ msgstr "" msgid "Lets you create wiki pages and page groups in order to keep track of business knowledge and share it with and between your employees." msgstr "" +#. module: knowledge +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: knowledge #: view:knowledge.installer:0 msgid "Content templates" diff --git a/addons/l10n_be/i18n/l10n_be.pot b/addons/l10n_be/i18n/l10n_be.pot index bc8cc6236c3..adca5d06fb3 100644 --- a/addons/l10n_be/i18n/l10n_be.pot +++ b/addons/l10n_be/i18n/l10n_be.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:35+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:35+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:19+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -156,6 +156,11 @@ msgstr "" msgid "Régime Extra-Communautaire" msgstr "" +#. module: l10n_be +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_view msgid "Vue" @@ -179,6 +184,11 @@ msgstr "" msgid "Save" msgstr "" +#. module: l10n_be +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: l10n_be #: constraint:account.account.template:0 msgid "Error ! You can not create recursive account templates." @@ -371,6 +381,11 @@ msgstr "" msgid "Close" msgstr "" +#. module: l10n_be +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: l10n_be #: field:partner.vat.intra,period_ids:0 msgid "Period (s)" diff --git a/addons/l10n_de/i18n/l10n_de.pot b/addons/l10n_de/i18n/l10n_de.pot old mode 100755 new mode 100644 index 6e69243e21b..3fd14b3392b --- a/addons/l10n_de/i18n/l10n_de.pot +++ b/addons/l10n_de/i18n/l10n_de.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.6\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-04-30 16:01:51+0000\n" -"PO-Revision-Date: 2010-04-30 16:01:51+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:24+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,61 +16,68 @@ msgstr "" "Plural-Forms: \n" #. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_view -msgid "Ansicht" +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr04 +msgid "Kunde Ausland" msgstr "" #. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_receivable -msgid "Forderungen/Debitoren" +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_sale_skr03 +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_sale_skr04 +msgid "Kunde EU (ohne USt-ID)" msgstr "" #. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_payable -msgid "Verbindlichkeiten/Kreditoren" -msgstr "" - - -#. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_cash -msgid "Kasse/Bank" +#: constraint:account.account.template:0 +msgid "Error ! You can not create recursive account templates." msgstr "" #. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_income -msgid "Ertrag" -msgstr "" - - -#. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_expense -msgid "Aufwand" -msgstr "" - - -#. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_tax -msgid "Steuern" -msgstr "" - - -#. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_equity -msgid "Eigenkapital" +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_purchase_skr03 +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_purchase_skr04 +msgid "Lieferant Ausland" msgstr "" #. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_asset -msgid "Vermögen" +#: model:ir.module.module,shortdesc:l10n_de.module_meta_information +msgid "Deutschland - SKR03 and SKR04" msgstr "" #. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_liability -msgid "Verbindlichkeiten" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: l10n_de -#: model:account.account.type,name:l10n_de.account.account_type_other -msgid "Sonstige" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: l10n_de +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_purchase_skr03 +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_purchase_skr04 +msgid "Lieferant EU Unternehmen (mit USt-ID)" +msgstr "" + +#. module: l10n_de +#: model:ir.module.module,description:l10n_de.module_meta_information +msgid "Dieses Modul beinhaltet einen deutschen Kontenrahmen basierend auf dem SKR03." +msgstr "" + +#. module: l10n_de +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_purchase_skr03 +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_purchase_skr04 +msgid "Lieferant EU (ohne Ust-ID)" +msgstr "" + +#. module: l10n_de +#: constraint:account.tax.code.template:0 +msgid "Error ! You can not create recursive Tax Codes." +msgstr "" + +#. module: l10n_de +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_sale_skr03 +#: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_sale_skr04 +msgid "Kunde EU Unternehmen (mit USt-ID)" msgstr "" diff --git a/addons/l10n_es/i18n/l10n_es.pot b/addons/l10n_es/i18n/l10n_es.pot index a877eaa2573..af98749aacf 100644 --- a/addons/l10n_es/i18n/l10n_es.pot +++ b/addons/l10n_es/i18n/l10n_es.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.6\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-11-23 08:58:57+0000\n" -"PO-Revision-Date: 2009-11-23 08:58:57+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:27+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,14 +15,117 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_extra +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_extra +msgid "Régimen Extracomunitario" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_irpf15 +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_irpf15 +msgid "Retención IRPF 15%" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.stock +msgid "Existencias" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_recargo +#: model:account.fiscal.position.template,name:l10n_es.fp_recargo +msgid "Recargo de Equivalencia" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.terceros - rec +msgid "Terceros - A Cobrar" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.terceros +msgid "Terceros" +msgstr "" + +#. module: l10n_es +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_irpf1 +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_irpf1 +msgid "Retención IRPF 1%" +msgstr "" + #. module: l10n_es #: constraint:account.account.template:0 msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: l10n_es +#: model:account.account.type,name:l10n_es.terceros - pay +msgid "Terceros - A Pagar" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.gastos_neto +msgid "Gastos patrimonio neto" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.tax +msgid "Impuestos" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_irpf7 +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_irpf7 +msgid "Retención IRPF 7%" +msgstr "" + +#. module: l10n_es +#: constraint:account.tax.code.template:0 +msgid "Error ! You can not create recursive Tax Codes." +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_nacional +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_nacional +msgid "Régimen Nacional" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.inmo +msgid "Inmobilizado" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_irpf18 +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_irpf18 +msgid "Retención IRPF 18%" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.ingresos +msgid "Ingresos" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.view +msgid "View" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_intra +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_intra +msgid "Régimen Intracomunitario" +msgstr "" + #. module: l10n_es #: model:ir.module.module,description:l10n_es.module_meta_information -msgid "Spanish General Chart of Accounts 2008\n" +msgid "Spanish Charts of Accounts (PGCE 2008)\n" "\n" "* Defines the following chart of account templates:\n" " * Spanish General Chart of Accounts 2008.\n" @@ -36,18 +139,39 @@ msgid "Spanish General Chart of Accounts 2008\n" msgstr "" #. module: l10n_es -#: constraint:account.tax.code.template:0 -msgid "Error ! You can not create recursive Tax Codes." -msgstr "" - -#. module: l10n_es -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: l10n_es #: model:ir.module.module,shortdesc:l10n_es.module_meta_information -msgid "Spain - Chart of Accounts 2008" +msgid "Spanish Charts of Accounts (PGCE 2008)" msgstr "" +#. module: l10n_es +#: model:account.account.type,name:l10n_es.ingresos_neto +msgid "Ingresos patrimonio neto" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.financieras +msgid "Financieras" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_irpf19 +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_irpf19 +msgid "Retención IRPF 19%" +msgstr "" + +#. module: l10n_es +#: model:account.fiscal.position.template,name:l10n_es.fp_irpf2 +#: model:account.fiscal.position.template,name:l10n_es.fp_pymes_irpf2 +msgid "Retención IRPF 2%" +msgstr "" + +#. module: l10n_es +#: model:account.account.type,name:l10n_es.gastos +msgid "Gastos" +msgstr "" diff --git a/addons/l10n_fr/i18n/l10n_fr.pot b/addons/l10n_fr/i18n/l10n_fr.pot index f35906dcf92..c6f5b2b41cf 100644 --- a/addons/l10n_fr/i18n/l10n_fr.pot +++ b/addons/l10n_fr/i18n/l10n_fr.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:38+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:38+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:29+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,6 +49,11 @@ msgstr "" msgid "France" msgstr "" +#. module: l10n_fr +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_asset msgid "Asset" @@ -76,8 +81,8 @@ msgid "Report for l10n_fr" msgstr "" #. module: l10n_fr -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_2 -msgid "Zone Euro" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: l10n_fr @@ -100,6 +105,11 @@ msgstr "" msgid "Payable" msgstr "" +#. module: l10n_fr +#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_2 +msgid "Zone Euro" +msgstr "" + #. module: l10n_fr #: view:account.cdr.report:0 msgid "Compte de resultant" @@ -171,6 +181,11 @@ msgstr "" msgid "Comptes spéciaux" msgstr "" +#. module: l10n_fr +#: sql_constraint:l10n.fr.report:0 +msgid "The code report must be unique !" +msgstr "" + #. module: l10n_fr #: field:account.bilan.report,fiscalyear_id:0 #: field:account.cdr.report,fiscalyear_id:0 @@ -192,6 +207,11 @@ msgstr "" msgid "Hors Euro" msgstr "" +#. module: l10n_fr +#: sql_constraint:l10n.fr.line:0 +msgid "The variable name must be unique !" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_stocks msgid "Actif circulant" @@ -249,3 +269,8 @@ msgstr "" msgid "Variable Name" msgstr "" +#. module: l10n_fr +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/l10n_gr/i18n/l10n_gr.pot b/addons/l10n_gr/i18n/l10n_gr.pot index 94f41184363..0c6b2657f6b 100644 --- a/addons/l10n_gr/i18n/l10n_gr.pot +++ b/addons/l10n_gr/i18n/l10n_gr.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-06-23 21:05:14+0000\n" -"PO-Revision-Date: 2010-06-23 21:05:14+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:30+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" msgid "Receivable" msgstr "" +#. module: l10n_gr +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: l10n_gr #: model:ir.module.module,description:l10n_gr.module_meta_information msgid "This is the base module to manage the accounting chart for Greece." @@ -31,13 +36,13 @@ msgid "Error ! You can not create recursive account templates." msgstr "" #. module: l10n_gr -#: model:account.account.type,name:l10n_gr.account_type_income -msgid "Income" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: l10n_gr -#: model:account.account.type,name:l10n_gr.account_type_equity -msgid "Equity" +#: model:account.account.type,name:l10n_gr.account_type_income +msgid "Income" msgstr "" #. module: l10n_gr @@ -72,8 +77,8 @@ msgid "Other" msgstr "" #. module: l10n_gr -#: constraint:account.account.type:0 -msgid "Error ! You can not create recursive types." +#: model:account.account.type,name:l10n_gr.account_type_equity +msgid "Equity" msgstr "" #. module: l10n_gr diff --git a/addons/l10n_gt/i18n/l10n_gt.pot b/addons/l10n_gt/i18n/l10n_gt.pot index e9e95bf6ec6..25e5ac3ba19 100644 --- a/addons/l10n_gt/i18n/l10n_gt.pot +++ b/addons/l10n_gt/i18n/l10n_gt.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-11-04 01:35:54+0000\n" -"PO-Revision-Date: 2010-11-04 01:35:54+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:30+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: l10n_gt +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: l10n_gt +#: model:account.account.type,name:l10n_gt.cuenta_vista +msgid "Vista" +msgstr "" + #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_cxp msgid "Cuentas por Pagar" @@ -36,18 +46,13 @@ msgid "Agrega una nomenclatura contable para Guatemala. También icluye impuesto msgstr "" #. module: l10n_gt -#: constraint:account.tax.code.template:0 -msgid "Error ! You can not create recursive Tax Codes." +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: l10n_gt -#: model:account.account.type,name:l10n_gt.cuenta_gastos -msgid "Gastos" -msgstr "" - -#. module: l10n_gt -#: model:account.account.type,name:l10n_gt.cuenta_vista -msgid "Vista" +#: model:account.account.type,name:l10n_gt.cuenta_capital +msgid "Capital" msgstr "" #. module: l10n_gt @@ -61,8 +66,8 @@ msgid "Ingresos" msgstr "" #. module: l10n_gt -#: model:account.account.type,name:l10n_gt.cuenta_activo -msgid "Activo" +#: model:account.account.type,name:l10n_gt.cuenta_gastos +msgid "Gastos" msgstr "" #. module: l10n_gt @@ -71,16 +76,17 @@ msgid "Generar la nomenclatura contable a partir de un modelo. Deberá seleccio msgstr "" #. module: l10n_gt -#: model:account.account.type,name:l10n_gt.cuenta_capital -msgid "Capital" +#: constraint:account.tax.code.template:0 +msgid "Error ! You can not create recursive Tax Codes." msgstr "" #. module: l10n_gt #: model:ir.module.module,shortdesc:l10n_gt.module_meta_information -msgid "Guatemala - minimal" +msgid "Guatemala - Plan contable general" msgstr "" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_efectivo msgid "Efectivo" msgstr "" + diff --git a/addons/l10n_in/i18n/l10n_in.pot b/addons/l10n_in/i18n/l10n_in.pot index 70705608a6f..9002c0a3edc 100644 --- a/addons/l10n_in/i18n/l10n_in.pot +++ b/addons/l10n_in/i18n/l10n_in.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:38+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:38+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:30+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:30+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: l10n_in +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view msgid "Asset View" @@ -40,6 +45,11 @@ msgstr "" msgid "Income View" msgstr "" +#. module: l10n_in +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "" + #. module: l10n_in #: model:ir.actions.todo,note:l10n_in.config_call_account_template_in_minimal msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" @@ -51,6 +61,16 @@ msgstr "" msgid "Liability" msgstr "" +#. module: l10n_in +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: l10n_in +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" +msgstr "" + #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset1 msgid "Asset" diff --git a/addons/l10n_lu/i18n/l10n_lu.pot b/addons/l10n_lu/i18n/l10n_lu.pot index 04275f30ce6..b165cb07067 100644 --- a/addons/l10n_lu/i18n/l10n_lu.pot +++ b/addons/l10n_lu/i18n/l10n_lu.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:38+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:38+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:32+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,9 +36,8 @@ msgid "Luxembourg" msgstr "" #. module: l10n_lu -#: code:addons/l10n_lu/wizard/print_vat.py:0 -#, python-format -msgid "pdf not created !" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: l10n_lu @@ -86,6 +85,11 @@ msgstr "" msgid "Error ! You can not create recursive Tax Codes." msgstr "" +#. module: l10n_lu +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: l10n_lu #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -111,6 +115,12 @@ msgstr "" msgid "View" msgstr "" +#. module: l10n_lu +#: code:addons/l10n_lu/wizard/print_vat.py:0 +#, python-format +msgid "pdf not created !" +msgstr "" + #. module: l10n_lu #: field:vat.declaration.report,period_id:0 msgid "Period" @@ -138,3 +148,8 @@ msgstr "" msgid "Créances" msgstr "" +#. module: l10n_lu +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/l10n_ma/i18n/l10n_ma.pot b/addons/l10n_ma/i18n/l10n_ma.pot index 75e994bf4a5..0eafba9c54d 100644 --- a/addons/l10n_ma/i18n/l10n_ma.pot +++ b/addons/l10n_ma/i18n/l10n_ma.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.6\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-11-25 15:53:51+0000\n" -"PO-Revision-Date: 2009-11-25 15:53:51+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:33+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,43 @@ msgstr "" "Plural-Forms: \n" #. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_receivable -msgid "Receivable" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_stocks -msgid "stocks" +#: model:ir.module.module,description:l10n_ma.module_meta_information +msgid "Ce Module charge le modèle du plan de comptes standard Marocain et permet de générer les états comptables aux normes marocaines (Bilan, CPC (comptes de produits et charges), balance générale à 6 colonnes, Grand livre cumulatif...). L'intégration comptable a été validé avec l'aide du Cabinet d'expertise comptable Seddik au cours du troisième trimestre 2010" msgstr "" #. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_dettes -msgid "dettes long terme" +#: model:account.account.type,name:l10n_ma.cpt_type_imm +msgid "Immobilisations" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_ach +msgid "Charges Achats" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_tpl +msgid "Titres de placement" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_dlt +msgid "Dettes à long terme" +msgstr "" + +#. module: l10n_ma +#: model:account.journal,name:l10n_ma.journal_vente +msgid "Journal des Ventes" +msgstr "" + +#. module: l10n_ma +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: l10n_ma @@ -36,49 +61,23 @@ msgid "Error ! You can not create recursive account templates." msgstr "" #. module: l10n_ma -#: model:ir.module.module,shortdesc:l10n_ma.module_meta_information -msgid "Maroc Plan comptable général pour les sociétés" +#: model:account.account.type,name:l10n_ma.cpt_type_dct +msgid "Dettes à court terme" msgstr "" #. module: l10n_ma -#: model:ir.module.module,description:l10n_ma.module_meta_information -msgid "This is the module to manage the accounting chart for Morocco in Open ERP." +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" msgstr "" #. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_tax -msgid "Tax" +#: model:account.journal,name:l10n_ma.journal_divers +msgid "Journal des Opérations Diverses" msgstr "" #. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_cash -msgid "Cash" -msgstr "" - -#. module: l10n_ma -#: model:ir.actions.todo,note:l10n_ma.config_call_account_template_morocco -msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" -" This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." -msgstr "" - -#. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_immobilisations -msgid "immobilisations" -msgstr "" - -#. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_payable -msgid "Payable" -msgstr "" - -#. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_asset -msgid "Asset" -msgstr "" - -#. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_income -msgid "Income" +#: field:l10n.ma.line,report_id:0 +msgid "Report" msgstr "" #. module: l10n_ma @@ -87,12 +86,123 @@ msgid "Error ! You can not create recursive Tax Codes." msgstr "" #. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_expense -msgid "Expense" +#: model:account.account.type,name:l10n_ma.cpt_type_stk +msgid "Stocks" msgstr "" #. module: l10n_ma -#: model:account.account.type,name:l10n_ma.account_type_view -msgid "View" +#: field:l10n.ma.line,code:0 +msgid "Variable Name" +msgstr "" + +#. module: l10n_ma +#: field:l10n.ma.line,definition:0 +msgid "Definition" +msgstr "" + +#. module: l10n_ma +#: model:ir.module.module,shortdesc:l10n_ma.module_meta_information +msgid "Maroc - Plan Comptable Général" +msgstr "" + +#. module: l10n_ma +#: field:l10n.ma.line,name:0 +#: field:l10n.ma.report,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_vue +msgid "Vue" +msgstr "" + +#. module: l10n_ma +#: field:l10n.ma.report,line_ids:0 +msgid "Lines" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_tax +msgid "Taxes" +msgstr "" + +#. module: l10n_ma +#: model:account.journal,name:l10n_ma.journal_achat +msgid "Journal des Achats" +msgstr "" + +#. module: l10n_ma +#: model:ir.model,name:l10n_ma.model_l10n_ma_line +msgid "Report Lines for l10n_ma" +msgstr "" + +#. module: l10n_ma +#: model:account.journal,name:l10n_ma.journal_caisse +msgid "Journal de Caisse" +msgstr "" + +#. module: l10n_ma +#: model:account.journal,name:l10n_ma.journal_banque +msgid "Journal de Banque" +msgstr "" + +#. module: l10n_ma +#: model:ir.model,name:l10n_ma.model_l10n_ma_report +msgid "Report for l10n_ma_kzc" +msgstr "" + +#. module: l10n_ma +#: field:l10n.ma.report,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_per +msgid "Charges Personnel" +msgstr "" + +#. module: l10n_ma +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_liq +msgid "Liquidité" +msgstr "" + +#. module: l10n_ma +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_pdt +msgid "Produits" +msgstr "" + +#. module: l10n_ma +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_reg +msgid "Régularisation" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_cre +msgid "Créances" +msgstr "" + +#. module: l10n_ma +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: l10n_ma +#: model:account.account.type,name:l10n_ma.cpt_type_aut +msgid "Charges Autres" msgstr "" diff --git a/addons/l10n_uk/i18n/l10n_uk.pot b/addons/l10n_uk/i18n/l10n_uk.pot index a72c864ee35..5eee54c18a5 100644 --- a/addons/l10n_uk/i18n/l10n_uk.pot +++ b/addons/l10n_uk/i18n/l10n_uk.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:36+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:36+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:36+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,6 +46,11 @@ msgstr "" msgid "Income View" msgstr "" +#. module: l10n_uk +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_income msgid "Income" @@ -72,8 +77,8 @@ msgid "Payable" msgstr "" #. module: l10n_uk -#: model:ir.module.module,shortdesc:l10n_uk.module_meta_information -msgid "United Kingdom - minimal" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: l10n_uk @@ -101,6 +106,11 @@ msgstr "" msgid "Expense" msgstr "" +#. module: l10n_uk +#: model:ir.module.module,shortdesc:l10n_uk.module_meta_information +msgid "United Kingdom - minimal" +msgstr "" + #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_view msgid "View" diff --git a/addons/lunch/i18n/lunch.pot b/addons/lunch/i18n/lunch.pot index bb37a72ee03..cfe2b5e32e2 100644 --- a/addons/lunch/i18n/lunch.pot +++ b/addons/lunch/i18n/lunch.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:39+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:39+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:37+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -68,6 +68,11 @@ msgstr "" msgid "March" msgstr "" +#. module: lunch +#: report:lunch.order:0 +msgid "Total :" +msgstr "" + #. module: lunch #: field:report.lunch.amount,day:0 #: view:report.lunch.order:0 @@ -144,6 +149,11 @@ msgstr "" msgid "Search Lunch Order" msgstr "" +#. module: lunch +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: lunch #: field:lunch.order,state:0 msgid "State" @@ -159,11 +169,21 @@ msgstr "" msgid "Box Amount by User" msgstr "" +#. module: lunch +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: lunch #: field:lunch.cashmove,create_date:0 msgid "Creation Date" msgstr "" +#. module: lunch +#: report:lunch.order:0 +msgid "Name/Date" +msgstr "" + #. module: lunch #: field:lunch.order,descript:0 msgid "Description Order" @@ -349,7 +369,6 @@ msgstr "" #. module: lunch #: view:lunch.cashmove:0 -#: report:lunch.order:0 #: field:lunch.order,date:0 msgid "Date" msgstr "" @@ -366,11 +385,6 @@ msgstr "" msgid "October" msgstr "" -#. module: lunch -#: report:lunch.order:0 -msgid "Total:" -msgstr "" - #. module: lunch #: selection:report.lunch.amount,month:0 #: selection:report.lunch.order,month:0 @@ -415,6 +429,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: lunch +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_cashbox_form msgid " Cashboxes " @@ -488,7 +507,6 @@ msgstr "" #. module: lunch #: field:lunch.cashbox,name:0 #: field:lunch.category,name:0 -#: report:lunch.order:0 #: field:lunch.product,name:0 #: field:report.lunch.order,box_name:0 msgid "Name" diff --git a/addons/mail_gateway/i18n/mail_gateway.pot b/addons/mail_gateway/i18n/mail_gateway.pot index 60e05233bb2..06e582e165c 100644 --- a/addons/mail_gateway/i18n/mail_gateway.pot +++ b/addons/mail_gateway/i18n/mail_gateway.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:39+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:39+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:37+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,11 +32,6 @@ msgstr "" msgid "From" msgstr "" -#. module: mail_gateway -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - #. module: mail_gateway #: view:mailgate.message:0 msgid "Open Attachments" @@ -89,8 +84,8 @@ msgid "Details" msgstr "" #. module: mail_gateway -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: mail_gateway @@ -113,6 +108,11 @@ msgstr "" msgid "Email Followers" msgstr "" +#. module: mail_gateway +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: mail_gateway #: model:ir.model,name:mail_gateway.model_res_partner #: view:mailgate.message:0 @@ -148,6 +148,11 @@ msgstr "" msgid "Email Gateway System" msgstr "" +#. module: mail_gateway +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: mail_gateway #: field:mailgate.message,date:0 msgid "Date" @@ -163,6 +168,11 @@ msgstr "" msgid "Partner Name" msgstr "" +#. module: mail_gateway +#: model:ir.actions.act_window,name:mail_gateway.action_view_mailgate_thread +msgid "Mailgateway Threads" +msgstr "" + #. module: mail_gateway #: code:addons/mail_gateway/mail_gateway.py:0 #, python-format @@ -177,6 +187,12 @@ msgstr "" msgid "Emails" msgstr "" +#. module: mail_gateway +#: code:addons/mail_gateway/mail_gateway.py:0 +#, python-format +msgid "Stage" +msgstr "" + #. module: mail_gateway #: field:mailgate.message,email_to:0 msgid "To" @@ -198,6 +214,7 @@ msgid "Mailgateway Message" msgstr "" #. module: mail_gateway +#: model:ir.actions.act_window,name:mail_gateway.action_view_mail_message #: field:mailgate.thread,message_ids:0 msgid "Messages" msgstr "" @@ -326,13 +343,12 @@ msgid "Owner" msgstr "" #. module: mail_gateway -#: model:ir.actions.act_window,name:mail_gateway.action_view_mailgate_thread -msgid "Mailgateway Threads" +#: code:addons/mail_gateway/mail_gateway.py:0 +#, python-format +msgid "Changed Stage to: " msgstr "" #. module: mail_gateway -#: model:ir.actions.act_window,name:mail_gateway.action_view_mail_message -#: model:ir.ui.menu,name:mail_gateway.menu_email_gateway_form #: view:mailgate.message:0 msgid "Message" msgstr "" @@ -343,6 +359,11 @@ msgstr "" msgid "Subject" msgstr "" +#. module: mail_gateway +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: mail_gateway #: help:mailgate.message,ref_id:0 msgid "Message Id in Email Server." diff --git a/addons/marketing/i18n/marketing.pot b/addons/marketing/i18n/marketing.pot index 74d0bf09cf2..10e545d5f6f 100644 --- a/addons/marketing/i18n/marketing.pot +++ b/addons/marketing/i18n/marketing.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:39+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:39+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:38+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: marketing +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: marketing #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -61,8 +66,18 @@ msgid "Helps you to design templates of emails and integrate them in your differ msgstr "" #. module: marketing -#: model:ir.model,name:marketing.model_marketing_installer -msgid "marketing.installer" +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: marketing +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: marketing +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: marketing @@ -90,3 +105,8 @@ msgstr "" msgid "Helps you to perform segmentation of partners and design segmentation questionnaires" msgstr "" +#. module: marketing +#: model:ir.model,name:marketing.model_marketing_installer +msgid "marketing.installer" +msgstr "" + diff --git a/addons/marketing_campaign/i18n/marketing_campaign.pot b/addons/marketing_campaign/i18n/marketing_campaign.pot index 28c4e16b6e0..8f2a4dde22c 100644 --- a/addons/marketing_campaign/i18n/marketing_campaign.pot +++ b/addons/marketing_campaign/i18n/marketing_campaign.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:40+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:40+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:38+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -44,8 +44,8 @@ msgid "The campaign cannot be started: it doesn't have any starting activity (or msgstr "" #. module: marketing_campaign -#: selection:marketing.campaign.transition,trigger:0 -msgid "Time" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: marketing_campaign @@ -286,6 +286,11 @@ msgstr "" msgid "Don't delete workitems" msgstr "" +#. module: marketing_campaign +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: marketing_campaign #: view:campaign.analysis:0 #: field:campaign.analysis,state:0 @@ -511,6 +516,12 @@ msgstr "" msgid "Campaign Statistics" msgstr "" +#. module: marketing_campaign +#: view:marketing.campaign.workitem:0 +#: field:marketing.campaign.workitem,res_id:0 +msgid "Resource ID" +msgstr "" + #. module: marketing_campaign #: help:marketing.campaign.activity,server_action_id:0 msgid "The action to perform when this activity is activated" @@ -761,6 +772,11 @@ msgstr "" msgid "Synchronize Manually" msgstr "" +#. module: marketing_campaign +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: marketing_campaign #: code:addons/marketing_campaign/marketing_campaign.py:0 #, python-format @@ -768,9 +784,13 @@ msgid "The campaign cannot be marked as done before all segments are done" msgstr "" #. module: marketing_campaign -#: view:marketing.campaign.workitem:0 -#: field:marketing.campaign.workitem,res_id:0 -msgid "Resource ID" +#: model:ir.actions.act_window,help:marketing_campaign.action_marketing_campaign_form +msgid "A marketing campaign is an event or activity that will help you manage and reach your partners with specific messages. A campaign can have many activities that will be triggered based on a specific situation. One possible action could be sending an email template that has previously been created in the system." +msgstr "" + +#. module: marketing_campaign +#: selection:marketing.campaign.transition,trigger:0 +msgid "Time" msgstr "" #. module: marketing_campaign diff --git a/addons/marketing_campaign_crm_demo/i18n/marketing_campaign_crm_demo.pot b/addons/marketing_campaign_crm_demo/i18n/marketing_campaign_crm_demo.pot index c7a26ff7bc1..91ed15bd629 100644 --- a/addons/marketing_campaign_crm_demo/i18n/marketing_campaign_crm_demo.pot +++ b/addons/marketing_campaign_crm_demo/i18n/marketing_campaign_crm_demo.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:40+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:40+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:39+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:39+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: marketing_campaign_crm_demo +#: sql_constraint:marketing.campaign.transition:0 +msgid "The interval must be positive or zero" +msgstr "" + #. module: marketing_campaign_crm_demo #: model:ir.module.module,description:marketing_campaign_crm_demo.module_meta_information msgid "Demo data for the module marketing_campaign." @@ -43,6 +48,11 @@ msgid "Hello,Thanks for showing intrest and buying the OpenERP book.\n" " Regards,OpenERP Team," msgstr "" +#. module: marketing_campaign_crm_demo +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: marketing_campaign_crm_demo #: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_2 msgid "Propose to subscribe to the OpenERP Discovery Day on May 2010" @@ -58,6 +68,11 @@ msgstr "" msgid "Thanks for showing interest in OpenERP" msgstr "" +#. module: marketing_campaign_crm_demo +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: marketing_campaign_crm_demo #: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_4 msgid "Thanks for buying the OpenERP book" @@ -68,6 +83,11 @@ msgstr "" msgid "The To/From Activity of transition must be of the same Campaign " msgstr "" +#. module: marketing_campaign_crm_demo +#: sql_constraint:document.directory:0 +msgid "Directory cannot be parent of itself!" +msgstr "" + #. module: marketing_campaign_crm_demo #: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_5 msgid "Propose a free technical training to Gold partners" @@ -82,6 +102,11 @@ msgid "Hello, We have very good offer that might suit you.\n" " Regards,OpenERP Team," msgstr "" +#. module: marketing_campaign_crm_demo +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" +msgstr "" + #. module: marketing_campaign_crm_demo #: report:crm.lead.demo:0 msgid "Partner :" @@ -103,6 +128,11 @@ msgstr "" msgid "Thanks for subscribing to the OpenERP Discovery Day" msgstr "" +#. module: marketing_campaign_crm_demo +#: sql_constraint:email.template:0 +msgid "The template name must be unique !" +msgstr "" + #. module: marketing_campaign_crm_demo #: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_5 msgid "Hello, We have very good offer that might suit you.\n" @@ -148,6 +178,11 @@ msgstr "" msgid "marketing_campaign_crm_demo" msgstr "" +#. module: marketing_campaign_crm_demo +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "" + #. module: marketing_campaign_crm_demo #: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_7 msgid "Propose gold partnership to silver partners" diff --git a/addons/membership/i18n/membership.pot b/addons/membership/i18n/membership.pot index 971816eecf0..be1f3b94680 100644 --- a/addons/membership/i18n/membership.pot +++ b/addons/membership/i18n/membership.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:40+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:40+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:40+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,11 +32,6 @@ msgstr "" msgid "Paid Member" msgstr "" -#. module: membership -#: help:product.product,membership_date_from:0 -msgid "Active Membership since this date" -msgstr "" - #. module: membership #: view:report.membership:0 msgid "Group By..." @@ -150,6 +145,11 @@ msgstr "" msgid "# Invoiced" msgstr "" +#. module: membership +#: model:ir.ui.menu,name:membership.menu_report_membership +msgid "Members Analysis" +msgstr "" + #. module: membership #: view:res.partner:0 msgid "End Membership Date" @@ -187,6 +187,22 @@ msgstr "" msgid "From" msgstr "" +#. module: membership +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: membership +#: help:res.partner,membership_state:0 +msgid "It indicates the membership state.\n" +" -Non Member: A member who has not applied for any membership.\n" +" -Cancelled Member: A member who has cancelled his membership.\n" +" -Old Member: A member whose membership date has expired.\n" +" -Waiting Member: A member who has applied for the membership and whose invoice is going to be created.\n" +" -Invoiced Member: A member whose invoice has been created.\n" +" -Paid Member: A member who has paid the membership amount." +msgstr "" + #. module: membership #: model:process.transition.action,name:membership.process_transition_action_create0 msgid "Create" @@ -202,12 +218,22 @@ msgstr "" msgid "Member line" msgstr "" +#. module: membership +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: membership #: help:report.membership,date_from:0 #: field:res.partner,membership_start:0 msgid "Start membership date" msgstr "" +#. module: membership +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: membership #: code:addons/membership/membership.py:0 #, python-format @@ -259,8 +285,8 @@ msgid "Golden Membership" msgstr "" #. module: membership -#: model:ir.ui.menu,name:membership.menu_report_membership -msgid "Members Analysis" +#: help:res.partner,associate_member:0 +msgid "A member with whom you want to associate your membership.It will consider the membership state of the associated member." msgstr "" #. module: membership @@ -286,9 +312,9 @@ msgid "Join" msgstr "" #. module: membership -#: model:ir.model,name:membership.model_account_invoice -#: field:membership.membership_line,account_invoice_id:0 -msgid "Invoice" +#: help:product.product,membership_date_to:0 +#: help:res.partner,membership_stop:0 +msgid "Date until which membership remains active." msgstr "" #. module: membership @@ -306,6 +332,11 @@ msgstr "" msgid "Join Date" msgstr "" +#. module: membership +#: help:res.partner,free_member:0 +msgid "Select if you want to give membership free of cost." +msgstr "" + #. module: membership #: model:process.node,name:membership.process_node_setassociation0 msgid "Set association" @@ -321,6 +352,11 @@ msgstr "" msgid "Memberships" msgstr "" +#. module: membership +#: model:process.node,note:membership.process_node_paidmember0 +msgid "Membership invoice paid." +msgstr "" + #. module: membership #: model:ir.model,name:membership.model_product_template msgid "Product Template" @@ -341,6 +377,17 @@ msgstr "" msgid "Invoice Line" msgstr "" +#. module: membership +#: help:membership.membership_line,state:0 +msgid "It indicates the membership state.\n" +" -Non Member: A member who has not applied for any membership.\n" +" -Cancelled Member: A member who has cancelled his membership.\n" +" -Old Member: A member whose membership date has expired.\n" +" -Waiting Member: A member who has applied for the membership and whose invoice is going to be created.\n" +" -Invoiced Member: A member whose invoice has been created.\n" +" -Paid Member: A member who has paid the membership amount." +msgstr "" + #. module: membership #: view:report.membership:0 #: field:report.membership,month:0 @@ -369,6 +416,12 @@ msgstr "" msgid "Associate Member" msgstr "" +#. module: membership +#: help:product.product,membership_date_from:0 +#: help:res.partner,membership_start:0 +msgid "Date from which membership becomes active." +msgstr "" + #. module: membership #: view:report.membership:0 msgid "Associated Partner" @@ -397,6 +450,12 @@ msgstr "" msgid "Category" msgstr "" +#. module: membership +#: model:ir.model,name:membership.model_account_invoice +#: field:membership.membership_line,account_invoice_id:0 +msgid "Invoice" +msgstr "" + #. module: membership #: selection:membership.membership_line,state:0 #: selection:report.membership,membership_state:0 @@ -409,21 +468,11 @@ msgstr "" msgid "Member Sale Pricelist Version" msgstr "" -#. module: membership -#: help:product.product,membership_date_to:0 -msgid "Expired date of Membership" -msgstr "" - #. module: membership #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." msgstr "" -#. module: membership -#: help:res.partner,membership_amount:0 -msgid "The price negociated by the partner" -msgstr "" - #. module: membership #: view:report.membership:0 msgid "Forecast" @@ -481,18 +530,6 @@ msgstr "" msgid "June" msgstr "" -#. module: membership -#: model:process.node,note:membership.process_node_paidmember0 -msgid "Membership invoice paid." -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:report.membership,membership_state:0 -#: selection:res.partner,membership_state:0 -msgid "Invoiced Member" -msgstr "" - #. module: membership #: model:ir.module.module,shortdesc:membership.module_meta_information #: model:ir.ui.menu,name:membership.menu_membership @@ -506,8 +543,15 @@ msgid "Membership" msgstr "" #. module: membership -#: help:product.product,membership:0 -msgid "Specify if this product is a membership product" +#: selection:membership.membership_line,state:0 +#: selection:report.membership,membership_state:0 +#: selection:res.partner,membership_state:0 +msgid "Invoiced Member" +msgstr "" + +#. module: membership +#: help:membership.membership_line,date:0 +msgid "Date on which member has joined the membership" msgstr "" #. module: membership @@ -567,11 +611,21 @@ msgstr "" msgid "Membership amount" msgstr "" +#. module: membership +#: help:res.partner,membership_amount:0 +msgid "The price negotiated by the partner" +msgstr "" + #. module: membership #: model:product.template,name:membership.membership_2_product_template msgid "Basic Membership" msgstr "" +#. module: membership +#: help:product.product,membership:0 +msgid "Select if a product is a membership product." +msgstr "" + #. module: membership #: selection:membership.membership_line,state:0 #: selection:report.membership,membership_state:0 @@ -720,6 +774,11 @@ msgstr "" msgid "April" msgstr "" +#. module: membership +#: help:res.partner,membership_cancel:0 +msgid "Date on which membership has been cancelled" +msgstr "" + #. module: membership #: field:membership.membership_line,date_cancel:0 msgid "Cancel date" @@ -741,6 +800,11 @@ msgstr "" msgid "Membership product" msgstr "" +#. module: membership +#: help:membership.membership_line,member_price:0 +msgid "Amount for the membership" +msgstr "" + #. module: membership #: selection:membership.membership_line,state:0 #: selection:report.membership,membership_state:0 diff --git a/addons/mrp/i18n/mrp.pot b/addons/mrp/i18n/mrp.pot index 78b23f10a8a..64a3a8ea29d 100644 --- a/addons/mrp/i18n/mrp.pot +++ b/addons/mrp/i18n/mrp.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:41+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:41+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:42+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -165,6 +165,11 @@ msgstr "" msgid "The system launches automatically a RFQ to the preferred supplier." msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_routing_action +msgid "Routings allows you to create and manage the manufacturing operations that should be followed within your work centers in order to produce a product. They are attached to bills of materials that will define the required raw materials." +msgstr "" + #. module: mrp #: view:mrp.production:0 msgid "Products to Finish" @@ -209,13 +214,13 @@ msgid "UOM" msgstr "" #. module: mrp -#: field:change.production.qty,product_qty:0 -#: field:mrp.bom,product_qty:0 -#: field:mrp.production,product_qty:0 -#: view:mrp.production.order:0 -#: field:mrp.production.order,product_qty:0 -#: field:mrp.production.product.line,product_qty:0 -msgid "Product Qty" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_property_group_action +msgid "Define specific property groups that can be assigned to the properties of your bills of materials." msgstr "" #. module: mrp @@ -289,19 +294,6 @@ msgstr "" msgid "Scheduled goods" msgstr "" -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "Cannot delete Production Order(s) which are in %s State!' % s['state']))\n" -" return osv.osv.unlink(self, cr, uid, unlink_ids, context=context)\n" -"\n" -" def copy(self, cr, uid, id, default=None, context=None):\n" -" if default is None:\n" -" default = {}\n" -" default.update({\n" -" 'name': self.pool.get('ir.sequence" -msgstr "" - #. module: mrp #: selection:mrp.bom,type:0 msgid "Sets / Phantom" @@ -333,6 +325,11 @@ msgstr "" msgid "June" msgstr "" +#. module: mrp +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_product_produce msgid "Product Produce" @@ -435,12 +432,6 @@ msgstr "" msgid "Product type is service" msgstr "" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "of " -msgstr "" - #. module: mrp #: model:process.transition,name:mrp.process_transition_bom0 msgid "Manufacturing decomposition" @@ -676,6 +667,12 @@ msgstr "" msgid "Type" msgstr "" +#. module: mrp +#: code:addons/mrp/report/price.py:0 +#, python-format +msgid "Total Cost of " +msgstr "" + #. module: mrp #: model:process.node,note:mrp.process_node_minimumstockrule0 msgid "Linked to the 'Minimum stock rule' supplying method." @@ -693,6 +690,11 @@ msgstr "" msgid "Couldn't find bill of material for product" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_property_action +msgid "The Properties in OpenERP are used to select the right bill of material in order to manufacture a product, when you have different ways of building the same product. You can assign several properties to each Bill of Materials. When a sales person creates a sales order, he can relate it to several properties and OpenERP will select automatically the BoM to use according the the needs." +msgstr "" + #. module: mrp #: report:bom.structure:0 msgid "Product Name" @@ -761,6 +763,11 @@ msgstr "" msgid "Manufacturing Order" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_bom_form_action2 +msgid "Bills of materials Components are components and sub-products used to create master bills of materials. Use this menu to search in which BoM is used a specific component." +msgstr "" + #. module: mrp #: model:process.transition,name:mrp.process_transition_productionprocureproducts0 msgid "Procurement of raw material" @@ -834,6 +841,11 @@ msgstr "" msgid "Dashboard" msgstr "" +#. module: mrp +#: view:board.board:0 +msgid "Work Center Future Load" +msgstr "" + #. module: mrp #: model:process.node,name:mrp.process_node_stockproduct0 #: model:process.node,name:mrp.process_node_stockproduct1 @@ -923,11 +935,6 @@ msgstr "" msgid "Make to stock" msgstr "" -#. module: mrp -#: view:board.board:0 -msgid "Work Center Future load" -msgstr "" - #. module: mrp #: report:bom.structure:0 msgid "BOM Name" @@ -1016,6 +1023,11 @@ msgstr "" msgid "Manufacturing Orders in Progress" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_production_action_planning +msgid "Manufacturing Orders describe the operations that need to be carried out and the raw materials usage for each stage of production. You use specifications (bills of materials or BoM) to work out the raw material requirements and the manufacturing orders needed for the finished products. Once the bills of materials have been defined, OpenERP becomes capable of automatically deciding on the manufacturing route depending on the needs of the company." +msgstr "" + #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action4 msgid "Manufacturing Orders Waiting Products" @@ -1051,7 +1063,6 @@ msgstr "" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_pm_resources_config -#: model:ir.ui.menu,name:mrp.menu_view_resource_search_mrp msgid "Resources" msgstr "" @@ -1062,7 +1073,7 @@ msgstr "" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_workcenter_action -#: model:ir.ui.menu,name:mrp.menu_mrp_workcenter_action +#: model:ir.ui.menu,name:mrp.menu_view_resource_search_mrp #: field:mrp.routing,workcenter_lines:0 msgid "Work Centers" msgstr "" @@ -1077,6 +1088,16 @@ msgstr "" msgid "The system waits for the products to be available in the stock. These products are typically procured manually or through a minimum stock rule." msgstr "" +#. module: mrp +#: field:change.production.qty,product_qty:0 +#: field:mrp.bom,product_qty:0 +#: field:mrp.production,product_qty:0 +#: view:mrp.production.order:0 +#: field:mrp.production.order,product_qty:0 +#: field:mrp.production.product.line,product_qty:0 +msgid "Product Qty" +msgstr "" + #. module: mrp #: field:report.workcenter.load,hour:0 msgid "Nbr of hour" @@ -1146,12 +1167,22 @@ msgstr "" msgid "Revisions" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_production_action +msgid "Manufacturing Orders are usually proposed automatically by OpenERP based on the bill of materials and the procurement rules, but you can also create manufacturing orders manually. OpenERP will handle the consumation of the raw materials (stock decrease) and the production of the finished products (stock increase) when the order is processed." +msgstr "" + #. module: mrp #: field:mrp.production,priority:0 #: field:mrp.production.order,priority:0 msgid "Priority" msgstr "" +#. module: mrp +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_stock_picking msgid "Picking List" @@ -1233,6 +1264,11 @@ msgstr "" msgid "Month" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_workcenter_action +msgid "Work Centers allows you to create and manage manufacturing units consisting of one or several people and/or machines that can be considered as a unit for capacity and planning forecasting." +msgstr "" + #. module: mrp #: code:addons/mrp/wizard/change_production_qty.py:0 #, python-format @@ -1255,12 +1291,6 @@ msgstr "" msgid "Start Date" msgstr "" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Cost " -msgstr "" - #. module: mrp #: field:mrp.workcenter,costs_hour_account_id:0 msgid "Hour Account" @@ -1281,12 +1311,6 @@ msgstr "" msgid "Product Consumed" msgstr "" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Work Cost " -msgstr "" - #. module: mrp #: field:mrp.bom,active:0 #: field:mrp.routing,active:0 @@ -1320,8 +1344,9 @@ msgid "Scheduled date" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_minimumstockprocure0 -msgid "'Minimum stock rule' material" +#: sql_constraint:mrp.bom:0 +msgid "All product quantities must be greater than 0.\n" +"You should install the mrp_subproduct module if you want to manage extra products on BoMs !" msgstr "" #. module: mrp @@ -1355,6 +1380,12 @@ msgstr "" msgid "SO Number" msgstr "" +#. module: mrp +#: code:addons/mrp/report/price.py:0 +#, python-format +msgid "Component Cost of " +msgstr "" + #. module: mrp #: selection:mrp.production,state:0 #: view:mrp.production.order:0 @@ -1367,6 +1398,11 @@ msgstr "" msgid "Change Standard Price" msgstr "" +#. module: mrp +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: mrp #: field:mrp.production,origin:0 #: report:mrp.production.order:0 @@ -1389,6 +1425,12 @@ msgstr "" msgid "Manufacturing Orders To Start" msgstr "" +#. module: mrp +#: code:addons/mrp/mrp.py:0 +#, python-format +msgid "Cannot delete Production Order(s) which are in %s State!" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_workcenter #: field:mrp.production.workcenter.line,workcenter_id:0 @@ -1469,6 +1511,7 @@ msgid "Make to Order" msgstr "" #. module: mrp +#: model:ir.actions.act_window,name:mrp.action_report_mrp_production_order #: model:ir.ui.menu,name:mrp.menu_report_mrp_production_orders_tree msgid "Production Analysis" msgstr "" @@ -1542,12 +1585,6 @@ msgstr "" msgid "Production Products Consommation" msgstr "" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Total Cost " -msgstr "" - #. module: mrp #: help:mrp.workcenter,note:0 msgid "Description of the workcenter. Explain here what's a cycle according to this workcenter." @@ -1614,7 +1651,6 @@ msgid "Time for 1 cycle (hour)" msgstr "" #. module: mrp -#: model:ir.actions.act_window,name:mrp.action_report_mrp_production_order #: model:ir.actions.report.xml,name:mrp.report_mrp_production_report #: field:mrp.production.product.line,production_id:0 #: field:mrp.production.workcenter.line,production_id:0 @@ -1685,6 +1721,11 @@ msgstr "" msgid "Valid Until" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.action_report_in_out_picking_tree +msgid "Weekly Stock Value Variation enables you to track the stock value evolution linked to manufacturing activities, receptions of products and delivery orders." +msgstr "" + #. module: mrp #: view:mrp.product.produce:0 msgid "Confirm" @@ -1706,6 +1747,11 @@ msgstr "" msgid "Work Order" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.action_report_mrp_production_order +msgid "This reporting allows you to analyse your manufacturing activities and performance." +msgstr "" + #. module: mrp #: selection:mrp.product.produce,mode:0 msgid "Consume Only" @@ -1874,6 +1920,7 @@ msgstr "" #. module: mrp #: code:addons/mrp/report/price.py:0 +#: model:ir.actions.report.xml,name:mrp.report_cost_structure #, python-format msgid "Cost Structure" msgstr "" @@ -1944,6 +1991,22 @@ msgstr "" msgid "Productions" msgstr "" +#. module: mrp +#: code:addons/mrp/report/price.py:0 +#, python-format +msgid "Work Cost of " +msgstr "" + +#. module: mrp +#: model:ir.actions.act_window,help:mrp.mrp_bom_form_action +msgid "Master Bill of Materials allows you to create and manage the list of necessary raw materials used to make a finished product. OpenERP will use these BoM in order to propose automatically manufacturing orders according to products' needs. You can either create a bill of materials to define specific production steps or define a single multi-level bill of materials." +msgstr "" + +#. module: mrp +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_routing #: view:mrp.bom:0 @@ -1977,6 +2040,11 @@ msgstr "" msgid "Procurements in Exception" msgstr "" +#. module: mrp +#: model:process.transition,name:mrp.process_transition_minimumstockprocure0 +msgid "'Minimum stock rule' material" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_product_price msgid "Product Price" @@ -2031,6 +2099,11 @@ msgstr "" msgid "Scheduled End Date" msgstr "" +#. module: mrp +#: model:ir.actions.act_window,help:mrp.action_report_workcenter_load_tree +msgid "Work Center Loads gives you a projection of work center loads over a specified period. It is expressed in number of hours and machine related cycles." +msgstr "" + #. module: mrp #: model:process.node,note:mrp.process_node_procureproducts0 msgid "The way to procurement depends on the product type." diff --git a/addons/mrp_jit/i18n/mrp_jit.pot b/addons/mrp_jit/i18n/mrp_jit.pot index 2808dd78c25..0c90dc6f772 100644 --- a/addons/mrp_jit/i18n/mrp_jit.pot +++ b/addons/mrp_jit/i18n/mrp_jit.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:42+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:42+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:42+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,8 +15,18 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: mrp_jit +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information msgid "MRP JIT" msgstr "" +#. module: mrp_jit +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + diff --git a/addons/mrp_operations/i18n/mrp_operations.pot b/addons/mrp_operations/i18n/mrp_operations.pot index f8aa231d4b3..bc0dc140f42 100644 --- a/addons/mrp_operations/i18n/mrp_operations.pot +++ b/addons/mrp_operations/i18n/mrp_operations.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:42+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:42+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:43+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -57,15 +57,14 @@ msgid "Information from the routing definition." msgstr "" #. module: mrp_operations -#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_resource_planning -#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_resource_planning -#: view:mrp.production.workcenter.line:0 -msgid "Resources" +#: selection:mrp.workorder,month:0 +msgid "March" msgstr "" #. module: mrp_operations -#: selection:mrp.workorder,month:0 -msgid "March" +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_resource_planning +#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_resource_planning +msgid "Work Centers" msgstr "" #. module: mrp_operations @@ -186,6 +185,11 @@ msgstr "" msgid "In Production" msgstr "" +#. module: mrp_operations +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: mrp_operations #: view:mrp.production.workcenter.line:0 #: field:mrp.production.workcenter.line,state:0 @@ -219,6 +223,11 @@ msgid "* When a work order is created it is set in 'Draft' state.\n" "* When order is completely processed that time it is set in 'Finished' state." msgstr "" +#. module: mrp_operations +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -272,6 +281,12 @@ msgstr "" msgid "Future Work Orders" msgstr "" +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:0 +#, python-format +msgid "Operation has already started !You can either Pause /Finish/Cancel the operation" +msgstr "" + #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_canceloperation0 msgid "Operation Cancelled" @@ -308,12 +323,6 @@ msgstr "" msgid "Work Order Report" msgstr "" -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation has already started !' 'You can either Pause /Finish/Cancel the operation" -msgstr "" - #. module: mrp_operations #: field:mrp.production.workcenter.line,date_start:0 #: field:mrp.production.workcenter.line,date_start_date:0 @@ -503,6 +512,11 @@ msgstr "" msgid "Operation is Already Cancelled !" msgstr "" +#. module: mrp_operations +#: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_planning +msgid "To manufacture or assemble products, as well as using raw materials and finished product you must also handle manufacturing operations. Manufacturing operations are often called work orders. The different operations will have different impacts on the costs of manufacture and planning depending on the available workload." +msgstr "" + #. module: mrp_operations #: model:ir.module.module,shortdesc:mrp_operations.module_meta_information msgid "Work Center Production start end workflow" @@ -541,6 +555,16 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: mrp_operations +#: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_form +msgid "Work Orders is the list of operations to be performed for each manufacturing order. Once you start the first work order of a manufacturing order, the manufacturing order is automatically marked as started. Once you finish the latest operation of a manufacturing order, the MO is automatically done and the related products are produced." +msgstr "" + +#. module: mrp_operations +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 msgid "Start Operation" diff --git a/addons/mrp_repair/i18n/mrp_repair.pot b/addons/mrp_repair/i18n/mrp_repair.pot index 8ff79b10d77..99fe057e6b9 100644 --- a/addons/mrp_repair/i18n/mrp_repair.pot +++ b/addons/mrp_repair/i18n/mrp_repair.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:43+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:43+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:43+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -210,11 +210,21 @@ msgstr "" msgid "Repairs order" msgstr "" +#. module: mrp_repair +#: model:ir.actions.act_window,help:mrp_repair.action_repair_order_tree +msgid "Repair orders allows you to organize your reparations on the products. On a repair order, you can detail the components you remove, add or replace and record the time you spent on the different operations. The repair order uses the warranty date on the production lot in order to know if you have to invoice the reparation to the customer or not." +msgstr "" + #. module: mrp_repair #: report:repair.order:0 msgid "Repair Order N° :" msgstr "" +#. module: mrp_repair +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: mrp_repair #: field:mrp.repair,prodlot_id:0 #: report:repair.order:0 @@ -246,6 +256,11 @@ msgstr "" msgid "To be Invoiced" msgstr "" +#. module: mrp_repair +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: mrp_repair #: report:repair.order:0 msgid "Shipping address :" @@ -561,6 +576,11 @@ msgstr "" msgid "Dest. Location" msgstr "" +#. module: mrp_repair +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: mrp_repair #: report:repair.order:0 msgid "Operation Line(s)" diff --git a/addons/mrp_subproduct/i18n/mrp_subproduct.pot b/addons/mrp_subproduct/i18n/mrp_subproduct.pot index c5d7786595b..d58f359343a 100644 --- a/addons/mrp_subproduct/i18n/mrp_subproduct.pot +++ b/addons/mrp_subproduct/i18n/mrp_subproduct.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:43+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:43+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:44+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: mrp_subproduct +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: mrp_subproduct #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -25,6 +30,11 @@ msgstr "" msgid "Sub Product" msgstr "" +#. module: mrp_subproduct +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: mrp_subproduct #: view:mrp.bom:0 msgid "sub products" @@ -95,3 +105,8 @@ msgstr "" msgid "Fixed" msgstr "" +#. module: mrp_subproduct +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/multi_company/i18n/multi_company.pot b/addons/multi_company/i18n/multi_company.pot index 85ef074600f..b2b272a831d 100644 --- a/addons/multi_company/i18n/multi_company.pot +++ b/addons/multi_company/i18n/multi_company.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:43+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:43+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:44+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: multi_company +#: model:account.journal,name:multi_company.cash_journal_multi_in +msgid "Cash Journal - (OpenERP IN)" +msgstr "" + #. module: multi_company #: model:res.company,overdue_msg:multi_company.res_company_odoo #: model:res.company,overdue_msg:multi_company.res_company_oerp_be @@ -37,11 +42,122 @@ msgid "\n" " " msgstr "" +#. module: multi_company +#: sql_constraint:res.users:0 +msgid "You can not have two users with the same login !" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.check_journal_multi_in +msgid "Checks Journal - (OpenERP IN)" +msgstr "" + +#. module: multi_company +#: constraint:product.template:0 +msgid "Error: The default UOM and the purchase UOM must be in the same category." +msgstr "" + +#. module: multi_company +#: model:ir.ui.menu,name:multi_company.menu_custom_multicompany +msgid "Multi-Companies" +msgstr "" + +#. module: multi_company +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: multi_company +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "" + +#. module: multi_company +#: constraint:res.users:0 +msgid "The chosen company is not in the allowed companies for this user" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.refund_sales_journal_multi_us +msgid "Sales Credit Note Journal - (OpenERP US)" +msgstr "" + +#. module: multi_company +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." +msgstr "" + #. module: multi_company #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" +#. module: multi_company +#: model:account.journal,name:multi_company.expenses_journal_multi_us +msgid "Expenses Journal - (OpenERP US)" +msgstr "" + +#. module: multi_company +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.expenses_journal_multi_be +msgid "Expenses Journal - (OpenERP BE)" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.sales_journal_multi_us +msgid "Sales Journal - (OpenERP US)" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.expenses_journal_multi_in +msgid "Expenses Journal - (OpenERP IN)" +msgstr "" + +#. module: multi_company +#: view:multi_company.default:0 +msgid "Returning" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.refund_expenses_journal_multi_us +msgid "Expenses Credit Notes Journal - (OpenERP US)" +msgstr "" + +#. module: multi_company +#: model:ir.module.module,shortdesc:multi_company.module_meta_information +#: view:multi_company.default:0 +msgid "Multi Company" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.sales_journal_multi_in +msgid "Sales Journal - (OpenERP IN)" +msgstr "" + +#. module: multi_company +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.check_journal_multi_be +msgid "Checks Journal - (OpenERP BE)" +msgstr "" + +#. module: multi_company +#: view:multi_company.default:0 +msgid "Condition" +msgstr "" + +#. module: multi_company +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + #. module: multi_company #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" @@ -52,60 +168,49 @@ msgstr "" msgid "Odoo Offers" msgstr "" -#. module: multi_company -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: multi_company -#: constraint:product.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "" - #. module: multi_company #: constraint:res.company:0 msgid "Error! You can not create recursive companies." msgstr "" #. module: multi_company -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: model:account.journal,name:multi_company.cash_journal_multi_us +msgid "Cash Journal - (OpenERP US)" msgstr "" #. module: multi_company -#: model:ir.ui.menu,name:multi_company.menu_custom_multicompany -msgid "Multi-Companies" +#: model:account.journal,name:multi_company.bank_journal_multi_us +msgid "Bank Journal - (OpenERP US)" msgstr "" #. module: multi_company -#: model:ir.module.module,shortdesc:multi_company.module_meta_information -#: view:multi_company.default:0 -msgid "Multi Company" +#: model:account.journal,name:multi_company.refund_sales_journal_multi_in +msgid "Sales Credit Note Journal - (OpenERP IN)" msgstr "" #. module: multi_company -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." +#: model:account.journal,name:multi_company.cash_journal_multi_be +msgid "Cash Journal - (OpenERP BE)" msgstr "" #. module: multi_company -#: constraint:product.product:0 -msgid "Error: Invalid ean code" +#: model:account.journal,name:multi_company.check_journal_multi_us +msgid "Checks Journal - (OpenERP US)" msgstr "" #. module: multi_company -#: constraint:res.users:0 -msgid "The chosen company is not in the allowed companies for this user" +#: model:account.journal,name:multi_company.sales_journal_multi_be +msgid "Sales Journal - (OpenERP BE)" msgstr "" #. module: multi_company -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: model:account.journal,name:multi_company.refund_expenses_journal_multi_be +msgid "Expenses Credit Notes Journal - (OpenERP BE)" msgstr "" #. module: multi_company -#: view:multi_company.default:0 -msgid "Returning" +#: model:account.journal,name:multi_company.refund_sales_journal_multi_be +msgid "Sales Credit Note Journal - (OpenERP BE)" msgstr "" #. module: multi_company @@ -114,18 +219,43 @@ msgstr "" msgid "Default Company per Object" msgstr "" -#. module: multi_company -#: view:multi_company.default:0 -msgid "Matching" -msgstr "" - -#. module: multi_company -#: view:multi_company.default:0 -msgid "Condition" -msgstr "" - #. module: multi_company #: model:product.template,name:multi_company.product_product_odoo1_product_template msgid "Odoo Offer" msgstr "" +#. module: multi_company +#: model:account.journal,name:multi_company.refund_expenses_journal_multi_in +msgid "Expenses Credit Notes Journal - (OpenERP IN)" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.bank_journal_multi_in +msgid "Bank Journal - (OpenERP IN)" +msgstr "" + +#. module: multi_company +#: constraint:product.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "" + +#. module: multi_company +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "" + +#. module: multi_company +#: model:account.journal,name:multi_company.bank_journal_multi_be +msgid "Bank Journal - (OpenERP BE)" +msgstr "" + +#. module: multi_company +#: constraint:product.product:0 +msgid "Error: Invalid ean code" +msgstr "" + +#. module: multi_company +#: view:multi_company.default:0 +msgid "Matching" +msgstr "" + diff --git a/addons/outlook/i18n/outlook.pot b/addons/outlook/i18n/outlook.pot index 870d4df8f9b..bc782ad4110 100644 --- a/addons/outlook/i18n/outlook.pot +++ b/addons/outlook/i18n/outlook.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:43+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:43+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:45+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:45+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "Outlook Plug-in" msgstr "" +#. module: outlook +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: outlook #: help:outlook.installer,doc_file:0 msgid "The documentation file :- how to install Outlook Plug-in." @@ -50,6 +55,11 @@ msgstr "" msgid "_Close" msgstr "" +#. module: outlook +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: outlook #: field:outlook.installer,doc_file:0 msgid "Installation Manual" @@ -132,3 +142,8 @@ msgstr "" msgid "Outlook Plug-In Configuration" msgstr "" +#. module: outlook +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/pad/i18n/pad.pot b/addons/pad/i18n/pad.pot index 8ff72ca1e84..51b253a2238 100644 --- a/addons/pad/i18n/pad.pot +++ b/addons/pad/i18n/pad.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-27 12:46:22+0000\n" -"PO-Revision-Date: 2010-10-27 12:46:22+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:45+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:45+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -37,11 +37,6 @@ msgstr "" msgid "Name" msgstr "" -#. module: pad -#: sql_constraint:ir.module.module:0 -msgid "The name of the module must be unique !" -msgstr "" - #. module: pad #: help:res.company,pad_index:0 msgid "The root URL of the company's pad instance" @@ -53,12 +48,8 @@ msgid "Companies" msgstr "" #. module: pad -#: model:ir.module.module,description:pad.module_meta_information -msgid "\n" -"Adds enhanced support for (Ether)Pad attachments in the web client, lets the\n" -"company customize which Pad installation should be used to link to new pads\n" -"(by default, pad.openerp.com)\n" -" " +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: pad @@ -86,4 +77,5 @@ msgstr "" #. module: pad #: sql_constraint:ir.model.fields:0 msgid "Size of the field can never be less than 1 !" -msgstr "" \ No newline at end of file +msgstr "" + diff --git a/addons/point_of_sale/i18n/point_of_sale.pot b/addons/point_of_sale/i18n/point_of_sale.pot index e68356fca46..50c2a2092cc 100644 --- a/addons/point_of_sale/i18n/point_of_sale.pot +++ b/addons/point_of_sale/i18n/point_of_sale.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:45+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:45+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:48+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,11 +76,6 @@ msgstr "" msgid "All Cashboxes Of the day :" msgstr "" -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_close_statement -msgid "Close Registers" -msgstr "" - #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_box_out msgid "Pos Box Out" @@ -104,11 +99,6 @@ msgstr "" msgid "Are you sure you want to close the statements ?" msgstr "" -#. module: point_of_sale -#: model:ir.actions.act_window,name:point_of_sale.action_pos_open_statement -msgid "Open Register" -msgstr "" - #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_scan_product #: model:ir.model,name:point_of_sale.model_pos_scan_product @@ -156,11 +146,6 @@ msgstr "" msgid "Amount" msgstr "" -#. module: point_of_sale -#: help:pos.order,user_id:0 -msgid "Person who uses the the register. It could be a reliever, a student or an interim employee." -msgstr "" - #. module: point_of_sale #: report:pos.lines:0 msgid "VAT" @@ -176,12 +161,6 @@ msgstr "" msgid "Total Transaction" msgstr "" -#. module: point_of_sale -#: selection:report.cash.register,month:0 -#: selection:report.pos.order,month:0 -msgid "May" -msgstr "" - #. module: point_of_sale #: help:account.journal,special_journal:0 msgid "Will put all the orders in waiting status till being accepted" @@ -263,6 +242,11 @@ msgstr "" msgid "Total Price" msgstr "" +#. module: point_of_sale +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: point_of_sale #: view:product.product:0 msgid "Miscelleanous" @@ -296,12 +280,12 @@ msgid "Max Discount(%)" msgstr "" #. module: point_of_sale -#: view:pos.box.out:0 -msgid "Sortie de caisse" +#: model:ir.ui.menu,name:point_of_sale.menu_point_open_config +msgid "Cash register management" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "No valid pricelist line found !" msgstr "" @@ -327,11 +311,6 @@ msgstr "" msgid "Discount (%)" msgstr "" -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_point_open_config -msgid "Register management" -msgstr "" - #. module: point_of_sale #: view:pos.order.line:0 msgid "Total qty" @@ -379,6 +358,19 @@ msgstr "" msgid "August" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/wizard/pos_open_statement.py:0 +#, python-format +msgid "You can not open a Cashbox for \"%s\".\n" +"Please close its related cash register.' %(journal.name)))\n" +"\n" +" number = \n" +" if journal.sequence_id:\n" +" number = sequence_obj.get_id(cr, uid, journal.sequence_id.id)\n" +" else:\n" +" number = sequence_obj.get(cr, uid, 'account.cash.statement" +msgstr "" + #. module: point_of_sale #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product" @@ -395,6 +387,16 @@ msgstr "" msgid "Sales by User Monthly" msgstr "" +#. module: point_of_sale +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: point_of_sale +#: view:product.product:0 +msgid "Product Description" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_payment:0 #: field:report.pos.order,date_payment:0 @@ -424,12 +426,6 @@ msgstr "" msgid "Summary" msgstr "" -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "You don\'t have enough access to validate this sale!" -msgstr "" - #. module: point_of_sale #: view:pos.order:0 msgid "Quotations" @@ -550,11 +546,6 @@ msgstr "" msgid "Ending Balance" msgstr "" -#. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_sales_user_today -msgid "Today's Sales" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.products_for_output_operations msgid "Products for Output Operations" @@ -566,11 +557,17 @@ msgid "Sale by Date and User" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "Cannot delete a point of sale which is closed or contains confirmed cashboxes!" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/wizard/pos_close_statement.py:0 +#, python-format +msgid "Cash registers are already closed." +msgstr "" + #. module: point_of_sale #: field:report.cash.register,date:0 msgid "Create Date" @@ -621,19 +618,19 @@ msgstr "" msgid "March" msgstr "" -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "You have to select a pricelist in the sale form !\n' \\n" -" 'Please set one before choosing a product." -msgstr "" - #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_users_product_re #: report:pos.user.product:0 msgid "User's Product" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/point_of_sale.py:0 +#, python-format +msgid "You have to select a pricelist in the sale form !\n" +"Please set one before choosing a product." +msgstr "" + #. module: point_of_sale #: view:pos.order:0 #: field:pos.order.line,price_subtotal_incl:0 @@ -652,20 +649,6 @@ msgstr "" msgid "Close Statements" msgstr "" -#. module: point_of_sale -#: field:pos.box.entries,journal_id:0 -#: field:pos.box.out,journal_id:0 -msgid "Register" -msgstr "" - -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "Couldn't find a pricelist line matching this product\" \\n" -" \" and quantity.\nYou have to change either the product,\" \\n" -" \" the quantity or the pricelist." -msgstr "" - #. module: point_of_sale #: view:account.journal:0 msgid "Extended Configureation" @@ -734,8 +717,8 @@ msgid "Creation Date" msgstr "" #. module: point_of_sale -#: constraint:account.invoice:0 -msgid "Error: Invalid Bvr Number (wrong checksum)." +#: model:ir.actions.report.xml,name:point_of_sale.pos_sales_user_today +msgid "Today's Sales" msgstr "" #. module: point_of_sale @@ -755,7 +738,7 @@ msgid "Total :" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "Create line failed !" msgstr "" @@ -767,7 +750,7 @@ msgid "Product Name" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "Invalid action !" msgstr "" @@ -969,6 +952,12 @@ msgstr "" msgid "Input Operations" msgstr "" +#. module: point_of_sale +#: model:ir.model,name:point_of_sale.model_report_cash_register +#: view:report.cash.register:0 +msgid "Point of Sale Cash Register Analysis" +msgstr "" + #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_sales_user_today msgid "Sale by Users" @@ -1000,6 +989,12 @@ msgstr "" msgid "Amount total" msgstr "" +#. module: point_of_sale +#: model:ir.actions.act_window,name:point_of_sale.action_new_bank_statement_all_tree +#: model:ir.ui.menu,name:point_of_sale.menu_all_menu_all_register +msgid "Cash Registers" +msgstr "" + #. module: point_of_sale #: view:account.journal:0 #: field:account.journal,journal_users:0 @@ -1046,6 +1041,11 @@ msgstr "" msgid "Name" msgstr "" +#. module: point_of_sale +#: model:ir.ui.menu,name:point_of_sale.menu_open_statement +msgid "Open Cash Registers" +msgstr "" + #. module: point_of_sale #: report:pos.details:0 #: report:pos.lines:0 @@ -1056,6 +1056,11 @@ msgstr "" msgid "]" msgstr "" +#. module: point_of_sale +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "" + #. module: point_of_sale #: report:pos.invoice:0 msgid "Supplier Refund" @@ -1085,7 +1090,7 @@ msgid "All Closed CashBox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "No Pricelist !" msgstr "" @@ -1165,11 +1170,6 @@ msgstr "" msgid "Special Journal" msgstr "" -#. module: point_of_sale -#: constraint:account.invoice:0 -msgid "Error: BVR reference is required." -msgstr "" - #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_all_closed_cashbox_of_the_day msgid "All closed cashbox of the day" @@ -1196,14 +1196,13 @@ msgid "Price method" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box_out.py:0 -#, python-format -msgid "The maximum value you can still withdraw is exceeded. \n Remaining value is equal to %d " +#: view:pos.receipt:0 +msgid "Print the receipt of the sale" msgstr "" #. module: point_of_sale -#: view:pos.receipt:0 -msgid "Print the receipt of the sale" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: point_of_sale @@ -1237,7 +1236,7 @@ msgid "Sale by User" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #: code:addons/point_of_sale/report/pos_invoice.py:0 #: code:addons/point_of_sale/wizard/pos_box_entries.py:0 #: code:addons/point_of_sale/wizard/pos_box_out.py:0 @@ -1245,18 +1244,6 @@ msgstr "" msgid "Error !" msgstr "" -#. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_open_statement.py:0 -#, python-format -msgid "You can not open a Cashbox for \"%s\".\nPlease close its related Register.' %(journal.name)))\n" -" \n" -" number = ''\n" -" if journal.sequence_id:\n" -" number = sequence_obj.get_id(cr, uid, journal.sequence_id.id)\n" -" else:\n" -" number = sequence_obj.get(cr, uid, 'account.cash.statement" -msgstr "" - #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_confirm msgid "Sale Confirm" @@ -1279,7 +1266,7 @@ msgid "July" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "Please provide an account for the product: %s" msgstr "" @@ -1299,6 +1286,11 @@ msgstr "" msgid "Point of Sale Payment" msgstr "" +#. module: point_of_sale +#: view:pos.box.out:0 +msgid "Sortie de caisse" +msgstr "" + #. module: point_of_sale #: report:pos.details:0 #: report:pos.details_summary:0 @@ -1326,14 +1318,6 @@ msgstr "" msgid "Is accompte" msgstr "" -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "Couldn't find a pricelist line matching this product\" \\n" -" \" and quantity.\nYou have to change either the product,\" \\n" -" \" the quantity or the pricelist." -msgstr "" - #. module: point_of_sale #: view:report.cash.register:0 #: field:report.cash.register,month:0 @@ -1352,9 +1336,16 @@ msgstr "" msgid "Statement Name" msgstr "" +#. module: point_of_sale +#: field:pos.order.line,price_subtotal:0 +msgid "Subtotal w/o Tax" +msgstr "" + #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_new_bank_statement_tree #: model:ir.ui.menu,name:point_of_sale.menu_cash_register +#: field:pos.box.entries,journal_id:0 +#: field:pos.box.out,journal_id:0 #: field:pos.make.payment,journal:0 msgid "Cash Register" msgstr "" @@ -1386,12 +1377,7 @@ msgid "Customer Note" msgstr "" #. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_open_statement -msgid "Open Registers" -msgstr "" - -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "No order lines defined for this sale." msgstr "" @@ -1425,11 +1411,6 @@ msgstr "" msgid "Quotation" msgstr "" -#. module: point_of_sale -#: view:pos.make.payment:0 -msgid "The register must be opened to be able to execute a payment." -msgstr "" - #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 #: report:pos.invoice:0 @@ -1455,15 +1436,13 @@ msgid "Statement lines" msgstr "" #. module: point_of_sale -#: field:report.transaction.pos,invoice_id:0 -msgid "Nbr Invoice" +#: help:pos.order,user_id:0 +msgid "Person who uses the the cash register. It could be a reliever, a student or an interim employee." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "You have to select a pricelist in the sale form !\n' \\n" -" 'Please set one before choosing a product." +#: field:report.transaction.pos,invoice_id:0 +msgid "Nbr Invoice" msgstr "" #. module: point_of_sale @@ -1517,11 +1496,6 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: point_of_sale -#: model:ir.actions.act_window,name:point_of_sale.action_pos_close_statement -msgid "Close Register" -msgstr "" - #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_box_entries #: view:pos.box.entries:0 @@ -1545,13 +1519,6 @@ msgstr "" msgid "Sales by User Margin" msgstr "" -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "There is no receivable account defined for this journal:'\\n" -" ' \"%s\" (id:%d)" -msgstr "" - #. module: point_of_sale #: report:pos.invoice:0 msgid "Taxes:" @@ -1627,9 +1594,14 @@ msgid "Yes" msgstr "" #. module: point_of_sale -#: model:ir.model,name:point_of_sale.model_report_cash_register -#: view:report.cash.register:0 -msgid "Point of Sale Cash Register Analysis" +#: code:addons/point_of_sale/point_of_sale.py:0 +#, python-format +msgid "There is no income account defined for this product: \"%s\" (id:%d)" +msgstr "" + +#. module: point_of_sale +#: view:pos.make.payment:0 +msgid "The cash register must be opened to be able to execute a payment." msgstr "" #. module: point_of_sale @@ -1639,14 +1611,8 @@ msgid "Mode of Taxes" msgstr "" #. module: point_of_sale -#: view:product.product:0 -msgid "Product Description" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.act_window,name:point_of_sale.action_new_bank_statement_all_tree -#: model:ir.ui.menu,name:point_of_sale.menu_all_menu_all_register -msgid "Registers" +#: model:account.journal,name:point_of_sale.pos_cash_journal +msgid "Cash Journal" msgstr "" #. module: point_of_sale @@ -1671,6 +1637,11 @@ msgstr "" msgid "Sale By User" msgstr "" +#. module: point_of_sale +#: model:ir.actions.act_window,name:point_of_sale.action_pos_open_statement +msgid "Open Cash Register" +msgstr "" + #. module: point_of_sale #: report:account.statement:0 #: model:ir.actions.report.xml,name:point_of_sale.account_statement @@ -1724,6 +1695,13 @@ msgstr "" msgid "Invoice Date" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/point_of_sale.py:0 +#, python-format +msgid "Couldn't find a pricelist line matching this product and quantity.\n" +"You have to change either the product, the quantity or the pricelist." +msgstr "" + #. module: point_of_sale #: field:pos.order.line,serial_number:0 msgid "Serial Number" @@ -1735,7 +1713,7 @@ msgid "Reprint" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #: code:addons/point_of_sale/wizard/pos_box_entries.py:0 #: code:addons/point_of_sale/wizard/pos_box_out.py:0 #, python-format @@ -1811,6 +1789,11 @@ msgstr "" msgid "Add Discount" msgstr "" +#. module: point_of_sale +#: model:ir.actions.act_window,name:point_of_sale.action_pos_close_statement +msgid "Close Cash Register" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,qty_rfd:0 msgid "Refunded Quantity" @@ -1875,7 +1858,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "Modify line failed !" msgstr "" @@ -1885,12 +1868,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_close_statement.py:0 -#, python-format -msgid "Registers are already closed." -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_rep msgid "Reporting" @@ -1911,6 +1888,11 @@ msgstr "" msgid "Put Money" msgstr "" +#. module: point_of_sale +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" +msgstr "" + #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_config_product msgid "Configuration" @@ -1921,19 +1903,18 @@ msgstr "" msgid "Starting Date" msgstr "" -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "There is no income '\\n" -" 'account defined for this product: \"%s\" (id:%d)" -msgstr "" - #. module: point_of_sale #: field:pos.order,date_validation:0 #: field:report.pos.order,date_validation:0 msgid "Validation Date" msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/point_of_sale.py:0 +#, python-format +msgid "You don't have enough access to validate this sale!" +msgstr "" + #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_invoice msgid "Invoices" @@ -2048,11 +2029,17 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "Please provide a partner for the sale." msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/point_of_sale.py:0 +#, python-format +msgid "There is no receivable account defined for this journal: \"%s\" (id:%d)" +msgstr "" + #. module: point_of_sale #: field:pos.order,user_salesman_id:0 msgid "Cashier" @@ -2105,7 +2092,7 @@ msgid "POS Orders lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 +#: code:addons/point_of_sale/point_of_sale.py:0 #, python-format msgid "Error" msgstr "" @@ -2133,6 +2120,11 @@ msgstr "" msgid "Date Order" msgstr "" +#. module: point_of_sale +#: model:ir.ui.menu,name:point_of_sale.menu_close_statement +msgid "Close Cash Registers" +msgstr "" + #. module: point_of_sale #: report:pos.details:0 #: report:pos.payment.report.date:0 @@ -2160,8 +2152,8 @@ msgid "Order lines" msgstr "" #. module: point_of_sale -#: field:pos.order.line,price_subtotal:0 -msgid "Subtotal w/o Tax" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: point_of_sale @@ -2211,8 +2203,9 @@ msgid "Description" msgstr "" #. module: point_of_sale -#: model:account.journal,name:point_of_sale.pos_cash_journal -msgid "Cash Journal" +#: selection:report.cash.register,month:0 +#: selection:report.pos.order,month:0 +msgid "May" msgstr "" #. module: point_of_sale @@ -2274,6 +2267,13 @@ msgstr "" msgid " Today " msgstr "" +#. module: point_of_sale +#: code:addons/point_of_sale/wizard/pos_box_out.py:0 +#, python-format +msgid "The maximum value you can still withdraw is exceeded. \n" +" Remaining value is equal to %d " +msgstr "" + #. module: point_of_sale #: field:pos.order,remboursed:0 msgid "Remboursed" diff --git a/addons/process/i18n/process.pot b/addons/process/i18n/process.pot index 667f337fe24..89156cc4833 100644 --- a/addons/process/i18n/process.pot +++ b/addons/process/i18n/process.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:45+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:45+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:49+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,6 +32,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" +#. module: process +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: process #: model:ir.actions.act_window,name:process.action_process_form #: model:ir.ui.menu,name:process.menu_process_form @@ -140,6 +145,11 @@ msgstr "" msgid "Workflow Transitions" msgstr "" +#. module: process +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: process #: field:process.transition.action,action:0 msgid "Action ID" @@ -329,3 +339,8 @@ msgstr "" msgid "Object Method" msgstr "" +#. module: process +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/procurement/i18n/procurement.pot b/addons/procurement/i18n/procurement.pot index 27c61cc23c2..ccf727af0af 100644 --- a/addons/procurement/i18n/procurement.pot +++ b/addons/procurement/i18n/procurement.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:46+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:46+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:50+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:50+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -72,6 +72,11 @@ msgstr "" msgid "Compute Stock Minimum Rules Only" msgstr "" +#. module: procurement +#: model:ir.actions.act_window,help:procurement.procurement_action +msgid "A procurement order is used to record a need in a specific product at a specific location. They are usually created automatically by the sales orders, the Pull Logistics rules or the minimum stock rules. When the procurement order is confirmed, it creates automatically the necessary operations to fullfil the need: purchase order proposition, manufacturing order, etc." +msgstr "" + #. module: procurement #: field:procurement.order,company_id:0 #: field:stock.warehouse.orderpoint,company_id:0 @@ -201,6 +206,11 @@ msgstr "" msgid "Priority" msgstr "" +#. module: procurement +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: procurement #: view:procurement.order:0 #: field:procurement.order,state:0 @@ -226,6 +236,11 @@ msgstr "" msgid "Warehouse" msgstr "" +#. module: procurement +#: model:ir.actions.act_window,help:procurement.action_orderpoint_form +msgid "You can define your minimum stock rules, so that OpenERP will trigger automatically the propositions of manufacturing or purchase orders according to the stock level. Once the virtual stock of a product (=stock on hand minus all confirmed orders and reservations) is bellow the minimum quantity, OpenERP will generate a procurement request in order to fullfil the stock up to the maximum quantity." +msgstr "" + #. module: procurement #: selection:stock.warehouse.orderpoint,logic:0 msgid "Best price (not yet active!)" @@ -236,6 +251,11 @@ msgstr "" msgid "Product & Location" msgstr "" +#. module: procurement +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: procurement #: model:ir.model,name:procurement.model_procurement_order_compute msgid "Compute Procurement" @@ -320,6 +340,11 @@ msgstr "" msgid "Automatic Procurements" msgstr "" +#. module: procurement +#: help:stock.warehouse.orderpoint,qty_multiple:0 +msgid "The procurement quantity will by rounded up to this multiple." +msgstr "" + #. module: procurement #: field:stock.warehouse.orderpoint,product_max_qty:0 msgid "Max Quantity" @@ -440,6 +465,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: procurement +#: model:ir.actions.act_window,help:procurement.procurement_exceptions +msgid "Procurement Orders represent the need for a certain quantity of products, at a given time, in a given location. Sale Orders are one typical source of Procurement Orders (but these are distinct documents). Depending on the procurement parameters and the products configuration, the procurement engine will attempt to satisfy the need by reserving products from stock, or ordering products from a supplier, or passing a manufacturing order, etc. A Procurement Exception occurs when the system cannot find a way to fulfill a procurement. Some exceptions will resolve themselves automatically, but others require manual intervention (those are identified by a specific error message)" +msgstr "" + #. module: procurement #: view:procurement.order:0 msgid "Status" @@ -523,6 +553,7 @@ msgstr "" #. module: procurement #: code:addons/procurement/procurement.py:0 +#: sql_constraint:stock.warehouse.orderpoint:0 #, python-format msgid "Qty Multiple must be greater than zero." msgstr "" @@ -593,8 +624,8 @@ msgid "Done" msgstr "" #. module: procurement -#: help:stock.warehouse.orderpoint,qty_multiple:0 -msgid "The procurement quantity will by rounded up to this multiple." +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" msgstr "" #. module: procurement @@ -607,6 +638,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: procurement +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: procurement #: field:stock.warehouse.orderpoint,logic:0 msgid "Reordering Mode" @@ -632,13 +668,17 @@ msgstr "" msgid "Current" msgstr "" +#. module: procurement +#: view:board.board:0 +msgid "Procurements in Exception" +msgstr "" + #. module: procurement #: view:procurement.order:0 msgid "Details" msgstr "" #. module: procurement -#: view:board.board:0 #: model:ir.actions.act_window,name:procurement.procurement_action5 #: model:ir.actions.act_window,name:procurement.procurement_action_board #: model:ir.actions.act_window,name:procurement.procurement_exceptions diff --git a/addons/product/i18n/product.pot b/addons/product/i18n/product.pot index 7450ef2fd22..030a71ad412 100644 --- a/addons/product/i18n/product.pot +++ b/addons/product/i18n/product.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:47+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:47+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:52+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -196,6 +196,11 @@ msgstr "" msgid "PCE" msgstr "" +#. module: product +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: product #: view:product.template:0 msgid "Miscelleanous" @@ -325,14 +330,6 @@ msgstr "" msgid "Quantity by Package" msgstr "" -#. module: product -#: code:addons/product/pricelist.py:0 -#, python-format -msgid "Could not resolve product category, ' \\n" -" 'you have defined cyclic categories ' \\n" -" 'of products!" -msgstr "" - #. module: product #: view:product.product:0 #: view:product.template:0 @@ -370,6 +367,11 @@ msgstr "" msgid "IT components" msgstr "" +#. module: product +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: product #: field:product.template,product_manager:0 msgid "Product Manager" @@ -479,6 +481,13 @@ msgstr "" msgid "Metal Cleats" msgstr "" +#. module: product +#: code:addons/product/pricelist.py:0 +#, python-format +msgid "No active version for the selected pricelist !\n" +"Please create or activate one." +msgstr "" + #. module: product #: model:ir.model,name:product.model_product_uom_categ msgid "Product uom categ" @@ -634,6 +643,11 @@ msgstr "" msgid "To Purchase" msgstr "" +#. module: product +#: model:product.template,name:product.product_product_mb1_product_template +msgid "Mainboard ASUStek A7N8X" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "New Price =" @@ -859,6 +873,11 @@ msgstr "" msgid "Lead time in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." msgstr "" +#. module: product +#: model:ir.actions.act_window,help:product.product_pricelist_action2 +msgid "A pricelist contains rules to be evaluated in order to compute the purchase or sale price for all the partners assigned to a pricelist. Pricelists have several versions (2010, 2011, Promotion of February 2010, etc.) and each version has several rules. Example: the customer price of this category of product will be based on the supplier price multiplied by 1.80." +msgstr "" + #. module: product #: selection:product.template,type:0 msgid "Stockable Product" @@ -889,6 +908,11 @@ msgstr "" msgid "Partner Information" msgstr "" +#. module: product +#: model:ir.actions.act_window,help:product.product_normal_action +msgid "You must define a Product for everything you buy or sell. They can be raw materials, stockable products, consumables or services. The Product form contains a detailed information of your products related to procurement logistics, sales price, product category, suppliers and so on." +msgstr "" + #. module: product #: model:ir.model,name:product.model_res_users msgid "res.users" @@ -921,6 +945,11 @@ msgstr "" msgid "Price List Items" msgstr "" +#. module: product +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + #. module: product #: selection:product.uom,uom_type:0 msgid "Bigger than the reference UoM" @@ -947,8 +976,8 @@ msgid "Price Surcharge" msgstr "" #. module: product -#: model:product.template,name:product.product_product_mb1_product_template -msgid "Mainboard ASUStek A7N8X" +#: model:ir.actions.act_window,help:product.product_uom_form_action +msgid "Create and manage the units of measure you want to be used in your system. You can define a conversion rate to be used between the several Unit of Measure within the same category." msgstr "" #. module: product @@ -969,13 +998,6 @@ msgstr "" msgid "Name" msgstr "" -#. module: product -#: code:addons/product/pricelist.py:0 -#, python-format -msgid "No active version for the selected pricelist !\n' \\n" -" 'Please create or activate one." -msgstr "" - #. module: product #: view:product.product:0 msgid "Stockable" @@ -1119,11 +1141,21 @@ msgstr "" msgid "Partners" msgstr "" +#. module: product +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: product #: help:product.template,sale_delay:0 msgid "This is the average delay in days between the confirmation of the customer order and the delivery of the finished products. It's the time you promise to your customers." msgstr "" +#. module: product +#: model:ir.actions.act_window,help:product.product_uom_categ_form_action +msgid "Create and manage the units of measure categories you want to be used in your system. If several units of measures are in the same category, they can be converted within each other. For example, in the unit of measure category \"Time\", you will have the following UoM: Hours, Days." +msgstr "" + #. module: product #: view:product.product:0 #: view:product.template:0 @@ -1204,6 +1236,11 @@ msgstr "" msgid "Purchase Unit of Measure" msgstr "" +#. module: product +#: model:ir.actions.act_window,help:product.product_category_action +msgid "Here is a list of all your products classified by category. You can click on a category to get the list of all products linked to this category or to a child of this category." +msgstr "" + #. module: product #: field:product.template,supply_method:0 msgid "Supply method" @@ -1308,6 +1345,11 @@ msgstr "" msgid "Variant Price Margin" msgstr "" +#. module: product +#: sql_constraint:product.uom:0 +msgid "The conversion ratio for a unit of measure cannot be 0!" +msgstr "" + #. module: product #: help:product.packaging,ean:0 msgid "The EAN code of the package unit." @@ -1354,12 +1396,22 @@ msgstr "" msgid "Unit Price" msgstr "" +#. module: product +#: model:ir.actions.act_window,help:product.product_normal_action_puchased +msgid "Products can be purchased and/or sold. They can be raw materials, stockable products, consumables or services. The Product form contains a detailed information on your products related to procurement logistics, sales price, product category, suppliers and so on." +msgstr "" + #. module: product #: model:product.category,name:product.product_category_7 #: model:product.template,name:product.product_product_1_product_template msgid "Onsite Intervention" msgstr "" +#. module: product +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: product #: model:product.pricelist,name:product.list0 msgid "Public Pricelist" @@ -1460,6 +1512,11 @@ msgstr "" msgid "ATX Mid-size Tower" msgstr "" +#. module: product +#: field:product.packaging,ean:0 +msgid "EAN" +msgstr "" + #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" @@ -1690,6 +1747,11 @@ msgstr "" msgid "Box" msgstr "" +#. module: product +#: model:ir.actions.act_window,help:product.product_ul_form_action +msgid "Create and manage your packaging dimensions and types you want to be maintained in your system." +msgstr "" + #. module: product #: model:product.template,name:product.product_product_rearpanelarm1_product_template msgid "Rear Panel SHE200" @@ -1886,6 +1948,11 @@ msgstr "" msgid "RAM on demand" msgstr "" +#. module: product +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: product #: view:res.partner:0 msgid "Sales Properties" @@ -1923,8 +1990,9 @@ msgid "Description" msgstr "" #. module: product -#: field:product.packaging,ean:0 -msgid "EAN" +#: code:addons/product/pricelist.py:0 +#, python-format +msgid "Could not resolve product category, you have defined cyclic categories of products!" msgstr "" #. module: product @@ -1987,6 +2055,11 @@ msgstr "" msgid "Palletization" msgstr "" +#. module: product +#: sql_constraint:decimal.precision:0 +msgid "Only one value can be defined for each given usage!" +msgstr "" + #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" @@ -2043,6 +2116,11 @@ msgstr "" msgid "The volume in m3." msgstr "" +#. module: product +#: model:ir.actions.act_window,help:product.product_pricelist_action +msgid "There can be more than one version of a pricelist. If you need to create new versions of a pricelist, you can do it and manage them from here. Some examples of versions: 2010, 2011, Promotion of February 2010, etc." +msgstr "" + #. module: product #: help:product.pricelist.item,categ_id:0 msgid "Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products" diff --git a/addons/product_expiry/i18n/product_expiry.pot b/addons/product_expiry/i18n/product_expiry.pot index 54a677cc6b6..dd7e8e65884 100644 --- a/addons/product_expiry/i18n/product_expiry.pot +++ b/addons/product_expiry/i18n/product_expiry.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:47+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:47+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:52+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,11 +50,21 @@ msgstr "" msgid "Product Life Time" msgstr "" +#. module: product_expiry +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: product_expiry #: field:product.product,use_time:0 msgid "Product Use Time" msgstr "" +#. module: product_expiry +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: product_expiry #: help:stock.production.lot,alert_date:0 msgid "The date signifying an alert to notify about the production lot." @@ -107,6 +117,11 @@ msgstr "" msgid "Dates" msgstr "" +#. module: product_expiry +#: sql_constraint:product.uom:0 +msgid "The conversion ratio for a unit of measure cannot be 0!" +msgstr "" + #. module: product_expiry #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" @@ -172,3 +187,8 @@ msgstr "" msgid "Product Alert Time" msgstr "" +#. module: product_expiry +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/product_manufacturer/i18n/product_manufacturer.pot b/addons/product_manufacturer/i18n/product_manufacturer.pot index f7c7743f283..6173793c35b 100644 --- a/addons/product_manufacturer/i18n/product_manufacturer.pot +++ b/addons/product_manufacturer/i18n/product_manufacturer.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:48+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:48+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:53+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" msgid "Manufacturer Product Code" msgstr "" +#. module: product_manufacturer +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: product_manufacturer #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -62,6 +67,16 @@ msgstr "" msgid "Value" msgstr "" +#. module: product_manufacturer +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: product_manufacturer +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: product_manufacturer #: view:product.product:0 #: field:product.product,attribute_ids:0 diff --git a/addons/product_margin/i18n/product_margin.pot b/addons/product_margin/i18n/product_margin.pot index e1c2808bd65..9de759d5b0d 100644 --- a/addons/product_margin/i18n/product_margin.pot +++ b/addons/product_margin/i18n/product_margin.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:48+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:48+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:53+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,8 +42,8 @@ msgid "Turnorder - Standard price" msgstr "" #. module: product_margin -#: field:product.margin,to_date:0 -msgid "To" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: product_margin @@ -146,6 +146,11 @@ msgstr "" msgid "Total Cost" msgstr "" +#. module: product_margin +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: product_margin #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -228,6 +233,11 @@ msgstr "" msgid "Total margin * 100 / Turnover" msgstr "" +#. module: product_margin +#: field:product.margin,to_date:0 +msgid "To" +msgstr "" + #. module: product_margin #: view:product.product:0 msgid "Analysis Criteria" @@ -288,6 +298,11 @@ msgstr "" msgid "Sum of Quantity in Customer Invoices" msgstr "" +#. module: product_margin +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: product_margin #: model:ir.model,name:product_margin.model_product_margin msgid "Product Margin" diff --git a/addons/product_visible_discount/i18n/product_visible_discount.pot b/addons/product_visible_discount/i18n/product_visible_discount.pot index ef29a3e4cd6..0e1d895f5d4 100644 --- a/addons/product_visible_discount/i18n/product_visible_discount.pot +++ b/addons/product_visible_discount/i18n/product_visible_discount.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:48+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:48+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:53+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: product_visible_discount +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:0 #, python-format @@ -49,9 +54,13 @@ msgid "Invoice Line" msgstr "" #. module: product_visible_discount -#: code:addons/product_visible_discount/product_visible_discount.py:0 -#, python-format -msgid "You must first define a pricelist for Customer !" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: product_visible_discount +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: product_visible_discount @@ -70,3 +79,9 @@ msgstr "" msgid "Sale Order Line" msgstr "" +#. module: product_visible_discount +#: code:addons/product_visible_discount/product_visible_discount.py:0 +#, python-format +msgid "You must first define a pricelist for Customer !" +msgstr "" + diff --git a/addons/profile_tools/i18n/profile_tools.pot b/addons/profile_tools/i18n/profile_tools.pot index a486537947e..7b0e580e781 100644 --- a/addons/profile_tools/i18n/profile_tools.pot +++ b/addons/profile_tools/i18n/profile_tools.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:48+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:48+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:54+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,11 +15,6 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: profile_tools -#: field:misc_tools.installer,idea:0 -msgid "Ideas Box" -msgstr "" - #. module: profile_tools #: help:misc_tools.installer,idea:0 msgid "Promote ideas of the employees, votes and discussion on best ideas." @@ -31,18 +26,8 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: profile_tools -#: field:misc_tools.installer,progress:0 -msgid "Configuration Progress" -msgstr "" - -#. module: profile_tools -#: help:misc_tools.installer,subscription:0 -msgid "Helps to generate automatically recurring documents." -msgstr "" - -#. module: profile_tools -#: field:misc_tools.installer,lunch:0 -msgid "Lunch" +#: help:misc_tools.installer,share:0 +msgid "Allows you to give restricted access to your OpenERP documents to external users, such as customers, suppliers, or accountants. You can share any OpenERP Menu such as your project tasks, support requests, invoices, etc." msgstr "" #. module: profile_tools @@ -50,21 +35,6 @@ msgstr "" msgid "Tools Configuration" msgstr "" -#. module: profile_tools -#: field:misc_tools.installer,config_logo:0 -msgid "Image" -msgstr "" - -#. module: profile_tools -#: view:misc_tools.installer:0 -msgid "title" -msgstr "" - -#. module: profile_tools -#: field:misc_tools.installer,subscription:0 -msgid "Recurring Documents" -msgstr "" - #. module: profile_tools #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -76,18 +46,8 @@ msgid "misc_tools.installer" msgstr "" #. module: profile_tools -#: field:misc_tools.installer,share:0 -msgid "Share Data / Portals" -msgstr "" - -#. module: profile_tools -#: help:misc_tools.installer,survey:0 -msgid "Allows you to organize surveys." -msgstr "" - -#. module: profile_tools -#: field:misc_tools.installer,survey:0 -msgid "Survey" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: profile_tools @@ -95,16 +55,6 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" -#. module: profile_tools -#: help:misc_tools.installer,share:0 -msgid "This module allows you to easily give restricted access of any filtered list of objects to any customer or supplier.Just click on the share icon to give access to your customers on their project's tasks, support requests, invoices, etc." -msgstr "" - -#. module: profile_tools -#: model:ir.module.module,shortdesc:profile_tools.module_meta_information -msgid "Miscellaneous Tools" -msgstr "" - #. module: profile_tools #: model:ir.module.module,description:profile_tools.module_meta_information msgid "Installs tools for lunch,survey,subscription and audittrail\n" @@ -112,3 +62,78 @@ msgid "Installs tools for lunch,survey,subscription and audittrail\n" " " msgstr "" +#. module: profile_tools +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,progress:0 +msgid "Configuration Progress" +msgstr "" + +#. module: profile_tools +#: help:misc_tools.installer,survey:0 +msgid "Allows you to organize surveys." +msgstr "" + +#. module: profile_tools +#: model:ir.module.module,shortdesc:profile_tools.module_meta_information +msgid "Miscellaneous Tools" +msgstr "" + +#. module: profile_tools +#: help:misc_tools.installer,pad:0 +msgid "This module creates a tighter integration between a Pad instance of your choosing and your OpenERP Web Client by letting you easily link pads to OpenERP objects via OpenERP attachments." +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,lunch:0 +msgid "Lunch" +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,idea:0 +msgid "Ideas Box" +msgstr "" + +#. module: profile_tools +#: help:misc_tools.installer,subscription:0 +msgid "Helps to generate automatically recurring documents." +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,subscription:0 +msgid "Recurring Documents" +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,survey:0 +msgid "Survey" +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,config_logo:0 +msgid "Image" +msgstr "" + +#. module: profile_tools +#: view:misc_tools.installer:0 +msgid "title" +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,share:0 +msgid "Web Share" +msgstr "" + +#. module: profile_tools +#: field:misc_tools.installer,pad:0 +msgid "Native pad integration" +msgstr "" + +#. module: profile_tools +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/project/i18n/project.pot b/addons/project/i18n/project.pot index 2f94d85b9d2..a91e98a4a68 100644 --- a/addons/project/i18n/project.pot +++ b/addons/project/i18n/project.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:49+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:49+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:55+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "The chosen company is not in the allowed companies for this user" msgstr "" +#. module: project +#: sql_constraint:res.users:0 +msgid "You can not have two users with the same login !" +msgstr "" + #. module: project #: help:project.task.reevaluate,remaining_hours:0 msgid "Put here the remaining hours required to close the task." @@ -418,8 +423,8 @@ msgid "Done by" msgstr "" #. module: project -#: view:project.task:0 -msgid "Planning" +#: model:ir.actions.act_window,help:project.open_task_type_form +msgid "Define here the steps that will be used on the project from the creation of the task, up to the closing of the task or issue. You will use these stages in order to track the progress of the resolution of a task or an issue." msgstr "" #. module: project @@ -436,11 +441,6 @@ msgstr "" msgid "_Cancel" msgstr "" -#. module: project -#: view:project.task.delegate:0 -msgid "_Delegate" -msgstr "" - #. module: project #: model:ir.model,name:project.model_res_partner #: view:project.project:0 @@ -461,6 +461,11 @@ msgstr "" msgid " (copy)" msgstr "" +#. module: project +#: field:project.task,user_id:0 +msgid "Responsible" +msgstr "" + #. module: project #: help:project.installer,hr_timesheet_sheet:0 msgid "Tracks and helps employees encode and validate timesheets and attendances." @@ -482,6 +487,11 @@ msgstr "" msgid "Reevaluate Task" msgstr "" +#. module: project +#: view:project.project:0 +msgid "Date Stop: %(date)s" +msgstr "" + #. module: project #: model:project.task.type,name:project.project_tt_testing msgid "Testing" @@ -522,6 +532,11 @@ msgstr "" msgid "From draft state, it will come into the open state." msgstr "" +#. module: project +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project #: view:report.project.task.user:0 #: field:report.project.task.user,no_of_days:0 @@ -539,9 +554,8 @@ msgid "Percent of tasks closed according to the total of tasks todo." msgstr "" #. module: project -#: view:project.task.delegate:0 -#: field:project.task.delegate,new_task_description:0 -msgid "New Task Description" +#: model:ir.actions.act_window,help:project.action_view_task +msgid "A task represents a work that has to be done. Each user works in his own list of tasks where he can record his task work in hours. He can work and close the task itself or delegate it to antoher user. If you delegate a task to another user, you get a new task in pending state, which will be re-opened when you have to review the work achieved. If you install the project_timesheet module, tasks works can be invoiced based on the project configuration. With the project_mrp module, sales orders can create tasks automatically when they are confirmed." msgstr "" #. module: project @@ -735,6 +749,7 @@ msgstr "" #. module: project #: model:ir.actions.act_window,name:project.action_project_task_user_tree +#: model:ir.ui.menu,name:project.menu_project_task_user_tree #: view:report.project.task.user:0 msgid "Tasks Analysis" msgstr "" @@ -771,8 +786,8 @@ msgid "Project" msgstr "" #. module: project -#: view:project.task.reevaluate:0 -msgid "_Evaluate" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: project @@ -1058,6 +1073,11 @@ msgstr "" msgid "Implements and tracks the concepts and task types defined in the SCRUM methodology." msgstr "" +#. module: project +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: project #: view:report.project.task.user:0 #: field:report.project.task.user,closing_days:0 @@ -1180,9 +1200,8 @@ msgid "Reactivate Project" msgstr "" #. module: project -#: selection:project.task,priority:0 -#: selection:report.project.task.user,priority:0 -msgid "Urgent" +#: view:project.task.delegate:0 +msgid "_Delegate" msgstr "" #. module: project @@ -1259,6 +1278,11 @@ msgstr "" msgid "State" msgstr "" +#. module: project +#: model:ir.actions.act_window,help:project.action_project_task_user_tree +msgid "This report allows you to analyse the performance of your projects and users. You can analyse the quantities of tasks, the hours spent compared to the planned hours, the average number of days to open or close a task, etc." +msgstr "" + #. module: project #: code:addons/project/project.py:0 #, python-format @@ -1286,6 +1310,11 @@ msgstr "" msgid "Done" msgstr "" +#. module: project +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: project #: model:process.transition.action,name:project.process_transition_action_draftcanceltask0 #: model:process.transition.action,name:project.process_transition_action_opencanceltask0 @@ -1305,6 +1334,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: project +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project #: code:addons/project/project.py:0 #, python-format @@ -1352,8 +1386,9 @@ msgid "Current Activity" msgstr "" #. module: project -#: field:project.task,user_id:0 -msgid "Responsible" +#: view:project.task.delegate:0 +#: field:project.task.delegate,new_task_description:0 +msgid "New Task Description" msgstr "" #. module: project @@ -1384,6 +1419,11 @@ msgstr "" msgid "Very Low" msgstr "" +#. module: project +#: view:project.task:0 +msgid "Planning" +msgstr "" + #. module: project #: field:project.project,warn_manager:0 #: field:project.task.close,manager_warn:0 @@ -1410,6 +1450,11 @@ msgstr "" msgid "Re-evaluate Task" msgstr "" +#. module: project +#: view:project.task.reevaluate:0 +msgid "_Evaluate" +msgstr "" + #. module: project #: help:project.installer,project_long_term:0 msgid "Enables long-term projects tracking, including multiple-phase projects and resource allocation handling." @@ -1425,6 +1470,11 @@ msgstr "" msgid "Bill Time on Tasks" msgstr "" +#. module: project +#: model:ir.actions.act_window,help:project.open_view_project_all +msgid "A project contains a set of tasks or issues that will be performed by your resources assigned on it. A project can be put into a hierarchy, as a child of a Parent Project. This allows you to design large project structure with different phases spread over the project duration cycle. Each user can set his default project in his own preferences, in order to filter automatically the tasks or issues he usually works on." +msgstr "" + #. module: project #: view:board.board:0 msgid "My Remaining Hours by Project" @@ -1445,8 +1495,9 @@ msgid "Your Task Title" msgstr "" #. module: project -#: view:project.project:0 -msgid "Scheduling" +#: selection:project.task,priority:0 +#: selection:report.project.task.user,priority:0 +msgid "Urgent" msgstr "" #. module: project @@ -1712,7 +1763,7 @@ msgstr "" #. module: project #: view:project.project:0 -msgid "Date Stop: %(date_stop)s" +msgid "Scheduling" msgstr "" #. module: project diff --git a/addons/project_caldav/i18n/project_caldav.pot b/addons/project_caldav/i18n/project_caldav.pot index e1ce4099635..f68d94e1cf5 100644 --- a/addons/project_caldav/i18n/project_caldav.pot +++ b/addons/project_caldav/i18n/project_caldav.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:49+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:49+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:56+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,6 +66,11 @@ msgstr "" msgid "Caldav URL" msgstr "" +#. module: project_caldav +#: sql_constraint:basic.calendar.fields:0 +msgid "Can not map a field more than once" +msgstr "" + #. module: project_caldav #: selection:project.task,month_list:0 msgid "March" @@ -167,6 +172,11 @@ msgstr "" msgid "Sun" msgstr "" +#. module: project_caldav +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project_caldav #: selection:project.task,select1:0 msgid "Day of month" @@ -187,6 +197,11 @@ msgstr "" msgid "Weeks" msgstr "" +#. module: project_caldav +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_caldav #: field:project.task,select1:0 msgid "Option" @@ -247,6 +262,12 @@ msgstr "" msgid "First" msgstr "" +#. module: project_caldav +#: code:addons/project_caldav/project_caldav.py:0 +#, python-format +msgid "Tasks" +msgstr "" + #. module: project_caldav #: selection:project.task,month_list:0 msgid "September" @@ -397,6 +418,11 @@ msgstr "" msgid "of" msgstr "" +#. module: project_caldav +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project_caldav #: selection:project.task,show_as:0 msgid "Busy" diff --git a/addons/project_gtd/i18n/project_gtd.pot b/addons/project_gtd/i18n/project_gtd.pot index 9ec692200f6..3ad8323cd5b 100644 --- a/addons/project_gtd/i18n/project_gtd.pot +++ b/addons/project_gtd/i18n/project_gtd.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:50+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:50+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:56+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -237,7 +237,7 @@ msgstr "" #. module: project_gtd #: selection:project.gtd.timebox,icon:0 -msgid "STOCK_GO_BACK" +msgid "STOCK_MEDIA_PREVIOUS" msgstr "" #. module: project_gtd @@ -260,6 +260,11 @@ msgstr "" msgid "Next" msgstr "" +#. module: project_gtd +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project_gtd #: selection:project.gtd.timebox,icon:0 msgid "STOCK_DISCONNECT" @@ -407,9 +412,8 @@ msgid "STOCK_DND" msgstr "" #. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.action_project_gtd_fill -#: view:project.timebox.fill.plan:0 -msgid "Plannify Timebox" +#: selection:project.gtd.timebox,icon:0 +msgid "STOCK_CLEAR" msgstr "" #. module: project_gtd @@ -433,8 +437,9 @@ msgid "terp-locked" msgstr "" #. module: project_gtd -#: selection:project.gtd.timebox,icon:0 -msgid "STOCK_CLEAR" +#: model:ir.actions.act_window,name:project_gtd.action_project_gtd_fill +#: view:project.timebox.fill.plan:0 +msgid "Plannify Timebox" msgstr "" #. module: project_gtd @@ -583,8 +588,8 @@ msgid "terp-gtk-jump-to-rtl" msgstr "" #. module: project_gtd -#: selection:project.gtd.timebox,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" +#: model:ir.model,name:project_gtd.model_project_gtd_timebox +msgid "project.gtd.timebox" msgstr "" #. module: project_gtd @@ -622,6 +627,11 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: project_gtd +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.action_project_gtd_empty #: view:project.timebox.empty:0 @@ -633,6 +643,11 @@ msgstr "" msgid "terp-folder-blue" msgstr "" +#. module: project_gtd +#: selection:project.gtd.timebox,icon:0 +msgid "STOCK_GO_BACK" +msgstr "" + #. module: project_gtd #: selection:project.gtd.timebox,icon:0 msgid "STOCK_JUSTIFY_FILL" @@ -785,6 +800,11 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: project_gtd +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project_gtd #: selection:project.gtd.timebox,icon:0 msgid "terp-go-today" @@ -846,6 +866,11 @@ msgstr "" msgid "Task" msgstr "" +#. module: project_gtd +#: model:ir.actions.act_window,help:project_gtd.open_gtd_timebox_tree +msgid "Timeboxes are defined in the \"Getting Things Done\" methodology. It defines a period of time in order to categorize your tasks: today, this week, this month, long term." +msgstr "" + #. module: project_gtd #: selection:project.gtd.timebox,icon:0 msgid "terp-report" @@ -901,6 +926,11 @@ msgstr "" msgid "Project Timebox Fill" msgstr "" +#. module: project_gtd +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_gtd #: field:project.timebox.empty,name:0 msgid "Name" @@ -917,11 +947,6 @@ msgstr "" msgid "Contexts" msgstr "" -#. module: project_gtd -#: model:ir.model,name:project_gtd.model_project_gtd_timebox -msgid "project.gtd.timebox" -msgstr "" - #. module: project_gtd #: selection:project.gtd.timebox,icon:0 msgid "STOCK_DIALOG_INFO" @@ -976,6 +1001,11 @@ msgstr "" msgid "terp-stage" msgstr "" +#. module: project_gtd +#: model:ir.actions.act_window,help:project_gtd.open_gtd_context_tree +msgid "Contexts are defined in the \"Getting Things Done\" methodology. It allows you to categorize your tasks according to the context in which they have to be done: at office, at home, when I take my car, etc." +msgstr "" + #. module: project_gtd #: selection:project.gtd.timebox,icon:0 msgid "STOCK_GOTO_BOTTOM" diff --git a/addons/project_issue/i18n/project_issue.pot b/addons/project_issue/i18n/project_issue.pot index 4b8ef57c35f..d43e8e2b62a 100644 --- a/addons/project_issue/i18n/project_issue.pot +++ b/addons/project_issue/i18n/project_issue.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:50+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:50+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:57+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:57+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -88,6 +88,13 @@ msgstr "" msgid "Days to Open" msgstr "" +#. module: project_issue +#: code:addons/project_issue/project_issue.py:0 +#, python-format +msgid "You cannot escalate this issue.\n" +"The relevant Project has not configured the Escalation Project!" +msgstr "" + #. module: project_issue #: view:project.issue.report:0 msgid "Date Closed" @@ -178,8 +185,13 @@ msgid "If any issue is escalated from the current Project, it will be listed und msgstr "" #. module: project_issue -#: field:project.issue,date_deadline:0 -msgid "Deadline" +#: view:project.issue:0 +msgid "Extra Info" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "This report on the project issues allows you to analyse the quality of your support or after-sales services. You can track the issues per age. You can analyse the time required to open or close an issue, the number of email to exchange and the time spent on average by issues." msgstr "" #. module: project_issue @@ -201,6 +213,11 @@ msgstr "" msgid "Previous" msgstr "" +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_categ_act0 +msgid "Issues such as system bugs, client complains, material breakdowns are collected here. You can define the stages assigned to the resolution of the issue on the project. (analysis, development, done) Using the mailgateway module, the issues can be integrated to an email address (example: support@mycompany.com)" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -243,6 +260,11 @@ msgstr "" msgid "Priority" msgstr "" +#. module: project_issue +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Send New Email" @@ -390,6 +412,11 @@ msgstr "" msgid "The channels represent the different communication modes available with the customer. With each commercial opportunity, you can indicate the canall which is this opportunity source." msgstr "" +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_version_action +msgid "You can use the issues tracker in OpenERP to handle bugs in the software development project, to handle claims in after-sales services, etc. Define here the different versions of your products on which you can work on issues." +msgstr "" + #. module: project_issue #: code:addons/project_issue/project_issue.py:0 #, python-format @@ -445,6 +472,11 @@ msgstr "" msgid "Feature Requests" msgstr "" +#. module: project_issue +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -473,12 +505,6 @@ msgstr "" msgid "Maintenance" msgstr "" -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "You cannot escalate this issue.\nThe relevant Project has not configured the Escalation Project!" -msgstr "" - #. module: project_issue #: selection:project.issue,state:0 #: selection:project.issue.report,state:0 @@ -551,6 +577,11 @@ msgstr "" msgid "June" msgstr "" +#. module: project_issue +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: project_issue #: field:project.issue,day_close:0 msgid "Days to Close" @@ -758,6 +789,11 @@ msgstr "" msgid "Description" msgstr "" +#. module: project_issue +#: field:project.issue,section_id:0 +msgid "Sales Team" +msgstr "" + #. module: project_issue #: selection:project.issue.report,month:0 msgid "May" @@ -779,11 +815,6 @@ msgstr "" msgid "Employee's Name" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "Emails" -msgstr "" - #. module: project_issue #: help:project.issue,state:0 msgid "The state is set to 'Draft', when a case is created. \n" @@ -792,6 +823,11 @@ msgid "The state is set to 'Draft', when a case is created. "If the case needs to be reviewed then the state is set to 'Pending'." msgstr "" +#. module: project_issue +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_issue #: selection:project.issue.report,month:0 msgid "February" @@ -879,8 +915,8 @@ msgid "High" msgstr "" #. module: project_issue -#: field:project.issue,section_id:0 -msgid "Sales Team" +#: field:project.issue,date_deadline:0 +msgid "Deadline" msgstr "" #. module: project_issue diff --git a/addons/project_issue_sheet/i18n/project_issue_sheet.pot b/addons/project_issue_sheet/i18n/project_issue_sheet.pot index 02c77378242..eaa03959cc2 100644 --- a/addons/project_issue_sheet/i18n/project_issue_sheet.pot +++ b/addons/project_issue_sheet/i18n/project_issue_sheet.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:51+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:51+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:58+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: project_issue_sheet +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_issue_sheet #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -50,6 +55,11 @@ msgstr "" msgid "Analytic Account" msgstr "" +#. module: project_issue_sheet +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project_issue_sheet #: view:project.issue:0 msgid "Worklogs" @@ -75,3 +85,8 @@ msgstr "" msgid "Issue" msgstr "" +#. module: project_issue_sheet +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/project_long_term/i18n/project_long_term.pot b/addons/project_long_term/i18n/project_long_term.pot index aa2332a2b47..16b98b001ec 100644 --- a/addons/project_long_term/i18n/project_long_term.pot +++ b/addons/project_long_term/i18n/project_long_term.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:51+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:51+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:58+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -110,6 +110,7 @@ msgstr "" #: field:project.phase,project_id:0 #: view:project.resource.allocation:0 #: field:project.resource.allocation,project_id:0 +#: view:project.task:0 msgid "Project" msgstr "" @@ -179,6 +180,11 @@ msgstr "" msgid "Dates" msgstr "" +#. module: project_long_term +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project_long_term #: view:project.phase:0 #: field:project.phase,state:0 @@ -196,6 +202,11 @@ msgstr "" msgid "Compute Scheduling of phases for all or specified project" msgstr "" +#. module: project_long_term +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_long_term #: field:project.phase,product_uom:0 msgid "Duration UoM" @@ -224,6 +235,12 @@ msgstr "" msgid "Compute Scheduling of Task" msgstr "" +#. module: project_long_term +#: model:ir.actions.act_window,help:project_long_term.action_project_compute_phases +msgid "To schedule phases of all or a specified project. It then open a gantt view.\n" +" " +msgstr "" + #. module: project_long_term #: help:project.resource.allocation,date_start:0 msgid "Starting Date" @@ -306,6 +323,11 @@ msgstr "" msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: project_long_term +#: model:ir.actions.act_window,help:project_long_term.act_project_phase +msgid "A project can be split into the different phases. For each phase, you can define your resources allocation, describe different tasks and link your phase to previous and next ones, add date constraints for the automated scheduling. Use the long term planning in order to planify your available human resources, convert your phases into a series of tasks when you start working on it." +msgstr "" + #. module: project_long_term #: view:project.phase:0 #: selection:project.phase,state:0 @@ -392,6 +414,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: project_long_term +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project_long_term #: view:project.phase:0 #: selection:project.phase,state:0 @@ -424,6 +451,11 @@ msgstr "" msgid "Working Time" msgstr "" +#. module: project_long_term +#: view:project.phase:0 +msgid "Current" +msgstr "" + #. module: project_long_term #: view:project.phase:0 msgid "Start Phase" @@ -512,6 +544,7 @@ msgstr "" #: model:ir.model,name:project_long_term.model_project_phase #: view:project.phase:0 #: field:project.resource.allocation,phase_id:0 +#: view:project.task:0 #: field:project.task,phase_id:0 msgid "Project Phase" msgstr "" diff --git a/addons/project_mailgate/i18n/project_mailgate.pot b/addons/project_mailgate/i18n/project_mailgate.pot index 120de011012..4626a2fd331 100644 --- a/addons/project_mailgate/i18n/project_mailgate.pot +++ b/addons/project_mailgate/i18n/project_mailgate.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:51+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:51+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:58+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: project_mailgate +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_mailgate #: view:project.task:0 msgid "History Information" @@ -35,6 +40,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: project_mailgate +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project_mailgate #: model:ir.module.module,shortdesc:project_mailgate.module_meta_information msgid "Project MailGateWay" @@ -54,6 +64,11 @@ msgid "This module is an interface that synchronises mails with OpenERP Project " " msgstr "" +#. module: project_mailgate +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project_mailgate #: code:addons/project_mailgate/project_mailgate.py:0 #, python-format diff --git a/addons/project_messages/i18n/project_messages.pot b/addons/project_messages/i18n/project_messages.pot index 885051f9c33..fc002a6b54f 100644 --- a/addons/project_messages/i18n/project_messages.pot +++ b/addons/project_messages/i18n/project_messages.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:52+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:52+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:59+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,26 +15,41 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: project_messages -#: field:project.messages,to_id:0 -msgid "To" -msgstr "" - -#. module: project_messages -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - #. module: project_messages #: field:project.messages,from_id:0 msgid "From" msgstr "" +#. module: project_messages +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." +msgstr "" + +#. module: project_messages +#: field:project.messages,to_id:0 +msgid "To" +msgstr "" + #. module: project_messages #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." msgstr "" +#. module: project_messages +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: project_messages +#: view:project.messages:0 +msgid "Today" +msgstr "" + +#. module: project_messages +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_messages #: help:project.messages,to_id:0 msgid "Keep this empty to broadcast the message." @@ -46,13 +61,18 @@ msgid "Creation Date" msgstr "" #. module: project_messages -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: model:ir.model,name:project_messages.model_project_messages +msgid "project.messages" msgstr "" #. module: project_messages -#: model:ir.model,name:project_messages.model_project_messages -msgid "project.messages" +#: model:ir.module.module,shortdesc:project_messages.module_meta_information +msgid "In-Project Messaging System" +msgstr "" + +#. module: project_messages +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: project_messages @@ -73,17 +93,29 @@ msgstr "" #. module: project_messages #: view:project.messages:0 -msgid "Group By..." +msgid "Message To" msgstr "" #. module: project_messages -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: model:ir.actions.act_window,help:project_messages.messages_form +msgid "An in-project messagery system permits an efficient and trackable communication between project members. The messages are kept in the system and can then be used for post-analysis." +msgstr "" + +#. module: project_messages +#: model:ir.actions.act_window,name:project_messages.messages_form +#: model:ir.ui.menu,name:project_messages.menu_messages_form +#: view:project.messages:0 +msgid "Project Messages" msgstr "" #. module: project_messages #: view:project.messages:0 -msgid "Message To" +msgid "Group By..." +msgstr "" + +#. module: project_messages +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: project_messages @@ -99,19 +131,7 @@ msgid "Message From" msgstr "" #. module: project_messages -#: model:ir.actions.act_window,name:project_messages.messages_form -#: model:ir.ui.menu,name:project_messages.menu_messages_form -#: view:project.messages:0 -msgid "Project Messages" -msgstr "" - -#. module: project_messages -#: view:project.messages:0 -msgid "Today" -msgstr "" - -#. module: project_messages -#: model:ir.module.module,shortdesc:project_messages.module_meta_information -msgid "In-Project Messaging System" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/project_mrp/i18n/project_mrp.pot b/addons/project_mrp/i18n/project_mrp.pot index 95d06e79b5b..3f449977630 100644 --- a/addons/project_mrp/i18n/project_mrp.pot +++ b/addons/project_mrp/i18n/project_mrp.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:52+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:52+0000\n" +"POT-Creation-Date: 2010-11-18 16:12:59+0000\n" +"PO-Revision-Date: 2010-11-18 16:12:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: project_mrp +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 msgid "For each product, on type service and on order" @@ -44,8 +49,8 @@ msgid "Product type is service, then its creates the task." msgstr "" #. module: project_mrp -#: model:process.transition,note:project_mrp.process_transition_procuretask0 -msgid "if product type is 'service' then it creates the task." +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: project_mrp @@ -104,3 +109,13 @@ msgstr "" msgid "In case you sell services on sale order" msgstr "" +#. module: project_mrp +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: project_mrp +#: model:process.transition,note:project_mrp.process_transition_procuretask0 +msgid "if product type is 'service' then it creates the task." +msgstr "" + diff --git a/addons/project_planning/i18n/project_planning.pot b/addons/project_planning/i18n/project_planning.pot index 2f757f10af5..f73ee159339 100644 --- a/addons/project_planning/i18n/project_planning.pot +++ b/addons/project_planning/i18n/project_planning.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:53+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:53+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:00+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -176,6 +176,16 @@ msgstr "" msgid "Analytic account" msgstr "" +#. module: project_planning +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: project_planning +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_planning #: help:report_account_analytic.planning.account,plan_open:0 msgid "This value is given by the sum of time allocation with the checkbox 'Assigned in Taks' set to FALSE, expressed in days." @@ -422,6 +432,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: project_planning +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project_planning #: model:ir.model,name:project_planning.model_report_account_analytic_planning_user #: view:report_account_analytic.planning:0 @@ -474,6 +489,11 @@ msgstr "" msgid "Summary by user" msgstr "" +#. module: project_planning +#: model:ir.actions.act_window,help:project_planning.action_account_analytic_planning_form +msgid "With its commun system for scheduling all resources of a company (people and materials), OpenERP allows you to encode then compute automatically tasks and phases scheduling, track resources allocation and availibility." +msgstr "" + #. module: project_planning #: view:report_account_analytic.planning:0 msgid "Total Time Allocation without Tasks" diff --git a/addons/project_retro_planning/i18n/project_retro_planning.pot b/addons/project_retro_planning/i18n/project_retro_planning.pot index 179e1e5f988..dca10dd4a9d 100644 --- a/addons/project_retro_planning/i18n/project_retro_planning.pot +++ b/addons/project_retro_planning/i18n/project_retro_planning.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:53+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:53+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:00+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,8 +25,18 @@ msgstr "" msgid "Project Retro planning" msgstr "" +#. module: project_retro_planning +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_retro_planning #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: project_retro_planning +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + diff --git a/addons/project_scrum/i18n/project_scrum.pot b/addons/project_scrum/i18n/project_scrum.pot index 8f4833ebe0c..783fe3884f9 100644 --- a/addons/project_scrum/i18n/project_scrum.pot +++ b/addons/project_scrum/i18n/project_scrum.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:53+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:53+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:01+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -47,6 +47,11 @@ msgstr "" msgid "What did you do since the last meeting?" msgstr "" +#. module: project_scrum +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_scrum #: view:project.scrum.meeting:0 #: view:project.scrum.product.backlog:0 @@ -171,6 +176,11 @@ msgstr "" msgid "Spent hours" msgstr "" +#. module: project_scrum +#: model:ir.actions.act_window,help:project_scrum.action_meeting_form +msgid "The scrum agile methodology is used in software development projects. In this methodology, a daily meeting is organized by the scrum master with his team in order to detect the difficulties the team faced/will face." +msgstr "" + #. module: project_scrum #: code:addons/project_scrum/project_scrum.py:0 #, python-format @@ -202,17 +212,6 @@ msgstr "" msgid "Start Task" msgstr "" -#. module: project_scrum -#: code:addons/project_scrum/wizard/project_scrum_backlog_sprint.py:0 -#, python-format -msgid "is converted into Task %d.\"%(task_id,))\n" -" self.log(cr, uid, backlog.id, message)\n" -" if data['state_open'] and backlog.state == \"draft\":\n" -" backlog_obj.write(cr, uid, backlog.id, {'state':'open'})\n" -" sprint = sprint_obj.browse(cr, uid, data['sprint_id'], context=context)\n" -" message = _('Product Backlog" -msgstr "" - #. module: project_scrum #: code:addons/project_scrum/wizard/project_scrum_email.py:0 #, python-format @@ -338,6 +337,11 @@ msgstr "" msgid "Responsible user who can work on task" msgstr "" +#. module: project_scrum +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: project_scrum #: view:project.scrum.product.backlog:0 #: field:project.scrum.product.backlog,state:0 @@ -346,12 +350,6 @@ msgstr "" msgid "State" msgstr "" -#. module: project_scrum -#: code:addons/project_scrum/wizard/project_scrum_email.py:0 -#, python-format -msgid "Hello , \nI am sending you Scrum Meeting : %s for the Sprint '%s' of Project '%s'" -msgstr "" - #. module: project_scrum #: model:ir.actions.act_window,name:project_scrum.action_sprint_task_open msgid "View sprint Tasks" @@ -462,6 +460,13 @@ msgstr "" msgid "View project's tasks" msgstr "" +#. module: project_scrum +#: code:addons/project_scrum/wizard/project_scrum_email.py:0 +#, python-format +msgid "Hello , \n" +"I am sending you Scrum Meeting : %s for the Sprint '%s' of Project '%s'" +msgstr "" + #. module: project_scrum #: view:project.scrum.meeting:0 msgid "Daily" @@ -599,6 +604,11 @@ msgstr "" msgid "Note" msgstr "" +#. module: project_scrum +#: model:ir.actions.act_window,help:project_scrum.action_sprint_all_tree +msgid "The scrum agile methodology is used in software development projects. In this methodology, a sprint is a short period of time (one month) on which the team implement a list of product backlogs. The sprint review is organized when the team presents his work to the customer and product owner." +msgstr "" + #. module: project_scrum #: selection:project.scrum.product.backlog,state:0 #: selection:project.scrum.sprint,state:0 @@ -706,6 +716,11 @@ msgstr "" msgid "Merge" msgstr "" +#. module: project_scrum +#: model:ir.actions.act_window,help:project_scrum.action_product_backlog_form +msgid "The scrum agile methodology is used in software development projects. The Product Backlog is the list of features to be implemented. A product backlog can be planified in a sprint of developement and can be split into several tasks. The product backlog is managed by the product owner of the project." +msgstr "" + #. module: project_scrum #: model:ir.actions.act_window,name:project_scrum.action_sprint_backlog_open msgid "View sprint backlog" @@ -785,6 +800,11 @@ msgstr "" msgid "Effective hours" msgstr "" +#. module: project_scrum +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: project_scrum #: view:project.scrum.product.backlog:0 msgid "Information" diff --git a/addons/project_timesheet/i18n/project_timesheet.pot b/addons/project_timesheet/i18n/project_timesheet.pot index c9a533fe8ce..f8121edcb47 100644 --- a/addons/project_timesheet/i18n/project_timesheet.pot +++ b/addons/project_timesheet/i18n/project_timesheet.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:54+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:54+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:02+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:02+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -22,8 +22,10 @@ msgid "No employee defined for user \"%s\". You must create one." msgstr "" #. module: project_timesheet -#: view:report.timesheet.task.user:0 -msgid "Tasks by User" +#: code:addons/project_timesheet/project_timesheet.py:0 +#, python-format +msgid "No journal defined on the related employee.\n" +"Fill in the timesheet tab of the employee form." msgstr "" #. module: project_timesheet @@ -51,11 +53,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: project_timesheet -#: model:ir.model,name:project_timesheet.model_report_timesheet_task_user -msgid "report.timesheet.task.user" -msgstr "" - #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid "Group By..." @@ -82,6 +79,11 @@ msgstr "" msgid "Month" msgstr "" +#. module: project_timesheet +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "March" @@ -108,13 +110,15 @@ msgid "May" msgstr "" #. module: project_timesheet -#: selection:report.timesheet.task.user,month:0 -msgid "June" +#: code:addons/project_timesheet/project_timesheet.py:0 +#, python-format +msgid "No product and product category property account defined on the related employee.\n" +"Fill in the timesheet tab of the employee form." msgstr "" #. module: project_timesheet -#: model:ir.module.module,shortdesc:project_timesheet.module_meta_information -msgid "Project Timesheet" +#: selection:report.timesheet.task.user,month:0 +msgid "June" msgstr "" #. module: project_timesheet @@ -124,8 +128,8 @@ msgid "User" msgstr "" #. module: project_timesheet -#: view:report.timesheet.task.user:0 -msgid "This Year" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: project_timesheet @@ -144,9 +148,8 @@ msgid "Complete Your Timesheet." msgstr "" #. module: project_timesheet -#: code:addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No journal defined on the related employee.\nFill in the timesheet tab of the employee form." +#: view:project.project:0 +msgid "Invoiceable" msgstr "" #. module: project_timesheet @@ -165,8 +168,8 @@ msgid "October" msgstr "" #. module: project_timesheet -#: field:report.timesheet.task.user,timesheet_hrs:0 -msgid "Timesheet Hours" +#: view:report.timesheet.task.user:0 +msgid "This Year" msgstr "" #. module: project_timesheet @@ -201,7 +204,14 @@ msgstr "" #. module: project_timesheet #: view:report.timesheet.task.user:0 -msgid "Timesheet/Task hours Report Per Month" +msgid "Tasks by User" +msgstr "" + +#. module: project_timesheet +#: code:addons/project_timesheet/project_timesheet.py:0 +#, python-format +msgid "No product defined on the related employee.\n" +"Fill in the timesheet tab of the employee form." msgstr "" #. module: project_timesheet @@ -225,9 +235,13 @@ msgid "Encode how much time u spent on your task" msgstr "" #. module: project_timesheet -#: code:addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No product defined on the related employee.\nFill in the timesheet tab of the employee form." +#: field:report.timesheet.task.user,timesheet_hrs:0 +msgid "Timesheet Hours" +msgstr "" + +#. module: project_timesheet +#: view:report.timesheet.task.user:0 +msgid "Timesheet/Task hours Report Per Month" msgstr "" #. module: project_timesheet @@ -249,6 +263,7 @@ msgstr "" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_report_timesheet_task_user #: model:ir.ui.menu,name:project_timesheet.menu_timesheet_task_user +#: view:report.timesheet.task.user:0 msgid "Task Hours Per Month" msgstr "" @@ -268,8 +283,8 @@ msgid "After task is completed, Create its invoice." msgstr "" #. module: project_timesheet -#: view:project.project:0 -msgid "Invoiceble" +#: model:ir.model,name:project_timesheet.model_report_timesheet_task_user +msgid "report.timesheet.task.user" msgstr "" #. module: project_timesheet @@ -278,9 +293,8 @@ msgid "Date" msgstr "" #. module: project_timesheet -#: code:addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No product and product category property account defined on the related employee.\nFill in the timesheet tab of the employee form." +#: model:ir.module.module,shortdesc:project_timesheet.module_meta_information +msgid "Project Timesheet" msgstr "" #. module: project_timesheet @@ -304,3 +318,8 @@ msgstr "" msgid "This Month" msgstr "" +#. module: project_timesheet +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/purchase/i18n/purchase.pot b/addons/purchase/i18n/purchase.pot index e52a7f810eb..079b4d7c4fd 100644 --- a/addons/purchase/i18n/purchase.pot +++ b/addons/purchase/i18n/purchase.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-11-15 18:44:59+0000\n" -"PO-Revision-Date: 2010-11-15 18:44:59+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:03+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:03+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1153,17 +1153,9 @@ msgid "Date on which purchase order has been approved" msgstr "" #. module: purchase -#: view:purchase.order.group:0 -msgid " Please note that: \n" -" \n" -" Orders will only be merged if: \n" -" * Purchase Orders are in draft \n" -" * Purchase Orders belong to the same supplier \n" -" * Purchase Orders are have same stock location, same pricelist \n" -" \n" -" Lines will only be merged if: \n" -" * Order lines are exactly the same except for the product,quantity and unit \n" -" " +#: selection:purchase.order,state:0 +#: selection:purchase.report,state:0 +msgid "Waiting" msgstr "" #. module: purchase @@ -1412,12 +1404,6 @@ msgstr "" msgid "Qty" msgstr "" -#. module: purchase -#: selection:purchase.order,state:0 -#: selection:purchase.report,state:0 -msgid "Waiting" -msgstr "" - #. module: purchase #: field:purchase.order,partner_address_id:0 msgid "Address" @@ -1500,6 +1486,20 @@ msgstr "" msgid "April" msgstr "" +#. module: purchase +#: view:purchase.order.group:0 +msgid " Please note that: \n" +" \n" +" Orders will only be merged if: \n" +" * Purchase Orders are in draft \n" +" * Purchase Orders belong to the same supplier \n" +" * Purchase Orders are have same stock location, same pricelist \n" +" \n" +" Lines will only be merged if: \n" +" * Order lines are exactly the same except for the product,quantity and unit \n" +" " +msgstr "" + #. module: purchase #: field:purchase.report,product_uom:0 msgid "Product UoM" diff --git a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot index 1f40fbe675b..e3ae45b7cf7 100644 --- a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot +++ b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:55+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:55+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:04+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: purchase_analytic_plans +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: purchase_analytic_plans #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -45,3 +50,13 @@ msgstr "" msgid "Purchase Analytic Distribution Management" msgstr "" +#. module: purchase_analytic_plans +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: purchase_analytic_plans +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/purchase_requisition/i18n/purchase_requisition.pot b/addons/purchase_requisition/i18n/purchase_requisition.pot index 4e1962aca32..7df8f5f0fdb 100644 --- a/addons/purchase_requisition/i18n/purchase_requisition.pot +++ b/addons/purchase_requisition/i18n/purchase_requisition.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:55+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:55+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:04+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,6 +42,11 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: purchase_requisition +#: model:ir.actions.act_window,help:purchase_requisition.action_purchase_requisition +msgid "A purchase requisition is a step before the request for quotation. In a purchase requisition (or purchase tender), you can record the products you need to buy and trigger the creation of RfQs to supplier. After the negotiation, once you have reviewed all the supplier's offers, you can validate some and cancel others." +msgstr "" + #. module: purchase_requisition #: view:purchase.requisition:0 msgid "Group By..." @@ -141,8 +146,8 @@ msgid "Request a Quotation" msgstr "" #. module: purchase_requisition -#: view:purchase.requisition.partner:0 -msgid "Create Quotation" +#: selection:purchase.requisition,exclusive:0 +msgid "Multiple Requisitions" msgstr "" #. module: purchase_requisition @@ -265,6 +270,11 @@ msgstr "" msgid "Cancelled" msgstr "" +#. module: purchase_requisition +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: purchase_requisition #: report:purchase.requisition:0 msgid "[" @@ -307,6 +317,11 @@ msgstr "" msgid "Reference" msgstr "" +#. module: purchase_requisition +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: purchase_requisition #: field:purchase.requisition,warehouse_id:0 msgid "Warehouse" @@ -328,8 +343,8 @@ msgid "Purchase Requisition (exclusive)" msgstr "" #. module: purchase_requisition -#: selection:purchase.requisition,exclusive:0 -msgid "Multiple Requisitions" +#: view:purchase.requisition.partner:0 +msgid "Create Quotation" msgstr "" #. module: purchase_requisition @@ -373,6 +388,11 @@ msgstr "" msgid "Unassigned" msgstr "" +#. module: purchase_requisition +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: purchase_requisition #: field:purchase.requisition,purchase_ids:0 msgid "Purchase Orders" diff --git a/addons/report_designer/i18n/report_designer.pot b/addons/report_designer/i18n/report_designer.pot index efa0ddb183f..f57e4f80551 100644 --- a/addons/report_designer/i18n/report_designer.pot +++ b/addons/report_designer/i18n/report_designer.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:55+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:55+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:05+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: report_designer +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: report_designer #: model:ir.actions.act_window,name:report_designer.action_report_designer_installer msgid "Reporting Tools Configuration" @@ -60,6 +65,11 @@ msgstr "" msgid "Reporting Tools" msgstr "" +#. module: report_designer +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: report_designer #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." @@ -76,6 +86,11 @@ msgid "Installer for reporting tools selection\n" " " msgstr "" +#. module: report_designer +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: report_designer #: help:report_designer.installer,base_report_creator:0 msgid "Allows you to create any statistic reports on several objects. It's a SQL query builder and browser for end users." diff --git a/addons/report_intrastat/i18n/report_intrastat.pot b/addons/report_intrastat/i18n/report_intrastat.pot index 40556c20c92..fc94b4989d9 100644 --- a/addons/report_intrastat/i18n/report_intrastat.pot +++ b/addons/report_intrastat/i18n/report_intrastat.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:56+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:56+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:05+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -80,6 +80,11 @@ msgstr "" msgid "Taxes:" msgstr "" +#. module: report_intrastat +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "March" @@ -131,8 +136,8 @@ msgid "Base" msgstr "" #. module: report_intrastat -#: view:report.intrastat:0 -msgid "This Year" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: report_intrastat @@ -297,6 +302,11 @@ msgstr "" msgid "Country code" msgstr "" +#. module: report_intrastat +#: view:report.intrastat:0 +msgid "This Year" +msgstr "" + #. module: report_intrastat #: field:report.intrastat,month:0 msgid "Month" @@ -337,6 +347,11 @@ msgstr "" msgid "Price" msgstr "" +#. module: report_intrastat +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: report_intrastat #: model:ir.actions.act_window,name:report_intrastat.action_report_intrastat_code_tree #: model:ir.ui.menu,name:report_intrastat.menu_report_intrastat_code diff --git a/addons/report_webkit/i18n/report_webkit.pot b/addons/report_webkit/i18n/report_webkit.pot index dbaa8832105..9565a6e12ce 100644 --- a/addons/report_webkit/i18n/report_webkit.pot +++ b/addons/report_webkit/i18n/report_webkit.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:56+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:56+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:06+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -161,6 +161,11 @@ msgstr "" msgid "C5E 24 163 x 229 mm" msgstr "" +#. module: report_webkit +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: report_webkit #: field:ir.header_img,type:0 msgid "Type" @@ -172,6 +177,11 @@ msgstr "" msgid "Client Actions Connections" msgstr "" +#. module: report_webkit +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: report_webkit #: field:res.company,header_image:0 msgid "Available Images" @@ -429,6 +439,11 @@ msgstr "" msgid "Header CSS" msgstr "" +#. module: report_webkit +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "B4 19 250 x 353 mm" diff --git a/addons/report_webkit_sample/i18n/report_webkit_sample.pot b/addons/report_webkit_sample/i18n/report_webkit_sample.pot index d753d2545f0..0c6af4da213 100644 --- a/addons/report_webkit_sample/i18n/report_webkit_sample.pot +++ b/addons/report_webkit_sample/i18n/report_webkit_sample.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:57+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:57+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:06+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -52,6 +52,11 @@ msgstr "" msgid "Disc.(%)" msgstr "" +#. module: report_webkit_sample +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: report_webkit_sample #: report:addons/report_webkit_sample/report/report_webkit_html.mako:0 msgid "Fax" @@ -82,6 +87,11 @@ msgstr "" msgid "QTY" msgstr "" +#. module: report_webkit_sample +#: report:addons/report_webkit_sample/report/report_webkit_html.mako:0 +msgid "E-mail" +msgstr "" + #. module: report_webkit_sample #: report:addons/report_webkit_sample/report/report_webkit_html.mako:0 msgid "Base" @@ -113,8 +123,8 @@ msgid "Tel" msgstr "" #. module: report_webkit_sample -#: report:addons/report_webkit_sample/report/report_webkit_html.mako:0 -msgid "E-mail" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: report_webkit_sample diff --git a/addons/resource/i18n/resource.pot b/addons/resource/i18n/resource.pot index 91fc3456f34..da7a5b1f911 100644 --- a/addons/resource/i18n/resource.pot +++ b/addons/resource/i18n/resource.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:57+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:57+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:06+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:06+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "If empty, this is a generic holiday for the company. If a resource is set msgstr "" #. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Friday" +#: selection:resource.resource,resource_type:0 +msgid "Material" msgstr "" #. module: resource @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: resource +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + #. module: resource #: field:resource.resource,resource_type:0 msgid "Resource Type" @@ -76,8 +81,8 @@ msgid "Sunday" msgstr "" #. module: resource -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: resource @@ -97,8 +102,8 @@ msgid "Resources" msgstr "" #. module: resource -#: field:resource.calendar,manager:0 -msgid "Workgroup manager" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: resource @@ -126,8 +131,8 @@ msgid "Company" msgstr "" #. module: resource -#: selection:resource.resource,resource_type:0 -msgid "Material" +#: selection:resource.calendar.attendance,dayofweek:0 +msgid "Friday" msgstr "" #. module: resource @@ -161,6 +166,11 @@ msgstr "" msgid "Search Working Period Leaves" msgstr "" +#. module: resource +#: model:ir.actions.act_window,help:resource.action_resource_resource_tree +msgid "Resources allows you to create and manage resources that should be involved in a specific project phase. It also allows you to set their efficiency level and workload based on their weekly working hours" +msgstr "" + #. module: resource #: field:resource.calendar.leaves,date_to:0 msgid "End Date" @@ -173,6 +183,7 @@ msgstr "" #. module: resource #: model:ir.module.module,shortdesc:resource.module_meta_information +#: model:ir.ui.menu,name:resource.menu_resource_config #: view:resource.calendar.leaves:0 #: field:resource.calendar.leaves,resource_id:0 #: view:resource.resource:0 @@ -229,6 +240,11 @@ msgstr "" msgid "Define the schedule of resource" msgstr "" +#. module: resource +#: field:resource.calendar.attendance,hour_to:0 +msgid "Work to" +msgstr "" + #. module: resource #: field:resource.calendar.attendance,hour_from:0 msgid "Work from" @@ -240,8 +256,8 @@ msgid "Code" msgstr "" #. module: resource -#: field:resource.calendar.attendance,hour_to:0 -msgid "Work to" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: resource @@ -254,6 +270,11 @@ msgstr "" msgid "Tuesday" msgstr "" +#. module: resource +#: field:resource.calendar,manager:0 +msgid "Workgroup manager" +msgstr "" + #. module: resource #: field:resource.calendar.leaves,calendar_id:0 #: field:resource.resource,calendar_id:0 @@ -262,6 +283,7 @@ msgstr "" #. module: resource #: model:ir.actions.act_window,name:resource.action_resource_calendar_leave_tree +#: model:ir.ui.menu,name:resource.menu_view_resource_calendar_leaves_search msgid "Resource Leaves" msgstr "" @@ -312,3 +334,8 @@ msgstr "" msgid "Saturday" msgstr "" +#. module: resource +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/sale/i18n/sale.pot b/addons/sale/i18n/sale.pot index 492265144f0..785e86fbeed 100644 --- a/addons/sale/i18n/sale.pot +++ b/addons/sale/i18n/sale.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:58+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:58+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:08+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,22 +20,11 @@ msgstr "" msgid "Invalid model name in the action definition." msgstr "" -#. module: sale -#: help:sale.installer,delivery:0 -msgid "Allows you to compute delivery costs on your quotations." -msgstr "" - #. module: sale #: help:sale.order,picking_policy:0 msgid "If you don't have enough stock available to deliver all at once, do you accept partial shipments or not?" msgstr "" -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You selected a quantity of %d Units.\nBut it's not compatible with the selected packaging.\nHere is a proposition of quantities according to the packaging: " -msgstr "" - #. module: sale #: view:sale.report:0 #: field:sale.report,day:0 @@ -156,6 +145,11 @@ msgstr "" msgid "Total Price" msgstr "" +#. module: sale +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: sale #: help:sale.make.invoice,grouped:0 msgid "Check the box to group the invoices for the same customers" @@ -192,6 +186,11 @@ msgstr "" msgid "Dates" msgstr "" +#. module: sale +#: model:ir.actions.act_window,help:sale.action_order_line_tree2 +msgid "Here is a list of each sales order line to be invoiced. This view allows you to invoice sales orders partially, by lines of sales order. You don't need this list if you invoice based on the delivery orders or if you invoice sales totally." +msgstr "" + #. module: sale #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" @@ -207,6 +206,11 @@ msgstr "" msgid "From a sale order" msgstr "" +#. module: sale +#: view:sale.order:0 +msgid "Recreate Packing" +msgstr "" + #. module: sale #: field:sale.order.line,discount:0 msgid "Discount (%)" @@ -251,11 +255,6 @@ msgstr "" msgid "Set to Draft" msgstr "" -#. module: sale -#: view:sale.order:0 -msgid "Procurement Corrected" -msgstr "" - #. module: sale #: view:sale.order:0 msgid "Conditions" @@ -279,8 +278,8 @@ msgid "EAN: " msgstr "" #. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree5 -msgid "All Quotations" +#: help:sale.installer,delivery:0 +msgid "Allows you to compute delivery costs on your quotations." msgstr "" #. module: sale @@ -311,6 +310,14 @@ msgstr "" msgid "Quotations" msgstr "" +#. module: sale +#: code:addons/sale/wizard/sale_line_invoice.py:0 +#, python-format +msgid "Invoice cannot be created for this Sale Order Line due to one of the following reasons:\n" +"1.The state of this sale order line is either \"draft\" or \"cancel\"!\n" +"2.The Sale Order Line is Invoiced!" +msgstr "" + #. module: sale #: field:sale.advance.payment.inv,qtty:0 #: report:sale.order:0 @@ -327,6 +334,11 @@ msgstr "" msgid "TVA :" msgstr "" +#. module: sale +#: help:sale.order.line,delay:0 +msgid "Number of days between the order confirmation the shipping of the products to the customer" +msgstr "" + #. module: sale #: report:sale.order:0 msgid "Quotation Date" @@ -348,12 +360,6 @@ msgstr "" msgid "UoM" msgstr "" -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You have to select a customer in the sale form !\nPlease set one customer before choosing a product." -msgstr "" - #. module: sale #: field:sale.order.line,number_packages:0 msgid "Number Packages" @@ -411,16 +417,6 @@ msgstr "" msgid "Purchase Pricelists" msgstr "" -#. module: sale -#: help:sale.order.line,delay:0 -msgid "Number of days between the order confirmation the the shipping of the products to the customer" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Invoice Corrected" -msgstr "" - #. module: sale #: help:sale.order,amount_total:0 msgid "The total amount" @@ -471,13 +467,6 @@ msgstr "" msgid "March" msgstr "" -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "There is no income account defined ' \\n" -" 'for this product: \"%s\" (id:%d)" -msgstr "" - #. module: sale #: field:sale.order.line,price_subtotal:0 msgid "Subtotal" @@ -626,9 +615,8 @@ msgid "Shipped" msgstr "" #. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "invalid mode for test_state" +#: model:ir.actions.act_window,name:sale.action_order_tree5 +msgid "All Quotations" msgstr "" #. module: sale @@ -691,6 +679,11 @@ msgstr "" msgid "Procurement of sold material" msgstr "" +#. module: sale +#: view:sale.order:0 +msgid "Create Final Invoice" +msgstr "" + #. module: sale #: field:sale.order,partner_shipping_id:0 msgid "Shipping Address" @@ -706,6 +699,12 @@ msgstr "" msgid "Exception" msgstr "" +#. module: sale +#: code:addons/sale/wizard/sale_make_invoice_advance.py:0 +#, python-format +msgid "You cannot make an advance on a sale order that is defined as 'Automatic Invoice after delivery'." +msgstr "" + #. module: sale #: field:sale.order,create_date:0 msgid "Creation Date" @@ -731,6 +730,11 @@ msgstr "" msgid "The Pick List form is created as soon as the sale order is confirmed, in the same time as the procurement order. It represents the assignment of parts to the sale order. There is 1 pick list by sale order line which evolves with the availability of parts." msgstr "" +#. module: sale +#: model:ir.actions.act_window,help:sale.action_order_form +msgid "Sales Orders helps you manage quotations and orders done with your customers. OpenERP suggests that you to start by creating a quotation. Once the order is confirmed, the quotation is converted into a Sale Order. OpenERP can handle several types of products so that a sales order can trigger tasks, delivery orders, manufacturing orders, purchases and so on. Based on the configuration of the sale order, a draft invoice will be generated so that you just have to confirm it when you want to bill your customer." +msgstr "" + #. module: sale #: report:sale.order:0 msgid "Your Reference" @@ -773,6 +777,14 @@ msgstr "" msgid "Pricelist version for current sale order" msgstr "" +#. module: sale +#: code:addons/sale/sale.py:0 +#, python-format +msgid "You selected a quantity of %d Units.\n" +"But it's not compatible with the selected packaging.\n" +"Here is a proposition of quantities according to the packaging: " +msgstr "" + #. module: sale #: field:sale.installer,sale_order_dates:0 msgid "Sales Order Dates" @@ -785,13 +797,9 @@ msgid "Sale Order Line" msgstr "" #. module: sale -#: model:process.transition,name:sale.process_transition_invoice0 -#: model:process.transition,name:sale.process_transition_invoiceafterdelivery0 -#: model:process.transition.action,name:sale.process_transition_action_createinvoice0 -#: view:sale.advance.payment.inv:0 -#: view:sale.order:0 -#: view:sale.order.line:0 -msgid "Create Invoice" +#: report:sale.order:0 +#: field:sale.order.line,price_unit:0 +msgid "Unit Price" msgstr "" #. module: sale @@ -825,6 +833,11 @@ msgstr "" msgid "Open Invoice" msgstr "" +#. module: sale +#: model:process.transition,note:sale.process_transition_saleinvoice0 +msgid "Depending on the Invoicing control of the sale order, the invoice can be based on delivered or on ordered quantities. Thus, a sale order can generates an invoice or a delivery order as soon as it is confirmed by the salesman." +msgstr "" + #. module: sale #: report:sale.order:0 #: view:sale.order.line:0 @@ -887,9 +900,8 @@ msgid "Create Delivery Order" msgstr "" #. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You plan to sell %.2f %s but you only have %.2f %s available !\nThe real stock is %.2f %s. (without reservations)" +#: constraint:ir.rule:0 +msgid "Rules are not supported for osv_memory objects !" msgstr "" #. module: sale @@ -898,9 +910,8 @@ msgid "Delivery Costs" msgstr "" #. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "The sale order '%s' has been set in draft state." +#: view:sale.order:0 +msgid "Total Tax Included" msgstr "" #. module: sale @@ -924,11 +935,6 @@ msgstr "" msgid "Partial Delivery" msgstr "" -#. module: sale -#: view:sale.order:0 -msgid "Recreate Procurement" -msgstr "" - #. module: sale #: model:process.transition,name:sale.process_transition_confirmquotation0 msgid "Confirm Quotation" @@ -958,6 +964,12 @@ msgstr "" msgid "Waiting Schedule" msgstr "" +#. module: sale +#: code:addons/sale/sale.py:0 +#, python-format +msgid "invalid mode for test_state" +msgstr "" + #. module: sale #: field:sale.order.line,type:0 msgid "Procurement Method" @@ -1025,11 +1037,6 @@ msgstr "" msgid "Taxes" msgstr "" -#. module: sale -#: model:process.transition,note:sale.process_transition_saleinvoice0 -msgid "A sale order generates an invoice, as soon as it is confirmed by the salesman. Depending on the Invoicing control of the sale order, the invoice is based on delivered or on ordered quantities." -msgstr "" - #. module: sale #: field:sale.order,order_policy:0 msgid "Shipping Policy" @@ -1088,6 +1095,11 @@ msgstr "" msgid "Shipped Quantities" msgstr "" +#. module: sale +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: sale #: selection:sale.config.picking_policy,order_policy:0 msgid "Invoice Based on Sales Orders" @@ -1099,8 +1111,8 @@ msgid "Picking List" msgstr "" #. module: sale -#: model:process.transition,note:sale.process_transition_confirmquotation0 -msgid "The salesman confirms the quotation. The state of the sale order becomes 'In progress' or 'Manual in progress'." +#: selection:sale.order.line,type:0 +msgid "from stock" msgstr "" #. module: sale @@ -1250,7 +1262,6 @@ msgstr "" #. module: sale #: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order -#: model:ir.ui.menu,name:sale.menu_config_sale #: model:process.process,name:sale.process_process_salesprocess0 #: view:sale.order:0 #: view:sale.report:0 @@ -1258,9 +1269,12 @@ msgid "Sales" msgstr "" #. module: sale -#: report:sale.order:0 -#: field:sale.order.line,price_unit:0 -msgid "Unit Price" +#: model:process.transition,name:sale.process_transition_invoice0 +#: model:process.transition,name:sale.process_transition_invoiceafterdelivery0 +#: model:process.transition.action,name:sale.process_transition_action_createinvoice0 +#: view:sale.advance.payment.inv:0 +#: view:sale.order.line:0 +msgid "Create Invoice" msgstr "" #. module: sale @@ -1282,6 +1296,11 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: sale +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: sale #: code:addons/sale/sale.py:0 #, python-format @@ -1395,11 +1414,29 @@ msgstr "" msgid "Order" msgstr "" +#. module: sale +#: code:addons/sale/sale.py:0 +#, python-format +msgid "There is no income account defined for this product: \"%s\" (id:%d)" +msgstr "" + +#. module: sale +#: view:sale.order:0 +msgid "Ignore Exception" +msgstr "" + #. module: sale #: help:sale.order,partner_shipping_id:0 msgid "Shipping address for current sale order" msgstr "" +#. module: sale +#: code:addons/sale/sale.py:0 +#, python-format +msgid "You plan to sell %.2f %s but you only have %.2f %s available !\n" +"The real stock is %.2f %s. (without reservations)" +msgstr "" + #. module: sale #: view:sale.order:0 msgid "States" @@ -1640,6 +1677,13 @@ msgstr "" msgid "Image" msgstr "" +#. module: sale +#: code:addons/sale/sale.py:0 +#, python-format +msgid "You have to select a customer in the sale form !\n" +"Please set one customer before choosing a product." +msgstr "" + #. module: sale #: help:sale.order,amount_untaxed:0 msgid "The amount without tax" @@ -1750,12 +1794,6 @@ msgstr "" msgid "January" msgstr "" -#. module: sale -#: code:addons/sale/wizard/sale_line_invoice.py:0 -#, python-format -msgid "Invoice cannot be created for this Sale Order Line due to one of the following reasons:\n1.The state of this sale order line is either \"draft\" or \"cancel\"!\n2.The Sale Order Line is Invoiced!" -msgstr "" - #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree4 msgid "Sales Order in Progress" @@ -1783,19 +1821,14 @@ msgstr "" msgid "Assign" msgstr "" -#. module: sale -#: constraint:ir.rule:0 -msgid "Rules are not supported for osv_memory objects !" -msgstr "" - #. module: sale #: field:sale.report,date:0 msgid "Date Order" msgstr "" #. module: sale -#: selection:sale.order.line,type:0 -msgid "from stock" +#: model:process.transition,note:sale.process_transition_confirmquotation0 +msgid "The salesman confirms the quotation. The state of the sale order becomes 'In progress' or 'Manual in progress'." msgstr "" #. module: sale @@ -1814,6 +1847,11 @@ msgstr "" msgid "Close" msgstr "" +#. module: sale +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: sale #: field:sale.order,shipped:0 msgid "Delivered" @@ -1831,16 +1869,14 @@ msgid "Sale Order Lines" msgstr "" #. module: sale -#: report:sale.order:0 -#: field:sale.order.line,name:0 -msgid "Description" +#: model:ir.actions.act_window,help:sale.action_shop_form +msgid "If you have more than one shops reselling your company products, you can create and manage them from here. Whenever you will record a new quotation or sale order, it has to be linked to a shop. The shop also defines the warehouse from which the products will be delivered for each particular sale." msgstr "" #. module: sale -#: code:addons/sale/wizard/sale_make_invoice_advance.py:0 -#, python-format -msgid "You cannot make an advance on a sale order \\n" -" that is defined as 'Automatic Invoice after delivery'." +#: report:sale.order:0 +#: field:sale.order.line,name:0 +msgid "Description" msgstr "" #. module: sale @@ -1870,14 +1906,20 @@ msgstr "" msgid "Allows you to group and invoice your delivery orders according to different invoicing types: daily, weekly, etc." msgstr "" +#. module: sale +#: field:sale.config.picking_policy,picking_policy:0 +msgid "Picking Default Policy" +msgstr "" + #. module: sale #: selection:sale.report,month:0 msgid "April" msgstr "" #. module: sale -#: view:sale.order:0 -msgid "Total Tax Included" +#: code:addons/sale/sale.py:0 +#, python-format +msgid "The sale order '%s' has been set in draft state." msgstr "" #. module: sale @@ -1897,8 +1939,8 @@ msgid "A procurement order is automatically created as soon as a sale order is c msgstr "" #. module: sale -#: field:sale.config.picking_policy,picking_policy:0 -msgid "Picking Default Policy" +#: model:ir.actions.act_window,help:sale.action_order_report_all +msgid "This report performs analysis on your quotations and sales orders. Analysis check your sales revenues and sort it by different group criteria (salesman, partner, product, etc.) Use this report to perform analysis on sales not having invoiced yet. If you want to analyse your turnover, you should use the Invoice Analysis report in the Accounting application." msgstr "" #. module: sale diff --git a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot index 13a6e131eb5..db56f5d0ede 100644 --- a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot +++ b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:58+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:58+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:08+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: sale_analytic_plans -#: field:sale.order.line,analytics_id:0 -msgid "Analytic Distribution" -msgstr "" - -#. module: sale_analytic_plans -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: sale_analytic_plans @@ -31,8 +26,18 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: sale_analytic_plans -#: model:ir.module.module,shortdesc:sale_analytic_plans.module_meta_information -msgid "Sales Analytic Distribution Management" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: sale_analytic_plans +#: field:sale.order.line,analytics_id:0 +msgid "Analytic Distribution" +msgstr "" + +#. module: sale_analytic_plans +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: sale_analytic_plans @@ -40,3 +45,13 @@ msgstr "" msgid "Sale Order Line" msgstr "" +#. module: sale_analytic_plans +#: model:ir.module.module,shortdesc:sale_analytic_plans.module_meta_information +msgid "Sales Analytic Distribution Management" +msgstr "" + +#. module: sale_analytic_plans +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/sale_crm/i18n/sale_crm.pot b/addons/sale_crm/i18n/sale_crm.pot index 978c7eae14a..16bea84f466 100644 --- a/addons/sale_crm/i18n/sale_crm.pot +++ b/addons/sale_crm/i18n/sale_crm.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:59+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:59+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:09+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -37,9 +37,8 @@ msgid "Convert to Quotation" msgstr "" #. module: sale_crm -#: code:addons/sale_crm/wizard/crm_make_sale.py:0 -#, python-format -msgid "is converted to Quotation." +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: sale_crm @@ -60,8 +59,8 @@ msgid "Invalid model name in the action definition." msgstr "" #. module: sale_crm -#: view:crm.make.sale:0 -msgid "_Create" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: sale_crm @@ -74,6 +73,11 @@ msgstr "" msgid "Convert to Quote" msgstr "" +#. module: sale_crm +#: view:crm.make.sale:0 +msgid "_Create" +msgstr "" + #. module: sale_crm #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -127,6 +131,12 @@ msgstr "" msgid "My Quotations" msgstr "" +#. module: sale_crm +#: code:addons/sale_crm/wizard/crm_make_sale.py:0 +#, python-format +msgid "is converted to Quotation." +msgstr "" + #. module: sale_crm #: field:crm.make.sale,close:0 msgid "Close Opportunity" @@ -148,3 +158,8 @@ msgstr "" msgid "Cancel" msgstr "" +#. module: sale_crm +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/sale_journal/i18n/sale_journal.pot b/addons/sale_journal/i18n/sale_journal.pot index 70891a77c15..33e663712ba 100644 --- a/addons/sale_journal/i18n/sale_journal.pot +++ b/addons/sale_journal/i18n/sale_journal.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:46:59+0000\n" -"PO-Revision-Date: 2010-10-18 17:46:59+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:09+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:09+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,29 +15,14 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: sale_journal -#: field:sale_journal.invoice.type,note:0 -msgid "Note" -msgstr "" - -#. module: sale_journal -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_sale_order -msgid "Sale Order" -msgstr "" - #. module: sale_journal #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: sale_journal -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: sale_journal @@ -46,13 +31,8 @@ msgid "Sales & Purchases" msgstr "" #. module: sale_journal -#: model:ir.module.module,shortdesc:sale_journal.module_meta_information -msgid "Managing sales and deliveries by journal" -msgstr "" - -#. module: sale_journal -#: field:res.partner,property_invoice_type:0 -msgid "Invoicing Method" +#: model:ir.model,name:sale_journal.model_stock_picking +msgid "Picking List" msgstr "" #. module: sale_journal @@ -61,15 +41,8 @@ msgid "The type of journal used for sales and picking." msgstr "" #. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_definition_journal_invoice_type -#: model:ir.model,name:sale_journal.model_sale_journal_invoice_type -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_invoice_type -msgid "Invoice Types" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type,invoicing_method:0 -msgid "Non grouped" +#: field:sale_journal.invoice.type,note:0 +msgid "Note" msgstr "" #. module: sale_journal @@ -78,13 +51,8 @@ msgid "Grouped" msgstr "" #. module: sale_journal -#: field:sale_journal.invoice.type,invoicing_method:0 -msgid "Invoicing method" -msgstr "" - -#. module: sale_journal -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: sale_journal @@ -95,19 +63,39 @@ msgstr "" msgid "Invoice Type" msgstr "" +#. module: sale_journal +#: help:sale_journal.invoice.type,active:0 +msgid "If the active field is set to true, it will allow you to hide the invoice type without removing it." +msgstr "" + +#. module: sale_journal +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: sale_journal +#: view:res.partner:0 +msgid "Invoicing" +msgstr "" + +#. module: sale_journal +#: model:ir.actions.act_window,help:sale_journal.action_definition_journal_invoice_type +msgid "Invoice types are used on partners, sales order and delivery orders. You can create journal to group your invoicing according to customer's needs: daily, each wednesday, monthly, etc." +msgstr "" + +#. module: sale_journal +#: field:sale_journal.invoice.type,invoicing_method:0 +msgid "Invoicing method" +msgstr "" + #. module: sale_journal #: field:sale_journal.invoice.type,active:0 msgid "Active" msgstr "" #. module: sale_journal -#: model:ir.model,name:sale_journal.model_res_partner -msgid "Partner" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_stock_picking -msgid "Picking List" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: sale_journal @@ -116,12 +104,44 @@ msgid "Notes" msgstr "" #. module: sale_journal -#: help:sale_journal.invoice.type,active:0 -msgid "If the active field is set to true, it will allow you to hide the invoice type without removing it." +#: model:ir.model,name:sale_journal.model_sale_order +msgid "Sale Order" msgstr "" #. module: sale_journal -#: view:res.partner:0 -msgid "Invoicing" +#: selection:sale_journal.invoice.type,invoicing_method:0 +msgid "Non grouped" +msgstr "" + +#. module: sale_journal +#: field:res.partner,property_invoice_type:0 +msgid "Invoicing Method" +msgstr "" + +#. module: sale_journal +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: sale_journal +#: model:ir.actions.act_window,name:sale_journal.action_definition_journal_invoice_type +#: model:ir.model,name:sale_journal.model_sale_journal_invoice_type +#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_invoice_type +msgid "Invoice Types" +msgstr "" + +#. module: sale_journal +#: model:ir.module.module,shortdesc:sale_journal.module_meta_information +msgid "Managing sales and deliveries by journal" +msgstr "" + +#. module: sale_journal +#: model:ir.model,name:sale_journal.model_res_partner +msgid "Partner" +msgstr "" + +#. module: sale_journal +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" diff --git a/addons/sale_layout/i18n/sale_layout.pot b/addons/sale_layout/i18n/sale_layout.pot index 337ee02f045..8708a6d8d04 100644 --- a/addons/sale_layout/i18n/sale_layout.pot +++ b/addons/sale_layout/i18n/sale_layout.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:00+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:00+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:10+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Note" msgstr "" +#. module: sale_layout +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: sale_layout #: report:sale.order.layout:0 msgid "Unit Price" @@ -75,6 +80,16 @@ msgstr "" msgid "Seq." msgstr "" +#. module: sale_layout +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: sale_layout +#: view:sale.order:0 +msgid "UoM" +msgstr "" + #. module: sale_layout #: selection:sale.order.line,layout_type:0 msgid "Product" @@ -216,8 +231,13 @@ msgid "Your Reference" msgstr "" #. module: sale_layout -#: view:sale.order:0 -msgid "Sales order lines" +#: report:sale.order.layout:0 +msgid "Quotation Date" +msgstr "" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "TVA :" msgstr "" #. module: sale_layout @@ -231,8 +251,8 @@ msgid "States" msgstr "" #. module: sale_layout -#: report:sale.order.layout:0 -msgid "TVA :" +#: view:sale.order:0 +msgid "Sales order lines" msgstr "" #. module: sale_layout @@ -246,8 +266,8 @@ msgid "Extra Info" msgstr "" #. module: sale_layout -#: view:sale.order:0 -msgid "UoM" +#: report:sale.order.layout:0 +msgid "Taxes :" msgstr "" #. module: sale_layout @@ -266,8 +286,8 @@ msgid "Price" msgstr "" #. module: sale_layout -#: report:sale.order.layout:0 -msgid "Taxes :" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: sale_layout diff --git a/addons/sale_margin/i18n/sale_margin.pot b/addons/sale_margin/i18n/sale_margin.pot index 3a0bf2c5e28..d44a413b043 100644 --- a/addons/sale_margin/i18n/sale_margin.pot +++ b/addons/sale_margin/i18n/sale_margin.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:00+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:00+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:10+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,6 +40,11 @@ msgstr "" msgid "Customer Invoice" msgstr "" +#. module: sale_margin +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: sale_margin #: selection:report.account.invoice.product,month:0 msgid "February" @@ -150,8 +155,8 @@ msgid "Search Margin" msgstr "" #. module: sale_margin -#: view:report.account.invoice.product:0 -msgid "This Year" +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" msgstr "" #. module: sale_margin @@ -202,6 +207,11 @@ msgstr "" msgid "October" msgstr "" +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "This Year" +msgstr "" + #. module: sale_margin #: view:report.account.invoice.product:0 #: field:report.account.invoice.product,year:0 @@ -301,6 +311,11 @@ msgstr "" msgid "Canceled" msgstr "" +#. module: sale_margin +#: model:ir.actions.act_window,help:sale_margin.action_report_account_invoice_report +msgid "This report gives you an overview of all the invoices generated by the system. You can sort and group your results by specific selection criteria to quickly find what you are looking for." +msgstr "" + #. module: sale_margin #: model:ir.ui.menu,name:sale_margin.menu_report_account_invoice_product msgid "Invoice Report" @@ -337,3 +352,8 @@ msgstr "" msgid "Invoice Analysis" msgstr "" +#. module: sale_margin +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/sale_mrp/i18n/sale_mrp.pot b/addons/sale_mrp/i18n/sale_mrp.pot index 0cb2b00dbdf..3ae084e5edb 100644 --- a/addons/sale_mrp/i18n/sale_mrp.pot +++ b/addons/sale_mrp/i18n/sale_mrp.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:00+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:00+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:10+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:10+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -45,6 +45,16 @@ msgstr "" msgid "Manufacturing Order" msgstr "" +#. module: sale_mrp +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: sale_mrp +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: sale_mrp #: field:mrp.production,sale_ref:0 msgid "Sale Reference" @@ -55,3 +65,8 @@ msgstr "" msgid "Sales and MRP Management" msgstr "" +#. module: sale_mrp +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/sale_order_dates/i18n/sale_order_dates.pot b/addons/sale_order_dates/i18n/sale_order_dates.pot index 76c3ffd3d38..4c88ec6ca70 100644 --- a/addons/sale_order_dates/i18n/sale_order_dates.pot +++ b/addons/sale_order_dates/i18n/sale_order_dates.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:01+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:01+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:11+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: sale_order_dates +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: sale_order_dates #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -55,6 +60,11 @@ msgstr "" msgid "Date on which delivery of products is to be made" msgstr "" +#. module: sale_order_dates +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: sale_order_dates #: help:sale.order,requested_date:0 msgid "Date on which customer has requested for sales" @@ -65,3 +75,8 @@ msgstr "" msgid "Requested Date" msgstr "" +#. module: sale_order_dates +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/share/i18n/share.pot b/addons/share/i18n/share.pot index 2e4e7eefef5..660d9a0129c 100644 --- a/addons/share/i18n/share.pot +++ b/addons/share/i18n/share.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:01+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:01+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:11+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,9 +21,8 @@ msgid "Newly created" msgstr "" #. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "%s (Shared)" +#: view:share.wizard:0 +msgid "Existing External Users" msgstr "" #. module: share @@ -37,13 +36,23 @@ msgid "Invalid model name in the action definition." msgstr "" #. module: share -#: field:share.wizard,user_type:0 -msgid "Users to share with" +#: view:share.wizard:0 +msgid "Who would you want to share this data with?" msgstr "" #. module: share -#: view:share.wizard:0 -msgid "Who would you want to share this data with?" +#: code:addons/share/wizard/share_wizard.py:0 +#, python-format +msgid "Dear,\n" +"\n" +"" +msgstr "" + +#. module: share +#: code:addons/share/wizard/share_wizard.py:0 +#, python-format +msgid "You may use your existing login and password to view it. As a reminder, your login is %s.\n" +"" msgstr "" #. module: share @@ -56,6 +65,11 @@ msgstr "" msgid "Next" msgstr "" +#. module: share +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: share #: help:share.wizard,action_id:0 msgid "The action that opens the screen containing the data you wish to share." @@ -64,7 +78,7 @@ msgstr "" #. module: share #: code:addons/share/wizard/share_wizard.py:0 #, python-format -msgid "Sharing access could not be setup" +msgid "Please specify \"share_root_url\" in context" msgstr "" #. module: share @@ -95,14 +109,8 @@ msgid "You may use the following login and password to get access to this protec msgstr "" #. module: share -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "This additional data has been automatically added to your current access.\n" +#: view:res.groups:0 +msgid "Regular groups only (no share groups" msgstr "" #. module: share @@ -122,14 +130,12 @@ msgstr "" #. module: share #: view:share.wizard:0 -msgid "Existing External Users" +msgid "Share wizard: step 1" msgstr "" #. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#: field:share.wizard.result.line,login:0 -#, python-format -msgid "Username" +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: share @@ -154,6 +160,13 @@ msgstr "" msgid "Users" msgstr "" +#. module: share +#: code:addons/share/wizard/share_wizard.py:0 +#, python-format +msgid "This username (%s) already exists, perhaps data has already been shared with this person.\n" +"You may want to try selecting existing shared users instead." +msgstr "" + #. module: share #: field:share.wizard,new_users:0 msgid "New users" @@ -161,29 +174,32 @@ msgstr "" #. module: share #: code:addons/share/wizard/share_wizard.py:0 +#: field:share.wizard.result.line,login:0 #, python-format -msgid "To access it, you can go to the following URL:\n %s" +msgid "Username" msgstr "" #. module: share -#: model:ir.model,name:share.model_res_groups -msgid "res.groups" -msgstr "" - -#. module: share -#: selection:share.wizard,user_type:0 -msgid "Existing external users" -msgstr "" - -#. module: share -#: view:share.wizard:0 -msgid "New Users (please provide one e-mail address per line below)" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: share #: code:addons/share/wizard/share_wizard.py:0 #, python-format -msgid "Please specify \"share_root_url\" in server configuration or in context" +msgid "%s (Shared)" +msgstr "" + +#. module: share +#: code:addons/share/wizard/share_wizard.py:0 +#, python-format +msgid "This additional data has been automatically added to your current access.\n" +"" +msgstr "" + +#. module: share +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" msgstr "" #. module: share @@ -225,9 +241,8 @@ msgid "Password" msgstr "" #. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "This username (%s) already exists, perhaps data has already been shared with this person.\nYou may want to try selecting existing shared users instead." +#: field:share.wizard,user_type:0 +msgid "Users to share with" msgstr "" #. module: share @@ -247,20 +262,18 @@ msgid "Invalid XML for View Architecture!" msgstr "" #. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "You may use your existing login and password to view it. As a reminder, your login is %s.\n" +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" #. module: share -#: view:share.wizard:0 -msgid "Share wizard: step 1" +#: model:ir.model,name:share.model_res_groups +msgid "Access Groups" msgstr "" #. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "Sorry, the current screen and filter you are trying to share are not supported at the moment.\nYou may want to try a simpler filter." +#: model:ir.model,name:share.model_share_wizard_user +msgid "share.wizard.user" msgstr "" #. module: share @@ -269,8 +282,8 @@ msgid "Please select the action that opens the screen containing the data you wa msgstr "" #. module: share -#: view:res.groups:0 -msgid "Regular groups only (no share groups" +#: selection:share.wizard,user_type:0 +msgid "Existing external users" msgstr "" #. module: share @@ -303,9 +316,8 @@ msgid "Optionally, you may specify an additional domain restriction that will be msgstr "" #. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "Dear,\n\n" +#: view:share.wizard:0 +msgid "New Users (please provide one e-mail address per line below)" msgstr "" #. module: share @@ -329,6 +341,13 @@ msgstr "" msgid "Domain" msgstr "" +#. module: share +#: code:addons/share/wizard/share_wizard.py:0 +#, python-format +msgid "Sorry, the current screen and filter you are trying to share are not supported at the moment.\n" +"You may want to try a simpler filter." +msgstr "" + #. module: share #: field:share.wizard,access_mode:0 msgid "Access Mode" @@ -339,6 +358,13 @@ msgstr "" msgid "Access info" msgstr "" +#. module: share +#: code:addons/share/wizard/share_wizard.py:0 +#, python-format +msgid "To access it, you can go to the following URL:\n" +" %s" +msgstr "" + #. module: share #: field:share.wizard,action_id:0 msgid "Action to share" @@ -367,8 +393,9 @@ msgid "share.wizard.result.line" msgstr "" #. module: share -#: model:ir.model,name:share.model_share_wizard_user -msgid "share.wizard.user" +#: code:addons/share/wizard/share_wizard.py:0 +#, python-format +msgid "Sharing access could not be setup" msgstr "" #. module: share diff --git a/addons/stock/i18n/stock.pot b/addons/stock/i18n/stock.pot index 621528f9013..d8eb6873725 100644 --- a/addons/stock/i18n/stock.pot +++ b/addons/stock/i18n/stock.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:03+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:03+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:14+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -52,10 +52,8 @@ msgid "Action" msgstr "" #. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "There is no journal defined '\\n" -" 'on the product category: \"%s\" (id: %d)" +#: view:stock.production.lot:0 +msgid "Upstream Traceability" msgstr "" #. module: stock @@ -85,8 +83,8 @@ msgid "Revision Number" msgstr "" #. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_FORWARD" +#: view:stock.move.memory:0 +msgid "Product Moves" msgstr "" #. module: stock @@ -101,6 +99,11 @@ msgid "Do not Found Partial data of Stock Move Line :%s' %(move.id))\n" " prodlot_ids[move.id] = partial_data.get('prodlot_id" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_picking_tree +msgid "This is the list of all delivery orders that must be prepared, according to your different sales orders and your logistics rules." +msgstr "" + #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_inventory_control msgid "Inventory Control" @@ -117,18 +120,11 @@ msgid "STOCK_ZOOM_100" msgstr "" #. module: stock -#: model:ir.actions.report.xml,name:stock.report_picking_list #: view:stock.picking:0 msgid "Picking list" msgstr "" #. module: stock -#: view:board.board:0 -msgid "Outgoing Products delay" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 #: report:lot.stock.overview:0 #: report:lot.stock.overview_all:0 @@ -139,6 +135,7 @@ msgstr "" #: report:stock.inventory.move:0 #: field:stock.move,product_qty:0 #: field:stock.move.consume,product_qty:0 +#: field:stock.move.memory,quantity:0 #: field:stock.move.scrap,product_qty:0 #: field:stock.move.split,qty:0 #: field:stock.move.split.lines,quantity:0 @@ -189,17 +186,33 @@ msgstr "" msgid "Optional address where goods are to be delivered, specifically used for allotment" msgstr "" +#. module: stock +#: model:ir.actions.act_window,name:stock.action_partial_move +msgid "Deliver/Receive Products" +msgstr "" + #. module: stock #: code:addons/stock/report/report_stock.py:0 #, python-format msgid "You cannot delete any record!" msgstr "" +#. module: stock +#: code:addons/stock/wizard/stock_splitinto.py:0 +#, python-format +msgid "The current move line is already assigned to a pack, please remove it first if you really want to change it ' # 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: stock #: field:product.template,property_stock_inventory:0 msgid "Inventory Location" msgstr "" +#. module: stock +#: selection:stock.location,icon:0 +msgid "terp-emblem-important" +msgstr "" + #. module: stock #: help:stock.tracking,serial:0 msgid "Other reference or serial number" @@ -229,19 +242,30 @@ msgstr "" msgid "Reference" msgstr "" +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Products to Process" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_location_form +msgid "Define your locations in order to reflect to your warehouse structure and organization. OpenERP is able to manage physical locations (warehouses, shelves, bin, etc), partners location (customers, suppliers) and virtual locations which are the counter-part of the stock operations like the manufacturing orders consummations, the inventories, etc. Every stock operation in OpenERP moves the products from one location to another one. For instance, if you receive products from a supplier, OpenERP will move products from the Supplier location into the Stock location. Each report can be performed on physicals, partners or virtual locations." +msgstr "" + #. module: stock #: help:stock.fill.inventory,set_stock_zero:0 msgid "If checked, all product quantities will be set to zero to help ensure a real physical inventory is done" msgstr "" #. module: stock -#: model:ir.model,name:stock.model_stock_move_split_lines -msgid "Split lines" +#: model:ir.actions.act_window,help:stock.action_inventory_form +msgid "The Periodical Inventories are used when you count your number of products available per location. You can use it, once a year, when you do the general inventory or, once you need it, to correct the current stock level of a product." msgstr "" #. module: stock -#: view:stock.production.lot:0 -msgid "Upstream Traceability" +#: model:ir.model,name:stock.model_stock_move_split_lines +msgid "Split lines" msgstr "" #. module: stock @@ -283,6 +307,11 @@ msgstr "" msgid "Partner" msgstr "" +#. module: stock +#: help:stock.move.memory,currency:0 +msgid "Currency in which Unit cost is expressed" +msgstr "" + #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:0 #, python-format @@ -296,6 +325,11 @@ msgstr "" msgid "Production lot" msgstr "" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "" + #. module: stock #: help:stock.incoterms,code:0 msgid "Code for Incoterms" @@ -386,6 +420,11 @@ msgstr "" msgid "Outgoing Product" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_warehouse_form +msgid "Create and manage your warehouses and assign them a location from here" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_QUIT" @@ -622,6 +661,11 @@ msgstr "" msgid "June" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_out_picking_move +msgid "The 'Deliver Products' menu lists all products you have to deliver to your customers. You can process the deliveries directly from this list, line by or line or through the Delivery Orders menu." +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-folder-blue" @@ -798,13 +842,6 @@ msgstr "" msgid "STOCK_NEW" msgstr "" -#. module: stock -#: code:addons/stock/wizard/stock_splitinto.py:0 -#, python-format -msgid "Total quantity after split exceeds the quantity to split ' \\n" -" 'for this product: \"%s\" (id: %d)" -msgstr "" - #. module: stock #: code:addons/stock/product.py:0 #, python-format @@ -940,10 +977,8 @@ msgid "By unchecking the active field, you may hide a location without deleting msgstr "" #. module: stock -#: help:stock.location,posx:0 -#: help:stock.location,posy:0 -#: help:stock.location,posz:0 -msgid "Optional localization details, for information purpose only" +#: model:ir.actions.report.xml,name:stock.report_picking_list +msgid "Packing list" msgstr "" #. module: stock @@ -967,6 +1002,12 @@ msgstr "" msgid "Left Parent" msgstr "" +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Delivery Information" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_INDEX" @@ -987,6 +1028,12 @@ msgstr "" msgid "Quantity per lot" msgstr "" +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "There is no stock output account defined for this product: \"%s\" (id: %d)" +msgstr "" + #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_open #: model:ir.actions.act_window,name:stock.action_move_form2 @@ -1146,6 +1193,12 @@ msgstr "" msgid "Lot number" msgstr "" +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Unit Of Measure" +msgstr "" + #. module: stock #: model:stock.location,name:stock.stock_location_locations_partner msgid "Partner Locations" @@ -1232,13 +1285,6 @@ msgstr "" msgid "is in draft state." msgstr "" -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "There is no stock output account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" -msgstr "" - #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_RECORD" @@ -1295,13 +1341,15 @@ msgid "Additional Info" msgstr "" #. module: stock +#: model:ir.actions.report.xml,name:stock.report_stock_inventory_move #: report:stock.inventory.move:0 msgid "Stock Inventory" msgstr "" #. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_YES" +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Operation forbidden" msgstr "" #. module: stock @@ -1441,8 +1489,15 @@ msgid "Invalid action !" msgstr "" #. module: stock -#: selection:stock.location,icon:0 -msgid "terp-emblem-important" +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Receive Information" +msgstr "" + +#. module: stock +#: model:ir.actions.report.xml,name:stock.report_location_overview +#: report:lot.stock.overview:0 +msgid "Location Inventory Overview" msgstr "" #. module: stock @@ -1470,6 +1525,12 @@ msgstr "" msgid "OpenERP S.A." msgstr "" +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Receive" +msgstr "" + #. module: stock #: help:stock.incoterms,active:0 msgid "By unchecking the active field, you may hide an INCOTERM without deleting it." @@ -1579,8 +1640,8 @@ msgid "Stock Statistics" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 +#: field:stock.move.memory,currency:0 #, python-format msgid "Currency" msgstr "" @@ -1677,15 +1738,10 @@ msgid "terp-go-today" msgstr "" #. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Back Orders" +#: help:stock.location,posx:0 +#: help:stock.location,posy:0 +#: help:stock.location,posz:0 +msgid "Optional localization details, for information purpose only" msgstr "" #. module: stock @@ -1811,6 +1867,11 @@ msgstr "" msgid "Warehouse Dashboard" msgstr "" +#. module: stock +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-mail-" @@ -1850,11 +1911,6 @@ msgstr "" msgid "Return Picking" msgstr "" -#. module: stock -#: model:ir.actions.report.xml,name:stock.report_location_overview_all -msgid "Inventory (with child locations)" -msgstr "" - #. module: stock #: view:stock.move:0 #: view:stock.picking:0 @@ -1935,8 +1991,8 @@ msgid "Owner Address" msgstr "" #. module: stock -#: field:stock.location,parent_right:0 -msgid "Right Parent" +#: model:ir.actions.act_window,help:stock.action_stock_move_report +msgid "Moves Analysis allows you to easily check and analyse your company stock moves. Use this report when you want to analyse the different routes taken by your products and inventory management performance." msgstr "" #. module: stock @@ -1971,8 +2027,9 @@ msgid "There is no stock input account defined for this product or its category: msgstr "" #. module: stock -#: selection:report.stock.move,month:0 -msgid "January" +#: code:addons/stock/product.py:0 +#, python-format +msgid "Received Qty" msgstr "" #. module: stock @@ -1990,6 +2047,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: stock +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: stock #: model:ir.actions.act_window,name:stock.action_view_stock_fill_inventory #: model:ir.model,name:stock.model_stock_fill_inventory @@ -2004,6 +2066,12 @@ msgstr "" msgid "Name" msgstr "" +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "is done." +msgstr "" + #. module: stock #: view:product.product:0 msgid "Stocks" @@ -2067,6 +2135,11 @@ msgstr "" msgid "]" msgstr "" +#. module: stock +#: field:stock.move.memory,wizard_id:0 +msgid "Wizard" +msgstr "" + #. module: stock #: view:report.stock.inventory:0 #: view:report.stock.move:0 @@ -2078,6 +2151,11 @@ msgstr "" msgid "terp-personal" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_move_form2 +msgid "This menu gives you the full traceability of inventory operations made on a specific product. You can filter on the product to see all the past or future movements made on the product." +msgstr "" + #. module: stock #: help:stock.location,chained_journal_id:0 msgid "Inventory Journal in which the chained move will be written, if the Chaining Type is not Transparent (no journal is used if left empty)" @@ -2099,14 +2177,19 @@ msgstr "" msgid "Creation" msgstr "" +#. module: stock +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-accessories-archiver" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 +#: field:stock.move.memory,cost:0 #, python-format msgid "Cost" msgstr "" @@ -2198,6 +2281,7 @@ msgstr "" #. module: stock #: field:stock.move,product_uom:0 +#: field:stock.move.memory,product_uom:0 msgid "Unit of Measure" msgstr "" @@ -2228,6 +2312,11 @@ msgstr "" msgid "Tracking a move" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_picking_tree6 +msgid "The Internal Moves lists all inventory operations you have to perform in your warehouse. All operations can be categorized into stock journals, so that each worker has it's own list of operations to perform in his own journal. Most operations are prepared automatically by OpenERP according to your pre-configured logistics rules but you can also record manual stock operations." +msgstr "" + #. module: stock #: view:product.product:0 msgid "Update" @@ -2249,6 +2338,11 @@ msgstr "" msgid "terp-gtk-go-back-ltr" msgstr "" +#. module: stock +#: help:stock.production.lot,name:0 +msgid "Unique serial number, will be displayed as: PREFIX/SERIAL [INT_REF]" +msgstr "" + #. module: stock #: selection:report.stock.move,type:0 msgid "Others" @@ -2387,9 +2481,13 @@ msgid "STOCK_ITALIC" msgstr "" #. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "Operation forbidden" +#: view:report.stock.move:0 +msgid "Delay(Days)" +msgstr "" + +#. module: stock +#: field:stock.move.memory,move_id:0 +msgid "Move" msgstr "" #. module: stock @@ -2424,6 +2522,11 @@ msgstr "" msgid "If real-time valuation is enabled for a product, the system will automatically write journal entries corresponding to stock moves.The inventory variation account set on the product category will represent the current inventory value, and the stock input and stock output account will hold the counterpart moves for incoming and outgoing products." msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_stock_inventory_report +msgid "Inventory Analysis allows you to easily check and analyse your company stock levels. Sort and group by selection criteria in order to better analyse and manage your company activities." +msgstr "" + #. module: stock #: help:report.stock.move,location_id:0 #: help:stock.move,location_id:0 @@ -2453,8 +2556,6 @@ msgstr "" #. module: stock #: code:addons/stock/stock.py:0 -#: model:ir.actions.report.xml,name:stock.report_location_overview -#: model:ir.actions.report.xml,name:stock.report_stock_inventory_move #: model:ir.model,name:stock.model_stock_inventory #: selection:report.stock.inventory,location_type:0 #: field:stock.inventory.line,inventory_id:0 @@ -2477,7 +2578,6 @@ msgid "The combination of serial number and internal reference must be unique !" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 #, python-format msgid "Currency in which Unit Cost is expressed" @@ -2526,6 +2626,11 @@ msgstr "" msgid "terp-stock_align_left_24" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_production_lot_form +msgid "This is the list of all the production lots (serial numbers) you recorded. After having selected a lot, you can get the up-stream or down-stream traceability of the products contained in lot." +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "terp-folder-orange" @@ -2542,8 +2647,8 @@ msgid "terp-purchase" msgstr "" #. module: stock -#: help:stock.production.lot,name:0 -msgid "Unique serial number, will be displayed as: PREFIX/SERIAL [INT_REF]" +#: selection:stock.location,icon:0 +msgid "STOCK_YES" msgstr "" #. module: stock @@ -2561,6 +2666,11 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_stock_line_date +msgid "Display the last inventories done on your products and easily sort them with specific filtering criteria. If you do frequent and partial inventories, you need this report in order to ensure that the stock of each product is controlled at least once a year." +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_DND" @@ -2620,16 +2730,19 @@ msgid "Scrap Move" msgstr "" #. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 #: model:ir.actions.act_window,name:stock.action_reception_picking_move #: model:ir.ui.menu,name:stock.menu_action_pdct_in #: view:stock.move:0 +#, python-format msgid "Receive Products" msgstr "" #. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 #: model:ir.actions.act_window,name:stock.action_out_picking_move -#: model:ir.actions.act_window,name:stock.action_partial_move #: model:ir.ui.menu,name:stock.menu_action_pdct_out +#, python-format msgid "Deliver Products" msgstr "" @@ -2701,8 +2814,14 @@ msgid "Company" msgstr "" #. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_PROPERTIES" +#: view:stock.picking:0 +msgid "Back Orders" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "There is no stock input account defined for this product: \"%s\" (id: %d)" msgstr "" #. module: stock @@ -2731,13 +2850,8 @@ msgid "Revision Date" msgstr "" #. module: stock -#: view:report.stock.inventory:0 -#: field:report.stock.inventory,prodlot_id:0 -#: view:stock.move:0 -#: field:stock.move.split.lines,lot_id:0 -#: field:stock.move.split.lines.exist,lot_id:0 -#: report:stock.picking.list:0 -msgid "Lot" +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: stock @@ -2785,12 +2899,6 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" -#. module: stock -#: code:addons/stock/wizard/stock_invoice_onshipping.py:0 -#, python-format -msgid "New picking invoices" -msgstr "" - #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_SPELL_CHECK" @@ -2824,13 +2932,6 @@ msgstr "" msgid "Error, no partner !" msgstr "" -#. module: stock -#: code:addons/stock/wizard/stock_splitinto.py:0 -#, python-format -msgid "The current move line is already assigned to a pack, please remove it first if you really want to change it ' \\n" -" # 'for this product: \"%s\" (id: %d)" -msgstr "" - #. module: stock #: model:ir.actions.act_window,name:stock.action_incoterms_tree #: model:ir.model,name:stock.model_stock_incoterms @@ -2948,6 +3049,11 @@ msgstr "" msgid "Change Standard Price" msgstr "" +#. module: stock +#: sql_constraint:ir.rule:0 +msgid "Rule must have at least one checked access right !" +msgstr "" + #. module: stock #: model:stock.location,name:stock.stock_location_locations_virtual msgid "Virtual Locations" @@ -3034,7 +3140,6 @@ msgid "Stock" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 #: model:ir.model,name:stock.model_product_product #: model:ir.ui.menu,name:stock.menu_stock_product @@ -3049,6 +3154,7 @@ msgstr "" #: view:stock.move:0 #: field:stock.move,product_id:0 #: field:stock.move.consume,product_id:0 +#: field:stock.move.memory,product_id:0 #: field:stock.move.scrap,product_id:0 #: field:stock.move.split,product_id:0 #: view:stock.production.lot:0 @@ -3087,12 +3193,6 @@ msgstr "" msgid "Product UOS" msgstr "" -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Received Qty" -msgstr "" - #. module: stock #: field:stock.location,posz:0 msgid "Height (Z)" @@ -3110,7 +3210,6 @@ msgid "Consume Products" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 #: field:stock.inventory.line,product_uom:0 #: field:stock.move.consume,product_uom:0 @@ -3120,9 +3219,8 @@ msgid "Product UOM" msgstr "" #. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "You cannot remove the picking which is in %s state !" +#: field:stock.location,parent_right:0 +msgid "Right Parent" msgstr "" #. module: stock @@ -3161,11 +3259,6 @@ msgstr "" msgid "terp-tools" msgstr "" -#. module: stock -#: report:lot.stock.overview:0 -msgid "Location Overview" -msgstr "" - #. module: stock #: model:ir.actions.act_window,name:stock.action_view_stock_location_product #: model:ir.model,name:stock.model_stock_location_product @@ -3225,9 +3318,8 @@ msgid "Accounting Entries" msgstr "" #. module: stock -#: view:stock.move:0 -#: view:stock.picking:0 -msgid "Unit Of Measure" +#: selection:stock.location,icon:0 +msgid "STOCK_PROPERTIES" msgstr "" #. module: stock @@ -3235,6 +3327,11 @@ msgstr "" msgid "STOCK_MEDIA_PAUSE" msgstr "" +#. module: stock +#: report:stock.picking.list:0 +msgid "Total" +msgstr "" + #. module: stock #: model:stock.location,name:stock.stock_location_intermediatelocation0 msgid "Internal Shippings" @@ -3339,6 +3436,11 @@ msgstr "" msgid "Reason" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_stock_journal_form +msgid "The stock journals system allows you assign each stock operation into a specific journal according to the type of operation to perform or the worker/team that should perform the operation. Examples of stock journals may be: quality control, pick lists, packing, etc." +msgstr "" + #. module: stock #: field:stock.location,icon:0 msgid "Icon" @@ -3441,15 +3543,13 @@ msgid "STOCK_MEDIA_PLAY" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_inventory_merge.py:0 -#, python-format -msgid "Warning" +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" msgstr "" #. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "is done." +#: model:ir.actions.act_window,help:stock.action_location_tree +msgid "This is the structure of your company's warehouses and locations. You can click on a location in order to get the list of the products and their stock level in this particular location and all its children." msgstr "" #. module: stock @@ -3477,8 +3577,13 @@ msgid "Stock ups final" msgstr "" #. module: stock -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,prodlot_id:0 +#: view:stock.move:0 +#: field:stock.move.split.lines,lot_id:0 +#: field:stock.move.split.lines.exist,lot_id:0 +#: report:stock.picking.list:0 +msgid "Lot" msgstr "" #. module: stock @@ -3534,8 +3639,8 @@ msgid "Back Order of" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 +#: help:stock.move.memory,cost:0 #, python-format msgid "Unit Cost for this product line" msgstr "" @@ -3576,6 +3681,11 @@ msgstr "" msgid "STOCK_NETWORK" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_tracking_form +msgid "This is the list of all your packs. After having selected a Pack, you can get the up-stream or down-stream traceability of the products contained in the pack." +msgstr "" + #. module: stock #: view:report.stock.lines.date:0 msgid "Non Inv" @@ -3598,6 +3708,12 @@ msgstr "" msgid "Chaining Journal" msgstr "" +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Not enough stock, unable to reserve the products." +msgstr "" + #. module: stock #: model:stock.location,name:stock.stock_location_customers msgid "Customers" @@ -3614,6 +3730,11 @@ msgstr "" msgid "terp-document-new" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_reception_picking_move +msgid "You will find here the list of all products you are waiting for, according to your preceding purchase orders. Once you receive an order, you can filter based on the name of the supplier or the purchase order reference. Then you can confirm all products received using the buttons on the right of each line." +msgstr "" + #. module: stock #: view:stock.inventory.line:0 msgid "Stock Inventory Lines" @@ -3671,6 +3792,11 @@ msgstr "" msgid "Date Expected" msgstr "" +#. module: stock +#: model:ir.actions.act_window,help:stock.action_picking_tree4 +msgid "The Incoming Shipments is the list of all orders you will receive from your supplier. An incoming shipment contains a list of products to be received according to the original purchase order. You can validate the shipment totally or partially." +msgstr "" + #. module: stock #: field:stock.move,auto_validate:0 msgid "Auto Validate" @@ -3681,6 +3807,12 @@ msgstr "" msgid "Product Template" msgstr "" +#. module: stock +#: code:addons/stock/wizard/stock_invoice_onshipping.py:0 +#, python-format +msgid "Invoices" +msgstr "" + #. module: stock #: selection:report.stock.move,month:0 msgid "December" @@ -3789,11 +3921,21 @@ msgid "When the stock move is created it is in the 'Draft' state.\n" "The state is 'Waiting' if the move is waiting for another one." msgstr "" +#. module: stock +#: view:board.board:0 +msgid "Outgoing Products Delay" +msgstr "" + #. module: stock #: field:stock.move.split.lines,use_exist:0 msgid "Existing Lot" msgstr "" +#. module: stock +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_MEDIA_PREVIOUS" @@ -3815,6 +3957,12 @@ msgstr "" msgid "For the current product, this stock location will be used, instead of the default one, as the source location for stock moves generated by procurements" msgstr "" +#. module: stock +#: code:addons/stock/wizard/stock_inventory_merge.py:0 +#, python-format +msgid "Warning" +msgstr "" + #. module: stock #: code:addons/stock/stock.py:0 #, python-format @@ -3853,6 +4001,7 @@ msgid "November" msgstr "" #. module: stock +#: code:addons/stock/product.py:0 #: code:addons/stock/stock.py:0 #, python-format msgid "There is no journal defined on the product category: \"%s\" (id: %d)" @@ -3881,9 +4030,8 @@ msgid "Check Availability" msgstr "" #. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "Not Available. Moves are not confirmed." +#: selection:report.stock.move,month:0 +msgid "January" msgstr "" #. module: stock @@ -3906,11 +4054,6 @@ msgstr "" msgid "Move History (parent moves)" msgstr "" -#. module: stock -#: view:stock.move:0 -msgid "Extended options..." -msgstr "" - #. module: stock #: code:addons/stock/product.py:0 #, python-format @@ -3930,12 +4073,12 @@ msgid "XML File" msgstr "" #. module: stock -#: code:addons/stock/wizard/stock_partial_move.py:0 #: code:addons/stock/wizard/stock_partial_picking.py:0 #: model:res.request.link,name:stock.req_link_tracking #: field:stock.inventory.line,prod_lot_id:0 #: report:stock.inventory.move:0 #: field:stock.move,prodlot_id:0 +#: field:stock.move.memory,prodlot_id:0 #: field:stock.move.split.lines.exist,prodlot_id:0 #: view:stock.production.lot:0 #, python-format @@ -3988,8 +4131,15 @@ msgstr "" msgid "terp-product" msgstr "" +#. module: stock +#: code:addons/stock/wizard/stock_splitinto.py:0 +#, python-format +msgid "Total quantity after split exceeds the quantity to split for this product: \"%s\" (id: %d)" +msgstr "" + #. module: stock #: view:stock.move:0 +#: field:stock.partial.move,product_moves:0 msgid "Moves" msgstr "" @@ -4000,6 +4150,11 @@ msgstr "" msgid "Dest. Location" msgstr "" +#. module: stock +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: stock #: help:stock.move,product_packaging:0 msgid "It specifies attributes of packaging like type, quantity of packaging,etc." @@ -4011,6 +4166,11 @@ msgstr "" msgid "quantity." msgstr "" +#. module: stock +#: model:ir.model,name:stock.model_stock_move_memory +msgid "stock.move.memory" +msgstr "" + #. module: stock #: view:stock.move:0 msgid "Expected" @@ -4061,6 +4221,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Deliver" +msgstr "" + #. module: stock #: help:product.template,property_stock_account_output:0 msgid "When doing real-time inventory valuation, counterpart Journal Items for all outgoing stock moves will be posted in this account. If not set on the product, the one from the product category is used." @@ -4072,6 +4238,7 @@ msgid "Upstream traceability" msgstr "" #. module: stock +#: model:ir.actions.report.xml,name:stock.report_location_overview_all #: report:lot.stock.overview_all:0 msgid "Location Content" msgstr "" @@ -4153,11 +4320,22 @@ msgstr "" msgid "Warning !" msgstr "" +#. module: stock +#: sql_constraint:decimal.precision:0 +msgid "Only one value can be defined for each given usage!" +msgstr "" + #. module: stock #: model:stock.location,name:stock.stock_location_output msgid "Output" msgstr "" +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "You cannot remove the picking which is in %s state !" +msgstr "" + #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_JUSTIFY_RIGHT" diff --git a/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot b/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot index 57b701ce1b7..893fa5d1368 100644 --- a/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot +++ b/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:03+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:03+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:15+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: stock_invoice_directly +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking msgid "Partial Picking" @@ -30,3 +35,8 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: stock_invoice_directly +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + diff --git a/addons/stock_location/i18n/stock_location.pot b/addons/stock_location/i18n/stock_location.pot index 503dadc84b8..ee05acde904 100644 --- a/addons/stock_location/i18n/stock_location.pot +++ b/addons/stock_location/i18n/stock_location.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:03+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:03+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:15+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -72,6 +72,11 @@ msgstr "" msgid "Location used by Destination Location to supply" msgstr "" +#. module: stock_location +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: stock_location #: selection:product.pulled.flow,picking_type:0 #: selection:stock.location.path,picking_type:0 @@ -123,6 +128,11 @@ msgstr "" msgid "Pack Zone" msgstr "" +#. module: stock_location +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: stock_location #: model:stock.location,name:stock_location.location_gate_b msgid "Gate B" @@ -267,6 +277,11 @@ msgstr "" msgid "Is the destination location that needs supplying" msgstr "" +#. module: stock_location +#: sql_constraint:stock.warehouse.orderpoint:0 +msgid "Qty Multiple must be greater than zero." +msgstr "" + #. module: stock_location #: field:stock.location.path,product_id:0 msgid "Products" @@ -337,6 +352,11 @@ msgstr "" msgid "Move" msgstr "" +#. module: stock_location +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: stock_location #: help:product.pulled.flow,picking_type:0 #: help:stock.location.path,picking_type:0 diff --git a/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot b/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot index 43b822b6610..787a5a80a8e 100644 --- a/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot +++ b/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:04+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:04+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:16+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:16+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: stock_no_autopicking +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: stock_no_autopicking #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -45,8 +50,18 @@ msgstr "" msgid "Auto picking for raw materials of production orders." msgstr "" +#. module: stock_no_autopicking +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: stock_no_autopicking #: model:ir.module.module,shortdesc:stock_no_autopicking.module_meta_information msgid "Stock No Auto-Picking" msgstr "" +#. module: stock_no_autopicking +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/stock_planning/i18n/stock_planning.pot b/addons/stock_planning/i18n/stock_planning.pot index d35859f81be..db8a1131d47 100644 --- a/addons/stock_planning/i18n/stock_planning.pot +++ b/addons/stock_planning/i18n/stock_planning.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:04+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:04+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:17+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -42,12 +42,6 @@ msgstr "" msgid "Group By..." msgstr "" -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Already Out: " -msgstr "" - #. module: stock_planning #: help:stock.sale.forecast,product_amt:0 msgid "Forecast value which will be converted to Product Quantity according to prices." @@ -125,6 +119,13 @@ msgstr "" msgid "Company" msgstr "" +#. module: stock_planning +#: code:addons/stock_planning/stock_planning.py:0 +#, python-format +msgid "\n" +" Initial Stock: " +msgstr "" + #. module: stock_planning #: help:stock.planning,warehouse_forecast:0 msgid "All sales forecasts for selected Warehouse of selected Product during selected Period." @@ -165,12 +166,6 @@ msgstr "" msgid "Current Period Situation" msgstr "" -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Planned Out Before: " -msgstr "" - #. module: stock_planning #: view:stock.period.createlines:0 msgid "Create Monthly Periods" @@ -337,6 +332,11 @@ msgstr "" msgid "Period" msgstr "" +#. module: stock_planning +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: stock_planning #: view:stock.period:0 #: field:stock.period,state:0 @@ -387,6 +387,11 @@ msgstr "" msgid "Name" msgstr "" +#. module: stock_planning +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: stock_planning #: view:stock.planning:0 msgid "Search Stock Planning" @@ -422,6 +427,13 @@ msgstr "" msgid "This User" msgstr "" +#. module: stock_planning +#: code:addons/stock_planning/stock_planning.py:0 +#, python-format +msgid "\n" +" Confirmed Out: " +msgstr "" + #. module: stock_planning #: view:stock.planning:0 msgid "Forecasts" @@ -475,12 +487,6 @@ msgstr "" msgid "Creates planning lines for selected period and warehouse." msgstr "" -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Warehouse Forecast: " -msgstr "" - #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:0 #, python-format @@ -519,6 +525,13 @@ msgstr "" msgid "Per User :" msgstr "" +#. module: stock_planning +#: model:ir.ui.menu,name:stock_planning.menu_stock_sale_forecast +#: model:ir.ui.menu,name:stock_planning.menu_stock_sale_forecast_all +#: view:stock.sale.forecast:0 +msgid "Sales Forecasts" +msgstr "" + #. module: stock_planning #: field:stock.period,name:0 #: field:stock.period.createlines,name:0 @@ -531,8 +544,8 @@ msgid "Created/Validated by" msgstr "" #. module: stock_planning -#: field:stock.planning,warehouse_forecast:0 -msgid "Warehouse Forecast" +#: view:stock.planning:0 +msgid "Internal Supply" msgstr "" #. module: stock_planning @@ -545,12 +558,6 @@ msgstr "" msgid "This Company Period5" msgstr "" -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Planned Out: " -msgstr "" - #. module: stock_planning #: field:stock.sale.forecast,analyzed_period2_per_company:0 msgid "This Company Period2" @@ -587,6 +594,11 @@ msgstr "" msgid "Planned Out" msgstr "" +#. module: stock_planning +#: view:stock.sale.forecast:0 +msgid "Per Department :" +msgstr "" + #. module: stock_planning #: view:stock.planning:0 msgid "Forecast" @@ -615,6 +627,13 @@ msgstr "" msgid "This Dept Period5" msgstr "" +#. module: stock_planning +#: code:addons/stock_planning/stock_planning.py:0 +#, python-format +msgid "\n" +" Expected Out: " +msgstr "" + #. module: stock_planning #: view:stock.period.createlines:0 msgid "Create periods for Stock and Sales Planning" @@ -625,6 +644,123 @@ msgstr "" msgid "Enter planned outgoing quantity from selected Warehouse during the selected Period of selected Product. To plan this value look at Confirmed Out or Sales Forecasts. This value should be equal or greater than Confirmed Out." msgstr "" +#. module: stock_planning +#: model:ir.module.module,description:stock_planning.module_meta_information +msgid "\n" +"This module is based on original OpenERP SA module stock_planning version 1.0 of the same name Master Procurement Schedule.\n" +"\n" +"Purpose of MPS is to allow create a manual procurement (requisition) apart of MRP scheduler (which works automatically on minimum stock rules).\n" +"\n" +"Terms used in the module:\n" +"- Stock and Sales Period - is the time (between Start Date and End Date) for which you plan Stock and Sales Forecast and make Procurement Planning. \n" +"- Stock and Sales Forecast - is the quantity of products you plan to sell in the Period.\n" +"- Stock Planning - is the quantity of products you plan to purchase or produce for the Period.\n" +"\n" +"Because we have another module sale_forecast which uses terms \"Sales Forecast\" and \"Planning\" as amount values we will use terms \"Stock and Sales Forecast\" and \"Stock Planning\" to emphasize that we use quantity values. \n" +"\n" +"Activity with this module is divided to three steps:\n" +"- Creating Periods. Mandatory step.\n" +"- Creating Sale Forecasts and entering quantities to them. Optional step but useful for further planning.\n" +"- Creating Planning lines, entering quantities to them and making Procurement. Making procurement is the final step for the Period.\n" +"\n" +"Periods\n" +"=======\n" +"You have two menu items for Periods in \"Sales Management - Configuration\". There are:\n" +"- \"Create Sales Periods\" - Which automates creating daily, weekly or monthly periods.\n" +"- \"Stock and sales Periods\" - Which allows to create any type of periods, change the dates and change the State of period.\n" +"\n" +"Creating periods is the first step you have to do to use modules features. You can create custom periods using \"New\" button in \"Stock and Sales Periods\" form or view but it is recommended to use automating tool.\n" +"\n" +"Remarks:\n" +"- These periods (officially Stock and Sales Periods) are separated of Financial or other periods in the system.\n" +"- Periods are not assigned to companies (when you use multicompany feature at all). Module suppose that you use the same periods across companies. If you wish to use different periods for different companies define them as you wish (they can overlap). Later on in this text will be indications how to use such periods.\n" +"- When periods are created automatically their start and finish dates are with start hour 00:00:00 and end hour 23:59:00. Fe. when you create daily periods they will have start date 31.01.2010 00:00:00 and end date 31.01.2010 23:59:00. It works only in automatic creation of periods. When you create periods manually you have to take care about hours because you can have incorrect values form sales or stock. \n" +"- If you use overlapping periods for the same product, warehouse and company results can be unpredictable.\n" +"- If current date doesn't belong to any period or you have holes between periods results can be unpredictable.\n" +"\n" +"Sales Forecasts\n" +"===============\n" +"You have few menus for Sales forecast in \"Sales Management - Sales Forecasts\".\n" +"- \"Create Sales Forecasts for Sales Periods\" - which automates creating forecasts lines according to some parameters.\n" +"- \"Sales Forecasts\" - few menus for working with forecasts lists and forms.\n" +"\n" +"Menu \"Create Sales Forecasts for Sales Periods\" creates Forecasts for products from selected Category, for selected Period and for selected Warehouse. It is an option \"Copy Last Forecast\" to copy forecast and other settings of period before this one to created one.\n" +"\n" +"Remarks:\n" +"- This tool doesn't create lines, if relevant lines (for the same Product, Period, Warehouse and validated or created by you) already exists. If you wish to create another forecast, if relevant lines exists you have to do it manually using menus described bellow.\n" +"- When created lines are validated by someone else you can use this tool to create another lines for the same Period, Product and Warehouse. \n" +"- When you choose \"Copy Last Forecast\" created line takes quantity and some settings from your (validated by you or created by you if not validated yet) forecast which is for last period before period of created forecast. If there are few your forecasts for period before this one (it is possible) system takes one of them (no rule which of them).\n" +"\n" +"\n" +"Menus \"Sales Forecasts\"\n" +"On \"Sales Forecast\" form mainly you have to enter a forecast quantity in \"Product Quantity\". Further calculation can work for draft forecasts. But validation can save your data against any accidental changes. You can click \"Validate\" button but it is not mandatory.\n" +"\n" +"Instead of forecast quantity you can enter amount of forecast sales in field \"Product Amount\". System will count quantity from amount according to Sale price of the Product.\n" +"\n" +"All values on the form are expressed in unit of measure selected on form. You can select one of unit of measure from default category or from second category. When you change unit of measure the quanities will be recalculated according to new UoM: editable values (blue fields) immediately, non edited fields after clicking of \"Calculate Planning\" button.\n" +"\n" +"To find proper value for Sale Forecast you can use \"Sales History\" table for this product. You have to enter parameters to the top and left of this table and system will count sale quantities according to these parameters. So you can select fe. your department (at the top) then (to the left): last period, period before last and period year ago.\n" +"\n" +"Remarks:\n" +"\n" +"\n" +"Procurement Planning\n" +"====================\n" +"Menu for Planning you can find in \"Warehouse - Stock Planning\".\n" +"- \"Create Stock Planning Lines\" - allows you to automate creating planning lines according to some parameters.\n" +"- \"Master Procurement Scheduler\" - is the most important menu of the module which allows to create procurement.\n" +"\n" +"As Sales forecast is phase of planning sales. The Procurement Planning (Planning) is the phase of scheduling Purchasing or Producing. You can create Procurement Planning quickly using tool from menu \"Create Stock Planning Lines\", then you can review created planning and make procurement using menu \"Master Procurement Schedule\".\n" +"\n" +"Menu \"Create Stock Planning Lines\" allows you to create quickly Planning lines for products from selected Category, for selected Period, and for selected Warehouse. When you check option \"All Products with Forecast\" system creates lines for all products having forecast for selected Period and Warehouse. Selected Category will be ignored in this case.\n" +"\n" +"Under menu \"Master Procurement Scheduler\" you can generally change the values \"Planned Out\" and \"Planned In\" to observe the field \"Stock Simulation\" and decide if this value would be accurate for end of the Period. \n" +"\"Planned Out\" can be based on \"Warehouse Forecast\" which is the sum of all forecasts for Period and Warehouse. But your planning can be based on any other information you have. It is not necessary to have any forecast. \n" +"\"Planned In\" quantity is used to calculate field \"Incoming Left\" which is the quantity to be procured to make stock as indicated in \"Stock Simulation\" at the end of Period. You can compare \"Stock Simulation\" quantity to minimum stock rules visible on the form. But you can plan different quantity than in Minimum Stock Rules. Calculation is made for whole Warehouse by default. But if you want to see values for Stock location of calculated warehouse you can use check box \"Stock Location Only\".\n" +"\n" +"If after few tries you decide that you found correct quantities for \"Planned Out\" and \"Planned In\" and you are satisfied with end of period stock calculated in \"Stock Simulation\" you can click \"Procure Incoming Left\" button to procure quantity of field \"Incoming Left\" into the Warehouse. System creates appropriate Procurement Order. You can decide if procurement will be made to Stock or Input location of calculated Warehouse. \n" +"\n" +"If you don't want to Produce or Buy the product but just pick calculated quantity from another warehouse you can click \"Supply from Another Warehouse\" (instead of \"Procure Incoming Left\"). System creates pick list with move from selected source Warehouse to calculated Warehouse (as destination). You can also decide if this pick should be done from Stock or Output location of source warehouse. Destination location (Stock or Input) of destination warehouse will be used as set for \"Procure Incoming Left\". \n" +"\n" +"To see proper quantities in fields \"Confirmed In\", \"Confirmed Out\", \"Confirmed In Before\", \"Planned Out Before\" and \"Stock Simulation\" you have to click button \"Calculate Planning\".\n" +"\n" +"All values on the form are expressed in unit of measure selected on form. You can select one of unit of measure from default category or from second category. When you change unit of measure the quanities will be recalculated according to new UoM: editable values (blue fields) immediately, non edited fields after clicking of \"Calculate Planning\" button.\n" +"\n" +"How Stock Simulation field is calculated:\n" +"Generally Stock Simulation shows the stock for end of the calculated period according to some planned or confirmed stock moves. Calculation always starts with quantity of real stock of beginning of current period. Then calculation adds or subtracts quantities of calculated period or periods before calculated.\n" +"When you are in the same period (current period is the same as calculated) Stock Simulation is calculated as follows:\n" +"Stock Simulation = \n" +" Stock of beginning of current Period\n" +" - Planned Out \n" +" + Planned In\n" +"\n" +"When you calculate period next to current:\n" +"Stock Simulation = \n" +" Stock of beginning of current Period\n" +" - Planned Out of current Period \n" +" + Confirmed In of current Period (incl. Already In)\n" +" - Planned Out of calculated Period \n" +" + Planned In of calculated Period .\n" +"\n" +"As you see calculated Period is taken the same way like in case above. But calculation of current Period are made a little bit different. First you should note that system takes for current Period only Confirmed In moves. It means that you have to make planning and procurement for current Period before this calculation (for Period next to current). \n" +"\n" +"When you calculate Period ahead:\n" +"Stock Simulation = \n" +" Stock of beginning of current Period \n" +" - Sum of Planned Out of Periods before calculated \n" +" + Sum of Confirmed In of Periods before calculated (incl. Already In) \n" +" - Planned Out of calculated Period \n" +" + Planned In of calculated Period.\n" +"\n" +"Periods before calculated means periods starting from current till period before calculated.\n" +"\n" +"Remarks:\n" +"- Remember to make planning for all periods before calculated because omitting these quantities and procurements can cause wrong suggestions for procurements few periods ahead.\n" +"- If you made planning few periods ahead and you find that real Confirmed Out is bigger than Planned Out in some periods before you can repeat Planning and make another procurement. You should do it in the same planning line. If you create another planning line the suggestions can be wrong.\n" +"- When you wish to work with different periods for some part of products define two kinds of periods (fe. Weekly and Monthly) and use them for different products. Example: If you use always Weekly periods for Products A, and Monthly periods for Products B your all calculations will work correctly. You can also use different kind of periods for the same products from different warehouse or companies. But you cannot use overlapping periods for the same product, warehouse and company because results can be unpredictable. The same apply to Forecasts lines.\n" +"" +msgstr "" + #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:0 #, python-format @@ -632,8 +768,10 @@ msgid " Incoming Left: " msgstr "" #. module: stock_planning -#: view:stock.planning:0 -msgid "Internal Supply" +#: code:addons/stock_planning/stock_planning.py:0 +#, python-format +msgid "\n" +" Planned Out: " msgstr "" #. module: stock_planning @@ -690,12 +828,6 @@ msgstr "" msgid "Period1" msgstr "" -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Initial Stock: " -msgstr "" - #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:0 #, python-format @@ -735,6 +867,11 @@ msgstr "" msgid "This Warehouse Period1" msgstr "" +#. module: stock_planning +#: field:stock.planning,warehouse_forecast:0 +msgid "Warehouse Forecast" +msgstr "" + #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:0 #, python-format @@ -761,18 +898,6 @@ msgstr "" msgid "Stock" msgstr "" -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Stock Simulation: " -msgstr "" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Confirmed Out: " -msgstr "" - #. module: stock_planning #: field:stock.planning,stock_supply_location:0 msgid "Stock Supply Location" @@ -876,6 +1001,11 @@ msgstr "" msgid "Copy quantities from last Stock and Sale Forecast." msgstr "" +#. module: stock_planning +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: stock_planning #: field:stock.sale.forecast,analyzed_period1_per_dept:0 msgid "This Dept Period1" @@ -957,8 +1087,10 @@ msgid "Warehouse which planning will concern." msgstr "" #. module: stock_planning -#: field:stock.sale.forecast,analyze_company:0 -msgid "Per Company" +#: code:addons/stock_planning/stock_planning.py:0 +#, python-format +msgid "\n" +" Stock Simulation: " msgstr "" #. module: stock_planning @@ -989,7 +1121,8 @@ msgstr "" #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:0 #, python-format -msgid "\nFor period: " +msgid "\n" +" Warehouse Forecast: " msgstr "" #. module: stock_planning @@ -1009,8 +1142,13 @@ msgid " Planned In: " msgstr "" #. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Per Department :" +#: field:stock.sale.forecast,analyze_company:0 +msgid "Per Company" +msgstr "" + +#. module: stock_planning +#: help:stock.planning,incoming_left:0 +msgid "Quantity left to Planned incoming quantity. This is calculated difference between Planned In and Confirmed In. For current period Already In is also calculated. This value is used to create procurement for lacking quantity." msgstr "" #. module: stock_planning @@ -1065,14 +1203,8 @@ msgstr "" #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:0 #, python-format -msgid "\n Expected Out: " -msgstr "" - -#. module: stock_planning -#: model:ir.ui.menu,name:stock_planning.menu_stock_sale_forecast -#: model:ir.ui.menu,name:stock_planning.menu_stock_sale_forecast_all -#: view:stock.sale.forecast:0 -msgid "Sales Forecasts" +msgid "\n" +"For period: " msgstr "" #. module: stock_planning @@ -1152,8 +1284,10 @@ msgid "Shows who created this forecast, or who validated." msgstr "" #. module: stock_planning -#: help:stock.planning,incoming_left:0 -msgid "Quantity left to Planned incoming quantity. This is calculated difference between Planned In and Confirmed In. For current period Already In is also calculated. This value is used to create procurement for lacking quantity." +#: code:addons/stock_planning/stock_planning.py:0 +#, python-format +msgid "\n" +" Planned Out Before: " msgstr "" #. module: stock_planning diff --git a/addons/subscription/i18n/subscription.pot b/addons/subscription/i18n/subscription.pot index 4463dfe0075..a013fbd0d69 100644 --- a/addons/subscription/i18n/subscription.pot +++ b/addons/subscription/i18n/subscription.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:05+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:05+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:17+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,20 +21,14 @@ msgstr "" msgid "Source Document" msgstr "" -#. module: subscription -#: help:subscription.document,active:0 -msgid "If the active field is set to true, it will allow you to hide the subscription document without removing it." -msgstr "" - #. module: subscription #: field:subscription.document,model:0 msgid "Object" msgstr "" #. module: subscription -#: code:addons/subscription/subscription.py:0 -#, python-format -msgid "Please provide another source document.\nThis one does not exist !" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: subscription @@ -52,12 +46,6 @@ msgstr "" msgid "Search Subscription" msgstr "" -#. module: subscription -#: code:addons/subscription/subscription.py:0 -#, python-format -msgid "You cannot modify the Object linked to the Document Type!\nCreate another Document instead !" -msgstr "" - #. module: subscription #: field:subscription.subscription,date_init:0 msgid "First Date" @@ -94,11 +82,6 @@ msgstr "" msgid "Error ! You can not create recursive Menu." msgstr "" -#. module: subscription -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: subscription #: selection:subscription.subscription,interval_type:0 msgid "Weeks" @@ -109,6 +92,11 @@ msgstr "" msgid "Today" msgstr "" +#. module: subscription +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: subscription #: code:addons/subscription/subscription.py:0 #, python-format @@ -174,6 +162,11 @@ msgstr "" msgid "Number of documents" msgstr "" +#. module: subscription +#: help:subscription.document,active:0 +msgid "If the active field is set to False, it will allow you to hide the subscription document without removing it." +msgstr "" + #. module: subscription #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -190,6 +183,13 @@ msgstr "" msgid "Name" msgstr "" +#. module: subscription +#: code:addons/subscription/subscription.py:0 +#, python-format +msgid "You cannot modify the Object linked to the Document Type!\n" +"Create another Document instead !" +msgstr "" + #. module: subscription #: field:subscription.document,field_ids:0 msgid "Fields" @@ -260,6 +260,11 @@ msgstr "" msgid "Description or Summary of Subscription" msgstr "" +#. module: subscription +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: subscription #: model:ir.model,name:subscription.model_subscription_document #: view:subscription.document:0 @@ -326,6 +331,13 @@ msgstr "" msgid "Invoice" msgstr "" +#. module: subscription +#: code:addons/subscription/subscription.py:0 +#, python-format +msgid "Please provide another source document.\n" +"This one does not exist !" +msgstr "" + #. module: subscription #: field:subscription.document.fields,value:0 msgid "Default Value" @@ -337,3 +349,8 @@ msgstr "" msgid "Documents created" msgstr "" +#. module: subscription +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/survey/i18n/survey.pot b/addons/survey/i18n/survey.pot index 311e5830e5e..2c6affebaac 100644 --- a/addons/survey/i18n/survey.pot +++ b/addons/survey/i18n/survey.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:19+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,24 +16,15 @@ msgstr "" "Plural-Forms: \n" #. module: survey -#: view:survey.response.line:0 -msgid "Single Textboxes" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_form1 -#: model:ir.ui.menu,name:survey.menu_print_survey_form -#: model:ir.ui.menu,name:survey.menu_reporting -#: model:ir.ui.menu,name:survey.menu_survey_form -#: model:ir.ui.menu,name:survey.menu_surveys -msgid "Surveys" +#: view:survey.print:0 +#: view:survey.print.answer:0 +msgid "Print Option" msgstr "" #. module: survey #: code:addons/survey/survey.py:0 #, python-format -msgid "You must enter one or more menu choices\\n" -" in column heading" +msgid "Minimum Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." msgstr "" #. module: survey @@ -48,8 +39,9 @@ msgid "Text Validation" msgstr "" #. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_question_form -msgid "Survey Questions" +#: code:addons/survey/survey.py:0 +#, python-format +msgid "Maximum Required Answer you entered for your maximum is greater than the number of answer. Please use a number that is smaller than %d." msgstr "" #. module: survey @@ -64,10 +56,12 @@ msgid "Character" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \n\" + tools.ustr(que_rec['validation_valid_err_msg'])))\n" -" if key.split('_" +#: model:ir.actions.act_window,name:survey.action_survey_form1 +#: model:ir.ui.menu,name:survey.menu_print_survey_form +#: model:ir.ui.menu,name:survey.menu_reporting +#: model:ir.ui.menu,name:survey.menu_survey_form +#: model:ir.ui.menu,name:survey.menu_surveys +msgid "Surveys" msgstr "" #. module: survey @@ -118,6 +112,12 @@ msgstr "" msgid "History Lines" msgstr "" +#. module: survey +#: code:addons/survey/survey.py:0 +#, python-format +msgid "You must enter one or more menu choices in column heading (white spaces not allowed)" +msgstr "" + #. module: survey #: view:survey:0 #: view:survey.page:0 @@ -154,12 +154,6 @@ msgstr "" msgid "Is Menu Choice Invisible?" msgstr "" -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "Letter (8.5\" x 11\")" -msgstr "" - #. module: survey #: view:survey:0 msgid "Completed" @@ -171,16 +165,8 @@ msgid "Exactly" msgstr "" #. module: survey -#: model:ir.actions.act_window,name:survey.action_act_view_survey_send_invitation -msgid "Send Invitations" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:0 -#, python-format -msgid "Maximum Required Answer you\\n" -" entered for your maximum is greater than the number of answer.\\n" -" Please use a number that is smaller than %d." +#: view:survey:0 +msgid "Open Date" msgstr "" #. module: survey @@ -194,19 +180,9 @@ msgid "Add Comment Field" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 +#: code:addons/survey/survey.py:0 #, python-format -msgid "'\" + que_rec['question'] + \"' \n\" + tools.ustr(que_rec['comment_valid_err_msg'])))\n" -"\n" -" resp_obj.write(cr, uid, resp_id, {'comment':val1})\n" -" sur_name_read['store_ans'][resp_id].update({key1:val1})\n" -"\n" -" elif val1 and key1.split('_" -msgstr "" - -#. module: survey -#: selection:survey.request,state:0 -msgid "Wating Answer" +msgid "#Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." msgstr "" #. module: survey @@ -225,13 +201,13 @@ msgid "survey.name.wiz" msgstr "" #. module: survey -#: view:survey.response.line:0 -msgid "Table Answer" +#: model:ir.actions.act_window,name:survey.action_survey_question_form +msgid "Survey Questions" msgstr "" #. module: survey -#: view:survey:0 -msgid "History" +#: view:survey.response.line:0 +msgid "Table Answer" msgstr "" #. module: survey @@ -316,8 +292,9 @@ msgid "Answer a Survey" msgstr "" #. module: survey -#: field:survey.answer,type:0 -msgid "Type of Answer" +#: code:addons/survey/wizard/survey_answer.py:0 +#, python-format +msgid "Error!" msgstr "" #. module: survey @@ -330,11 +307,6 @@ msgstr "" msgid "(Use Only Question Type is matrix_of_drop_down_menus)" msgstr "" -#. module: survey -#: field:survey.question.column.heading,in_visible_rating_weight:0 -msgid "Is Rating Scale Invisible ??" -msgstr "" - #. module: survey #: model:ir.actions.report.xml,name:survey.survey_analysis msgid "Survey Statistics" @@ -352,12 +324,6 @@ msgstr "" msgid "Rating Scale" msgstr "" -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "You can not give answer because of survey is not open for answer" -msgstr "" - #. module: survey #: field:survey.question,comment_field_type:0 msgid "Comment Field Type" @@ -394,11 +360,8 @@ msgid "Edit Survey" msgstr "" #. module: survey -#: code:addons/survey/survey.py:0 -#, python-format -msgid "Maximum Required Answer you \\n" -" entered for your maximum is greater than the number of answer.\\n" -" Please use a number that is smaller than %d." +#: view:survey.response.line:0 +msgid "Survey Answer Line" msgstr "" #. module: survey @@ -406,36 +369,14 @@ msgstr "" msgid "Menu Choice" msgstr "" -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['req_error_msg'])))\n" -"\n" -" elif (que_rec['required_type'] == 'all' and select_count < len(que_rec['answer_choice_ids'])) or \\n" -" (que_rec['required_type'] == 'at least' and select_count < que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'at most' and select_count > que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'exactly' and select_count != que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'a range' and (select_count < que_rec['minimum_req_ans'] or select_count > que_rec['maximum_req_ans'])):\n" -" for res in resp_id_list:\n" -" sur_name_read['store_ans'].pop(res)\n" -" raise osv.except_osv(_('Warning !" -msgstr "" - #. module: survey #: selection:survey.question,required_type:0 msgid "At Most" msgstr "" #. module: survey -#: view:survey.response.line:0 -msgid "Survey Answer Line" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the question is not answered, display this error message:" +#: field:survey.question,is_validation_require:0 +msgid "Validate Text" msgstr "" #. module: survey @@ -444,13 +385,9 @@ msgid "Text" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \n\" + tools.ustr(que_rec['comment_valid_err_msg'])))\n" -" resp_obj.write(cr, uid, update, {'comment':val,'state': 'done'})\n" -" sur_name_read['store_ans'][update].update({key:val})\n" -"\n" -" elif val and key.split('_" +#: selection:survey.print,paper_size:0 +#: selection:survey.print.answer,paper_size:0 +msgid "Letter (8.5\" x 11\")" msgstr "" #. module: survey @@ -477,8 +414,8 @@ msgid "Maximum decimal number" msgstr "" #. module: survey -#: model:ir.model,name:survey.model_survey_tbl_column_heading -msgid "survey.tbl.column.heading" +#: selection:survey.request,state:0 +msgid "Wating Answer" msgstr "" #. module: survey @@ -523,11 +460,8 @@ msgid "Search Survey Page" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \n\" + tools.ustr(que_rec['validation_valid_err_msg'])))\n" -"\n" -" if key1.split('_" +#: view:survey.send.invitation:0 +msgid "Send" msgstr "" #. module: survey @@ -535,6 +469,17 @@ msgstr "" msgid "Number" msgstr "" +#. module: survey +#: code:addons/survey/survey.py:0 +#, python-format +msgid "You must enter one or more menu choices in column heading" +msgstr "" + +#. module: survey +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: survey #: view:survey:0 #: view:survey.request:0 @@ -582,6 +527,11 @@ msgstr "" msgid "Answer Surveys" msgstr "" +#. module: survey +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: survey #: selection:survey.response,state:0 msgid "Not Finished" @@ -592,12 +542,6 @@ msgstr "" msgid "Survey Print" msgstr "" -#. module: survey -#: code:addons/survey/wizard/survey_selection.py:0 -#, python-format -msgid "You can not give response for this survey more than %s times" -msgstr "" - #. module: survey #: view:survey.send.invitation:0 msgid "Select Partner" @@ -608,11 +552,23 @@ msgstr "" msgid "Question Type" msgstr "" +#. module: survey +#: code:addons/survey/wizard/survey_answer.py:0 +#, python-format +msgid "You can not answer this survey more than %s times" +msgstr "" + #. module: survey #: model:ir.actions.act_window,name:survey.act_survey_answer msgid "Answers" msgstr "" +#. module: survey +#: code:addons/survey/wizard/survey_answer.py:0 +#, python-format +msgid "You can not answer because the survey is not open" +msgstr "" + #. module: survey #: selection:survey.response,response_type:0 msgid "Link" @@ -702,8 +658,14 @@ msgid "You must enter one or more column heading." msgstr "" #. module: survey -#: view:survey.send.invitation:0 -msgid "Send" +#: code:addons/survey/wizard/survey_answer.py:0 +#, python-format +msgid "Please enter an integer value" +msgstr "" + +#. module: survey +#: model:ir.model,name:survey.model_survey_browse_answer +msgid "survey.browse.answer" msgstr "" #. module: survey @@ -711,11 +673,24 @@ msgstr "" msgid "Paragraph of Text" msgstr "" +#. module: survey +#: code:addons/survey/survey.py:0 +#, python-format +msgid "Maximum Required Answer you entered for your maximum is greater than the number of answer. Please use a number that is smaller than %d." +msgstr "" + #. module: survey #: view:survey.request:0 msgid "Watting Answer" msgstr "" +#. module: survey +#: view:survey:0 +#: view:survey.page:0 +#: view:survey.question:0 +msgid "When the question is not answered, display this error message:" +msgstr "" + #. module: survey #: view:survey:0 #: view:survey.page:0 @@ -745,11 +720,8 @@ msgid "Survey Answer" msgstr "" #. module: survey -#: code:addons/survey/survey.py:0 -#, python-format -msgid "#Required Answer you entered \\n" -" is greater than the number of answer. \\n" -" Please use a number that is smaller than %d." +#: selection:survey.answer,type:0 +msgid "Selection" msgstr "" #. module: survey @@ -775,13 +747,6 @@ msgstr "" msgid "User responsible for survey" msgstr "" -#. module: survey -#: field:survey,page_ids:0 -#: view:survey.question:0 -#: field:survey.response.line,page_id:0 -msgid "Page" -msgstr "" - #. module: survey #: field:survey.question,comment_column:0 msgid "Add comment column in matrix" @@ -806,11 +771,9 @@ msgid "When the comment is an invalid format, display this error message" msgstr "" #. module: survey -#: field:survey.history,user_id:0 -#: view:survey.request:0 -#: field:survey.request,user_id:0 -#: field:survey.response,user_id:0 -msgid "User" +#: code:addons/survey/wizard/survey_selection.py:0 +#, python-format +msgid "You can not give more response. Please contact the author of this survey for further assistance." msgstr "" #. module: survey @@ -851,9 +814,9 @@ msgid "Page Number" msgstr "" #. module: survey -#: view:survey.print:0 -#: view:survey.print.answer:0 -msgid "Print Option" +#: code:addons/survey/wizard/survey_answer.py:0 +#, python-format +msgid "Cannot locate survey for the question wizard!" msgstr "" #. module: survey @@ -881,12 +844,6 @@ msgstr "" msgid "When the choices do not add up correctly, display this error message" msgstr "" -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "You can not give answer for this survey more than %s times" -msgstr "" - #. module: survey #: field:survey,date_close:0 msgid "Survey Close Date" @@ -898,32 +855,8 @@ msgid "Survey Open Date" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['req_error_msg'])))\n" -"\n" -" return True\n" -"\n" -" def action_new_question(self,cr, uid, ids, context):\n" -" \"\"\"\n" -" New survey.Question form.\n" -"\n" -" @param self: The object pointer\n" -" @param cr: the current row, from the database cursor,\n" -" @param uid: the current user’s ID for security checks,\n" -" @param ids: List of survey.question.wiz IDs\n" -" @param context: A standard dictionary for contextual values\n" -" @return : Dictionary value for Open new survey.Qestion form.\n" -" \"\"\"\n" -" for key,val in context.items():\n" -" if type(key) == type(True):\n" -" context.pop(key)\n" -" view_id = self.pool.get('ir.ui.view" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Open Date" +#: field:survey.question.column.heading,in_visible_rating_weight:0 +msgid "Is Rating Scale Invisible ??" msgstr "" #. module: survey @@ -989,39 +922,18 @@ msgid "Answer" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['req_error_msg'])))\n" -"\n" -" if que_rec['type'] in ['multiple_choice_only_one_ans','single_textbox','comment'] and que_rec['is_require_answer'] and select_count <= 0:\n" -" for res in resp_id_list:\n" -" sur_name_read['store_ans'].pop(res)\n" -" raise osv.except_osv(_('Warning !" +#: field:survey,max_response_limit:0 +msgid "Maximum Answer Limit" msgstr "" #. module: survey -#: code:addons/survey/survey.py:0 -#, python-format -msgid "#Required Answer you entered is \\n" -" greater than the number of answer.\\n" -" Please use a number that is smaller than %d." +#: model:ir.actions.act_window,name:survey.action_act_view_survey_send_invitation +msgid "Send Invitations" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \n Please enter an integer value " -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['make_comment_field_err_msg'])))\n" -"\n" -" if que_rec['type'] == \"rating_scale\" and que_rec['rating_allow_one_column_require'] and len(selected_value) > len(list(set(selected_value))):\n" -" for res in resp_id_list:\n" -" sur_name_read['store_ans'].pop(res)\n" -" raise osv.except_osv(_('Warning !" +#: field:survey.name.wiz,store_ans:0 +msgid "Store Answer" msgstr "" #. module: survey @@ -1074,6 +986,11 @@ msgstr "" msgid "Landscape(Horizontal)" msgstr "" +#. module: survey +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + #. module: survey #: field:survey.question,no_of_rows:0 msgid "No of Rows" @@ -1101,8 +1018,10 @@ msgid "Answer Type" msgstr "" #. module: survey -#: field:survey.name.wiz,store_ans:0 -msgid "Store Answer" +#: view:survey:0 +#: view:survey.page:0 +#: view:survey.question:0 +msgid "Validation" msgstr "" #. module: survey @@ -1132,48 +1051,17 @@ msgstr "" msgid "Integer" msgstr "" -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['make_comment_field_err_msg'])))\n" -"\n" -" if que_rec['type'] == \"rating_scale\" and que_rec['rating_allow_one_column_require'] and len(selected_value) > len(list(set(selected_value))):\n" -" raise osv.except_osv(_('Warning !" -msgstr "" - #. module: survey #: model:ir.model,name:survey.model_survey_send_invitation msgid "survey.send.invitation" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['req_error_msg'])))\n" -"\n" -" elif (que_rec['required_type'] == 'all' and select_count < len(que_rec['answer_choice_ids'])) or \\n" -" (que_rec['required_type'] == 'at least' and select_count < que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'at most' and select_count > que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'exactly' and select_count != que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'a range' and (select_count < que_rec['minimum_req_ans'] or select_count > que_rec['maximum_req_ans'])):\n" -" raise osv.except_osv(_('Warning !" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['numeric_required_sum_err_msg'])))\n" -"\n" -" if que_rec['type'] in ['multiple_textboxes_diff_type', 'multiple_choice_multiple_ans','matrix_of_choices_only_one_ans','matrix_of_choices_only_multi_ans','matrix_of_drop_down_menus','rating_scale','multiple_textboxes','numerical_textboxes','date','date_and_time'] and que_rec['is_require_answer']:\n" -" if matrix_list:\n" -" if (que_rec['required_type'] == 'all' and len(list(set(matrix_list))) < len(que_rec['answer_choice_ids'])) or \\n" -" (que_rec['required_type'] == 'at least' and len(list(set(matrix_list))) < que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'at most' and len(list(set(matrix_list))) > que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'exactly' and len(list(set(matrix_list))) != que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'a range' and (len(list(set(matrix_list))) < que_rec['minimum_req_ans'] or len(list(set(matrix_list))) > que_rec['maximum_req_ans'])):\n" -" for res in resp_id_list:\n" -" sur_name_read['store_ans'].pop(res)\n" -" raise osv.except_osv(_('Warning !" +#: field:survey.history,user_id:0 +#: view:survey.request:0 +#: field:survey.request,user_id:0 +#: field:survey.response,user_id:0 +msgid "User" msgstr "" #. module: survey @@ -1199,20 +1087,8 @@ msgid "Column" msgstr "" #. module: survey -#: code:addons/survey/survey.py:0 -#, python-format -msgid "Maximum Required Answer is greater \\n" -" than Minimum Required Answer" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_name -msgid "Give Survey Answer" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_browse_answer -msgid "survey.browse.answer" +#: model:ir.model,name:survey.model_survey_tbl_column_heading +msgid "survey.tbl.column.heading" msgstr "" #. module: survey @@ -1221,8 +1097,9 @@ msgid "Survey Response Line" msgstr "" #. module: survey -#: selection:survey.answer,type:0 -msgid "Selection" +#: code:addons/survey/wizard/survey_selection.py:0 +#, python-format +msgid "You can not give response for this survey more than %s times" msgstr "" #. module: survey @@ -1256,23 +1133,14 @@ msgstr "" msgid "Numerical Textboxes" msgstr "" -#. module: survey -#: code:addons/survey/survey.py:0 -#, python-format -msgid "Minimum Required Answer\\n" -" you entered is greater than the number of answer.\\n" -" Please use a number that is smaller than %d." -msgstr "" - #. module: survey #: model:ir.model,name:survey.model_survey_question_wiz msgid "survey.question.wiz" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"\n you cannot select same answer more than one times'" +#: view:survey:0 +msgid "History" msgstr "" #. module: survey @@ -1331,13 +1199,6 @@ msgstr "" msgid "Field Label" msgstr "" -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Validation" -msgstr "" - #. module: survey #: view:survey:0 msgid "Other" @@ -1387,6 +1248,11 @@ msgstr "" msgid "Open" msgstr "" +#. module: survey +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + #. module: survey #: field:survey,tot_start_survey:0 msgid "Total Started Survey" @@ -1429,29 +1295,8 @@ msgid "Matrix of Choices (Multiple Answers Per Row)" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['req_error_msg'])))\n" -"\n" -" else:\n" -" resp_id_list = []\n" -" for update in click_update:\n" -" que_rec = que_obj.read(cr, uid , [int(sur_name_read['store_ans'][update]['question_id'])], [])[0]\n" -" res_ans_obj.unlink(cr, uid,res_ans_obj.search(cr, uid, [('response_id', '=', update)]))\n" -" surv_tbl_column_obj.unlink(cr, uid,surv_tbl_column_obj.search(cr, uid, [('response_table_id', '=', update)]))\n" -" resp_id_list.append(update)\n" -" sur_name_read['store_ans'].update({update:{'question_id':sur_name_read['store_ans'][update]['question_id']}})\n" -" surv_name_wiz.write(cr, uid, [context.get('sur_name_id',False)], {'store_ans':sur_name_read['store_ans']})\n" -" select_count = 0\n" -" numeric_sum = 0\n" -" selected_value = []\n" -" matrix_list = []\n" -" comment_field = False\n" -" comment_value = False\n" -" response_list = []\n" -"\n" -" for key, val in vals.items():\n" -" ans_id_len = key.split('_" +#: model:ir.actions.act_window,name:survey.action_view_survey_name +msgid "Give Survey Answer" msgstr "" #. module: survey @@ -1469,12 +1314,6 @@ msgstr "" msgid "Answered" msgstr "" -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \nPlease enter an integer value " -msgstr "" - #. module: survey #: code:addons/survey/wizard/survey_answer.py:0 #, python-format @@ -1486,14 +1325,26 @@ msgstr "" msgid "Comment/Essay Box" msgstr "" +#. module: survey +#: field:survey.answer,type:0 +msgid "Type of Answer" +msgstr "" + #. module: survey #: field:survey.question,required_type:0 msgid "Respondent must answer" msgstr "" #. module: survey -#: field:survey,max_response_limit:0 -msgid "Maximum Answer Limit" +#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation +#: view:survey.send.invitation:0 +msgid "Send Invitation" +msgstr "" + +#. module: survey +#: code:addons/survey/wizard/survey_answer.py:0 +#, python-format +msgid "You cannot select the same answer more than one time" msgstr "" #. module: survey @@ -1502,21 +1353,8 @@ msgid "Search Question" msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['numeric_required_sum_err_msg'])))\n" -"\n" -" if not select_count:\n" -" resp_obj.write(cr, uid, update, {'state': 'skip'})\n" -"\n" -" if que_rec['type'] in ['multiple_textboxes_diff_type','multiple_choice_multiple_ans','matrix_of_choices_only_one_ans','matrix_of_choices_only_multi_ans','matrix_of_drop_down_menus','rating_scale','multiple_textboxes','numerical_textboxes','date','date_and_time'] and que_rec['is_require_answer']:\n" -" if matrix_list:\n" -" if (que_rec['required_type'] == 'all' and len(list(set(matrix_list))) < len(que_rec['answer_choice_ids'])) or \\n" -" (que_rec['required_type'] == 'at least' and len(list(set(matrix_list))) < que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'at most' and len(list(set(matrix_list))) > que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'exactly' and len(list(set(matrix_list))) != que_rec['req_ans']) or \\n" -" (que_rec['required_type'] == 'a range' and (len(list(set(matrix_list))) < que_rec['minimum_req_ans'] or len(list(set(matrix_list))) > que_rec['maximum_req_ans'])):\n" -" raise osv.except_osv(_('Warning !" +#: field:survey,title:0 +msgid "Survey Title" msgstr "" #. module: survey @@ -1543,19 +1381,6 @@ msgstr "" msgid "At Least" msgstr "" -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation -#: view:survey.send.invitation:0 -msgid "Send Invitation" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:0 -#, python-format -msgid "You must enter one or more menu \\n" -" choices in column heading (white spaces not allowed)" -msgstr "" - #. module: survey #: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation_log #: model:ir.model,name:survey.model_survey_send_invitation_log @@ -1568,15 +1393,6 @@ msgstr "" msgid "Portrait(Vertical)" msgstr "" -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:0 -#, python-format -msgid "'\" + que_rec['question'] + \"' \" + tools.ustr(que_rec['req_error_msg'])))\n" -"\n" -" if que_rec['type'] in ['multiple_choice_only_one_ans','single_textbox','comment'] and que_rec['is_require_answer'] and select_count <= 0:\n" -" raise osv.except_osv(_('Warning !" -msgstr "" - #. module: survey #: selection:survey.question,comment_valid_type:0 #: selection:survey.question,validation_type:0 @@ -1609,11 +1425,6 @@ msgstr "" msgid "You must enter one or more answer." msgstr "" -#. module: survey -#: field:survey,title:0 -msgid "Survey Title" -msgstr "" - #. module: survey #: model:ir.actions.report.xml,name:survey.survey_browse_response #: field:survey.browse.answer,response_id:0 @@ -1636,14 +1447,15 @@ msgid "Pages" msgstr "" #. module: survey -#: field:survey.question,is_validation_require:0 -msgid "Validate Text" +#: code:addons/survey/survey.py:0 +#, python-format +msgid "#Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." msgstr "" #. module: survey -#: code:addons/survey/wizard/survey_selection.py:0 +#: code:addons/survey/wizard/survey_answer.py:0 #, python-format -msgid "You can not give more response. Please contact the author of this survey for further assistance." +msgid "You cannot select same answer more than one time'" msgstr "" #. module: survey @@ -1692,17 +1504,28 @@ msgstr "" msgid "You must enter one or more Answer." msgstr "" +#. module: survey +#: code:addons/survey/survey.py:0 +#, python-format +msgid "Minimum Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." +msgstr "" + #. module: survey #: field:survey.answer,menu_choice:0 msgid "Menu Choices" msgstr "" +#. module: survey +#: field:survey,page_ids:0 +#: view:survey.question:0 +#: field:survey.response.line,page_id:0 +msgid "Page" +msgstr "" + #. module: survey #: code:addons/survey/survey.py:0 #, python-format -msgid "Minimum Required Answer you\\n" -" entered is greater than the number of answer. \\n" -" Please use a number that is smaller than %d." +msgid "Maximum Required Answer is greater than Minimum Required Answer" msgstr "" #. module: survey @@ -1746,6 +1569,11 @@ msgstr "" msgid "Float" msgstr "" +#. module: survey +#: view:survey.response.line:0 +msgid "Single Textboxes" +msgstr "" + #. module: survey #: code:addons/survey/wizard/survey_send_invitation.py:0 #, python-format diff --git a/addons/thunderbird/i18n/thunderbird.pot b/addons/thunderbird/i18n/thunderbird.pot index 014157260a5..3467a5fe068 100644 --- a/addons/thunderbird/i18n/thunderbird.pot +++ b/addons/thunderbird/i18n/thunderbird.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:19+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,8 +21,8 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: thunderbird -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: thunderbird @@ -31,14 +31,19 @@ msgstr "" msgid "Thunderbird Plug-in" msgstr "" +#. module: thunderbird +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: thunderbird #: help:thunderbird.installer,thunderbird:0 msgid "Allows you to select an object that you’d like to add to your email and its attachments." msgstr "" #. module: thunderbird -#: help:thunderbird.installer,plugin_file:0 -msgid "Thunderbird plug-in file. Save as this file and install this plug-in in thunderbird." +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: thunderbird @@ -46,11 +51,6 @@ msgstr "" msgid "The documentation file :- how to install Thunderbird Plug-in." msgstr "" -#. module: thunderbird -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - #. module: thunderbird #: model:ir.model,name:thunderbird.model_email_server_tools msgid "Email Server Tools" @@ -61,6 +61,11 @@ msgstr "" msgid "_Close" msgstr "" +#. module: thunderbird +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: thunderbird #: field:thunderbird.installer,pdf_file:0 msgid "Installation Manual" @@ -91,6 +96,11 @@ msgstr "" msgid "Thunderbird Interface" msgstr "" +#. module: thunderbird +#: help:thunderbird.installer,plugin_file:0 +msgid "Thunderbird plug-in file. Save as this file and install this plug-in in thunderbird." +msgstr "" + #. module: thunderbird #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" @@ -138,3 +148,8 @@ msgstr "" msgid "Image" msgstr "" +#. module: thunderbird +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/users_ldap/i18n/users_ldap.pot b/addons/users_ldap/i18n/users_ldap.pot index 0bdb4fa57b2..e7472759e79 100644 --- a/addons/users_ldap/i18n/users_ldap.pot +++ b/addons/users_ldap/i18n/users_ldap.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:20+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,8 +16,23 @@ msgstr "" "Plural-Forms: \n" #. module: users_ldap -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: users_ldap +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: users_ldap +#: field:res.company,ldaps:0 +msgid "LDAP Parameters" +msgstr "" + +#. module: users_ldap +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" msgstr "" #. module: users_ldap @@ -25,11 +40,6 @@ msgstr "" msgid "LDAP Configuration" msgstr "" -#. module: users_ldap -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - #. module: users_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" @@ -55,59 +65,44 @@ msgstr "" msgid "LDAP Server address" msgstr "" -#. module: users_ldap -#: model:ir.model,name:users_ldap.model_res_company -msgid "Companies" -msgstr "" - -#. module: users_ldap -#: model:ir.module.module,shortdesc:users_ldap.module_meta_information -msgid "Authenticate users with ldap server" -msgstr "" - #. module: users_ldap #: field:res.company.ldap,ldap_server_port:0 msgid "LDAP Server port" msgstr "" -#. module: users_ldap -#: model:ir.model,name:users_ldap.model_res_company_ldap -msgid "res.company.ldap" -msgstr "" - -#. module: users_ldap -#: field:res.company.ldap,ldap_password:0 -msgid "LDAP password" -msgstr "" - -#. module: users_ldap -#: field:res.company,ldaps:0 -msgid "LDAP Parameters" -msgstr "" - -#. module: users_ldap -#: field:res.company.ldap,user:0 -msgid "Model User" -msgstr "" - -#. module: users_ldap -#: field:res.company.ldap,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: users_ldap -#: model:ir.model,name:users_ldap.model_res_users -msgid "res.users" -msgstr "" - #. module: users_ldap #: field:res.company.ldap,ldap_base:0 msgid "LDAP base" msgstr "" #. module: users_ldap -#: field:res.company.ldap,ldap_filter:0 -msgid "LDAP filter" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: users_ldap +#: model:ir.model,name:users_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: users_ldap +#: field:res.company.ldap,ldap_password:0 +msgid "LDAP password" +msgstr "" + +#. module: users_ldap +#: model:ir.model,name:users_ldap.model_res_company_ldap +msgid "res.company.ldap" +msgstr "" + +#. module: users_ldap +#: field:res.company.ldap,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: users_ldap +#: model:ir.module.module,shortdesc:users_ldap.module_meta_information +msgid "Authenticate users with ldap server" msgstr "" #. module: users_ldap @@ -115,3 +110,23 @@ msgstr "" msgid "Create user" msgstr "" +#. module: users_ldap +#: field:res.company.ldap,user:0 +msgid "Model User" +msgstr "" + +#. module: users_ldap +#: model:ir.model,name:users_ldap.model_res_users +msgid "res.users" +msgstr "" + +#. module: users_ldap +#: field:res.company.ldap,ldap_filter:0 +msgid "LDAP filter" +msgstr "" + +#. module: users_ldap +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/warning/i18n/warning.pot b/addons/warning/i18n/warning.pot index db73506dd68..68709d84f9f 100644 --- a/addons/warning/i18n/warning.pot +++ b/addons/warning/i18n/warning.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:06+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:06+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:20+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "Message for Purchase Order Line" msgstr "" +#. module: warning +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: warning #: model:ir.model,name:warning.model_stock_picking msgid "Picking List" @@ -52,6 +57,11 @@ msgstr "" msgid "Warning when Purchasing this Product" msgstr "" +#. module: warning +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + #. module: warning #: model:ir.model,name:warning.model_product_product msgid "Product" @@ -199,3 +209,8 @@ msgstr "" msgid "Partner" msgstr "" +#. module: warning +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + diff --git a/addons/wiki/i18n/wiki.pot b/addons/wiki/i18n/wiki.pot index 6d034d4375b..41972f178f7 100644 --- a/addons/wiki/i18n/wiki.pot +++ b/addons/wiki/i18n/wiki.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:07+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:07+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:21+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,8 +16,54 @@ msgstr "" "Plural-Forms: \n" #. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#: view:wiki.wiki:0 +#: field:wiki.wiki,create_uid:0 +msgid "Author" +msgstr "" + +#. module: wiki +#: view:wiki.wiki:0 +msgid "Group By..." +msgstr "" + +#. module: wiki +#: field:wiki.wiki,parent_id:0 +msgid "Parent Page" +msgstr "" + +#. module: wiki +#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff +msgid "wizard.wiki.history.show_diff" +msgstr "" + +#. module: wiki +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: wiki +#: field:wiki.wiki,history_id:0 +msgid "History Lines" +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 +#: field:wiki.wiki,name:0 +msgid "Title" +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,text_area:0 +msgid "Text area" msgstr "" #. module: wiki @@ -26,25 +72,304 @@ msgstr "" msgid "Wiki Pages" msgstr "" +#. module: wiki +#: view:wiki.groups:0 +#: view:wizard.wiki.history.show_diff:0 +msgid "Notes" +msgstr "" + +#. module: wiki +#: view:wiki.wiki:0 +msgid "Meta Information" +msgstr "" + +#. module: wiki +#: field:wiki.groups,home:0 +#: selection:wiki.groups,method:0 +msgid "Home Page" +msgstr "" + +#. module: wiki +#: code:addons/wiki/wiki.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: wiki +#: field:wiki.wiki.history,wiki_id:0 +msgid "Wiki Id" +msgstr "" + +#. module: wiki +#: field:wiki.groups,template:0 +msgid "Wiki Template" +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 +#: view:wiki.wiki:0 +msgid "Topic" +msgstr "" + +#. module: wiki +#: code:addons/wiki/wizard/wiki_show_diff.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: wiki +#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +msgid "Search Page" +msgstr "" + #. module: wiki #: field:wiki.groups,method:0 msgid "Display Method" msgstr "" #. module: wiki -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: view:wiki.create.menu:0 +#: view:wiki.make.index:0 +msgid "Menu Information" msgstr "" #. module: wiki -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: field:wiki.wiki,section:0 +msgid "Section" +msgstr "" + +#. module: wiki +#: model:ir.actions.act_window,name:wiki.action_wiki_review +msgid "Pages Waiting Review" +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.wiki:0 -#: field:wiki.wiki,create_uid:0 -msgid "Author" +msgid "Page Content" +msgstr "" + +#. module: wiki +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: wiki +#: help:wiki.wiki,section:0 +msgid "Use page section code like 1.2.1" +msgstr "" + +#. module: wiki +#: view:wiki.create.menu:0 +#: view:wiki.make.index:0 +#: view:wiki.wiki.page.open:0 +msgid "Cancel" +msgstr "" + +#. module: wiki +#: model:ir.actions.act_window,name:wiki.action_history +msgid "All Page Histories" +msgstr "" + +#. module: wiki +#: view:wiki.groups:0 +msgid "Configuration" +msgstr "" + +#. module: wiki +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: wiki +#: selection:wiki.groups,method:0 +msgid "Tree" +msgstr "" + +#. module: wiki +#: field:wiki.groups,create_date:0 +msgid "Created Date" +msgstr "" + +#. module: wiki +#: help:wiki.wiki,group_id:0 +msgid "Topic, also called Wiki Group" +msgstr "" + +#. module: wiki +#: help:wiki.groups,method:0 +msgid "Define the default behaviour of the menu created on this group" +msgstr "" + +#. module: wiki +#: field:wizard.wiki.history.show_diff,file_path:0 +msgid "Diff" +msgstr "" + +#. module: wiki +#: field:wiki.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: wiki +#: view:wiki.wiki:0 +msgid "Modification Information" +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 +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +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.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.wiki:0 +#: field:wiki.wiki,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: wiki +#: model:ir.model,name:wiki.model_wiki_wiki_history +#: view:wiki.wiki.history:0 +msgid "Wiki History" +msgstr "" + +#. module: wiki +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." +msgstr "" + +#. module: wiki +#: field:wiki.groups,name:0 +#: view:wiki.wiki:0 +#: field:wiki.wiki,group_id:0 +msgid "Wiki Group" +msgstr "" + +#. module: wiki +#: code:addons/wiki/wiki.py:0 +#, python-format +msgid "There are no changes in revisions" +msgstr "" + +#. module: wiki +#: model:ir.module.module,shortdesc:wiki.module_meta_information +msgid "Document Management - Wiki" +msgstr "" + +#. module: wiki +#: view:wiki.groups:0 +msgid "Page Template" +msgstr "" + +#. module: wiki +#: field:wiki.wiki.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: wiki +#: view:wiki.groups:0 +msgid "Group Description" +msgstr "" + +#. module: wiki +#: field:wiki.groups,section:0 +msgid "Make Section ?" +msgstr "" + +#. module: wiki +#: field:wiki.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: wiki +#: field:wiki.wiki,summary:0 +#: field:wiki.wiki.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: wiki +#: code:addons/wiki/wizard/wiki_show_diff.py:0 +#, python-format +msgid "You need to select minimum 1 or maximum 2 history revision!" +msgstr "" + +#. module: wiki +#: model:ir.actions.act_window,help:wiki.action_wiki +msgid "Wiki Pages allows you to share ideas and questions with your coworkers. You can create a new document that can be link 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 +#: field:wiki.wiki.history,write_uid:0 +msgid "Modify By" +msgstr "" + +#. module: wiki +#: field:wiki.wiki,tags:0 +msgid "Keywords" +msgstr "" + +#. module: wiki +#: view:wizard.wiki.history.show_diff:0 +msgid "Close" +msgstr "" + +#. module: wiki +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: wiki +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: wiki @@ -58,27 +383,6 @@ msgstr "" 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 -#: field:wiki.groups,section:0 -msgid "Make Section ?" -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" @@ -95,133 +399,21 @@ msgstr "" 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 -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -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:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wiki.py:0 -#, python-format -msgid "There are no changes in revisions" -msgstr "" - -#. module: wiki -#: model:ir.module.module,shortdesc:wiki.module_meta_information -msgid "Document Management - Wiki" -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 -#: code:addons/wiki/wizard/wiki_show_diff.py:0 -#, 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 ? " @@ -239,112 +431,29 @@ msgstr "" msgid "Pages" msgstr "" -#. module: wiki -#: view:wiki.groups:0 -msgid "Group Description" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - #. module: wiki #: view:wiki.wiki.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -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" +#: help:wiki.wiki,toc:0 +msgid "Indicates that this pages have a table of contents or not" msgstr "" #. module: wiki @@ -358,62 +467,6 @@ msgstr "" 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:0 -#, 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:0 #: field:wiki.wiki,toc:0 @@ -421,41 +474,8 @@ msgstr "" 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 "" - diff --git a/addons/wiki_faq/i18n/wiki_faq.pot b/addons/wiki_faq/i18n/wiki_faq.pot index 48e4e05e188..50c24c8ea4a 100644 --- a/addons/wiki_faq/i18n/wiki_faq.pot +++ b/addons/wiki_faq/i18n/wiki_faq.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:07+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:07+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:21+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: wiki_faq +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: wiki_faq +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: wiki_faq #: model:ir.module.module,description:wiki_faq.module_meta_information msgid "This module provides a wiki FAQ Template\n" diff --git a/addons/wiki_quality_manual/i18n/wiki_quality_manual.pot b/addons/wiki_quality_manual/i18n/wiki_quality_manual.pot index d0fb696e2e2..88d4c3358e0 100644 --- a/addons/wiki_quality_manual/i18n/wiki_quality_manual.pot +++ b/addons/wiki_quality_manual/i18n/wiki_quality_manual.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:08+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:08+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:21+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: wiki_quality_manual +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: wiki_quality_manual +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: wiki_quality_manual #: model:ir.module.module,description:wiki_quality_manual.module_meta_information msgid "Quality Manual Template\n" diff --git a/addons/wiki_sale_faq/i18n/wiki_sale_faq.pot b/addons/wiki_sale_faq/i18n/wiki_sale_faq.pot index 26762a069df..511c1e14a8a 100644 --- a/addons/wiki_sale_faq/i18n/wiki_sale_faq.pot +++ b/addons/wiki_sale_faq/i18n/wiki_sale_faq.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-10-18 17:47:08+0000\n" -"PO-Revision-Date: 2010-10-18 17:47:08+0000\n" +"POT-Creation-Date: 2010-11-18 16:13:22+0000\n" +"PO-Revision-Date: 2010-11-18 16:13:22+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,14 +16,25 @@ msgstr "" "Plural-Forms: \n" #. module: wiki_sale_faq +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: wiki_sale_faq +#: model:ir.actions.act_window,help:wiki_sale_faq.action_wiki_test +msgid "Wiki pages allow you to share ideas and questions with co-workers. You can create a new document that can be linked to one or several applications (specifications of a project, a FAQ for sales teams, etc.). Keywords can be used to easily tag wiki pages. You should use this application with the OpenERP web client interface." +msgstr "" + +#. module: wiki_sale_faq +#: model:ir.actions.act_window,name:wiki_sale_faq.action_document_form #: model:ir.ui.menu,name:wiki_sale_faq.menu_document_files #: model:ir.ui.menu,name:wiki_sale_faq.menu_sales msgid "Documents" msgstr "" #. module: wiki_sale_faq -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: wiki_sale_faq @@ -31,6 +42,11 @@ msgstr "" msgid "Error! You can not create recursive Directories." msgstr "" +#. module: wiki_sale_faq +#: sql_constraint:ir.module.module:0 +msgid "The name of the module must be unique !" +msgstr "" + #. module: wiki_sale_faq #: model:ir.ui.menu,name:wiki_sale_faq.menu_action_wiki_wiki msgid "FAQ" @@ -48,8 +64,18 @@ msgid "This module provides a wiki FAQ Template\n" msgstr "" #. module: wiki_sale_faq -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: model:ir.actions.act_window,help:wiki_sale_faq.action_document_form +msgid "Documents gives you an access to all attached files to any record. It is a repository of all documents such as emails, project related attachments or any other documents. From this view, you can search on the content of the documents. OpenERP automatically assign meta-data based on the record like the related partner and indexes the content of .DOC, .ODT, .TXT, .SXW and .PDF documents." +msgstr "" + +#. module: wiki_sale_faq +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "" + +#. module: wiki_sale_faq +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: wiki_sale_faq @@ -57,3 +83,8 @@ msgstr "" msgid "Wiki -Sale - FAQ" msgstr "" +#. module: wiki_sale_faq +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" +msgstr "" +