[MERGE] from trunk

bzr revid: rvalyi@gmail.com-20100201130334-mgd708bztw2uxya9
This commit is contained in:
Raphaël Valyi 2010-02-01 11:03:34 -02:00
commit 48e935e6a2
125 changed files with 16531 additions and 7557 deletions

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: OpenERP
Version: 5.0.4
Version: 5.0.7
Author: Tiny.be
Author-email: fp at tiny be
Maintainer: Tiny.be

View File

@ -60,6 +60,8 @@ ad_paths.append(_ad) # for get_module_path
# Modules already loaded
loaded = []
#Modules whch raised error
not_loaded = []
class Graph(dict):
@ -318,9 +320,10 @@ def upgrade_graph(graph, cr, module_list, force=None):
mod_path = get_module_path(module)
terp_file = get_module_resource(module, '__terp__.py')
if not mod_path or not terp_file:
global not_loaded
not_loaded.append(module)
logger.notifyChannel('init', netsvc.LOG_WARNING, 'module %s: not installable' % (module))
cr.execute("update ir_module_module set state=%s where name=%s", ('uninstallable', module))
continue
raise osv.osv.except_osv('Error!',"Module '%s' was not found" % (module,))
if os.path.isfile(terp_file) or zipfile.is_zipfile(mod_path+'.zip'):
try:
@ -372,7 +375,10 @@ def init_module_objects(cr, module_name, obj_list):
logger.notifyChannel('init', netsvc.LOG_INFO, 'module %s: creating or updating database tables' % module_name)
todo = []
for obj in obj_list:
result = obj._auto_init(cr, {'module': module_name})
try:
result = obj._auto_init(cr, {'module': module_name})
except Exception, e:
raise
if result:
todo += result
if hasattr(obj, 'init'):
@ -682,7 +688,6 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs):
def load_modules(db, force_demo=False, status=None, update_module=False):
if not status:
status = {}
cr = db.cursor()
if cr:
cr.execute("SELECT relname FROM pg_class WHERE relkind='r' AND relname='ir_module_module'")
@ -707,6 +712,11 @@ def load_modules(db, force_demo=False, status=None, update_module=False):
has_updates = load_module_graph(cr, graph, status, perform_checks=(not update_module), report=report)
global not_loaded
if not_loaded:
#If some module is not loaded don't proceed further
not_loaded = []
return
if update_module:
modobj = pool.get('ir.module.module')
logger.notifyChannel('init', netsvc.LOG_INFO, 'updating modules list')
@ -744,7 +754,6 @@ def load_modules(db, force_demo=False, status=None, update_module=False):
if new_modules_in_graph == 0:
# nothing to load
break
logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Updating graph with %d more modules' % (len(module_list)))
r = load_module_graph(cr, graph, status, report=report)
has_updates = has_updates or r

View File

@ -33,6 +33,7 @@
'base_menu.xml',
'security/base_security.xml',
'res/res_security.xml',
'res/res_config.xml',
'maintenance/maintenance_security.xml'
],
'update_xml': [
@ -42,6 +43,7 @@
'ir/workflow/workflow_view.xml',
'module/module_wizard.xml',
'module/module_view.xml',
'module/module_web_view.xml',
'module/module_data.xml',
'module/module_report.xml',
'res/res_request_view.xml',

View File

@ -141,6 +141,7 @@ CREATE TABLE res_users (
active boolean default True,
login varchar(64) NOT NULL UNIQUE,
password varchar(64) default null,
email varchar(64) default null,
context_tz varchar(64) default null,
signature text,
-- action_id int references ir_act_window on delete set null,

View File

@ -1245,6 +1245,9 @@
<test expr="currency_id.code == 'eur'.upper()"/>
<test expr="name">Tiny sprl</test>
</assert>
<record id="user_admin" model="res.users">
<field name="company_id" ref="main_company"/>
</record>
</data>
</openerp>

View File

@ -2,7 +2,7 @@
<openerp>
<data>
<menuitem icon="terp-administration" id="menu_administration" name="Administration" sequence="20"/>
<menuitem id="custom_shortcuts" name="Custom Shortcuts" parent="base.menu_administration" sequence="20"/>
<menuitem id="custom_shortcuts" name="Custom Shortcuts" parent="base.menu_administration" sequence="20"/>
<menuitem id="next_id_4" name="Low Level Objects" parent="base.menu_administration" sequence="3"/>
<menuitem id="menu_low_workflow" name="Workflow Items" parent="base.next_id_4"/>
<menuitem id="menu_custom" name="Customization" parent="base.menu_administration" sequence="2"/>

View File

@ -76,13 +76,21 @@
<field eval="18" name="priority"/>
<field name="arch" type="xml">
<form string="Users">
<field name="password" password="True" readonly="0"/>
<label colspan="4" string="Please note that you will have to logout and relog if you change your password."/>
<field name="company_id" widget="selection"/>
<field name="context_lang" completion="1" readonly="0"/>
<field name="context_tz" completion="1" readonly="0" colspan="4"/>
<newline/>
<field colspan="4" name="signature" readonly="0"/>
<notebook colspan="4">
<page string="Current Activity">
<field name="company_id" widget="selection" readonly="0" domain="[('user_ids','=',uid)]"/>
<newline/>
<separator colspan="4" string="Preferences"/>
</page>
<page string="Preferences">
<field name="password" password="True" readonly="0"/>
<label colspan="4" string="Please note that you will have to logout and relog if you change your password."/>
<field name="context_lang" completion="1" readonly="0"/>
<field name="context_tz" completion="1" readonly="0" colspan="4"/>
<newline/>
<field colspan="4" name="signature" readonly="0"/>
</page>
</notebook>
</form>
</field>
</record>
@ -198,48 +206,50 @@
</record>
<record id="view_users_configuration_form" model="ir.ui.view">
<field name="name">res.users.confirm.form</field>
<field name="model">res.users</field>
<field name="name">res.config.users.confirm.form</field>
<field name="model">res.config.users</field>
<field name="type">form</field>
<field name="inherit_id" ref="res_config_view_base"/>
<field name="arch" type="xml">
<form string="Configure User">
<separator string="Define New Users" colspan="4"/>
<field name="name" select="1"/>
<field name="active" select="1"/>
<field name="login" select="1"/>
<field name="password" password="True"/>
<notebook colspan="4">
<page string="User">
<field name="address_id"/>
<field name="company_id" required="1"/>
<field name="action_id" required="True"/>
<field domain="[('usage','=','menu')]" name="menu_id" required="True"/>
<field name="context_lang"/>
<field name="context_tz"/>
<field colspan="4" name="signature"/>
</page>
<page string="Groups">
<label string="Groups are used to defined access rights on each screen and menu." align="0.0" colspan="4"/>
<field colspan="4" nolabel="1" name="groups_id"/>
</page>
<page string="Roles">
<label string="Roles are used to defined available actions, provided by workflows." align="0.0" colspan="4"/>
<field colspan="4" nolabel="1" name="roles_id"/>
</page>
</notebook>
<label string="" colspan="2"/>
<group col="2" colspan="2">
<button icon='gtk-cancel' special="cancel" name="action_next" type='object' string='Skip'/>
<button name='action_new' icon='gtk-ok' type='object' string='Add User'/>
</group>
<data>
<form position="attributes">
<attribute name="string">Create User</attribute>
</form>
<group string="res_config_contents" position="replace">
<separator string="New User" colspan="4"/>
<field name="name"/>
<field name="email"/>
<field name="login"/>
<field name="password" password="True"/>
<field name="context_lang"/>
<field name="context_tz"/>
<separator string="Group" colspan="4"/>
<label align="0.0" colspan="4" string="
Groups are used to define access rights on objects and
the visibility of screens and menus"/>
<field colspan="4" nolabel="1" name="groups_id"/>
</group>
<xpath expr='//button[@name="action_skip"]'
position='attributes'>
<attribute name='string'>Next</attribute>
<attribute name='icon'>gtk-go-forward</attribute>
</xpath>
<xpath expr='//button[@name="action_next"]'
position='attributes'>
<attribute name='string'>Add User</attribute>
<attribute name='icon'>gtk-add</attribute>
</xpath>
</data>
</field>
</record>
<record id="action_config_user_form" model="ir.actions.act_window">
<field name="name">Configure User</field>
<field name="name">Create Users</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">res.users</field>
<field name="res_model">res.config.users</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="view_id" ref="view_users_configuration_form"/>
@ -250,26 +260,43 @@
<field name="name">res.users.confirm.simple_view</field>
<field name="model">res.config.view</field>
<field name="type">form</field>
<field name="inherit_id" ref="res_config_view_base"/>
<field name="arch" type="xml">
<form string="Configure simple view">
<separator string="Choose Your Mode" colspan="4"/>
<field colspan="2" name="view"/>
<label string="Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." colspan="4" align="0.0"/>
<newline/>
<separator string="" colspan="4"/>
<label string="" colspan="2"/>
<group colspan="2" col="1">
<button icon="gtk-ok" name="action_set" string="Set" type="object"/>
</group>
<data>
<form position="attributes">
<attribute name="string">Select your Interface</attribute>
</form>
<group string="res_config_contents" position="replace">
<label colspan="4" align="0.0" string='
Choose between the simplified interface and the extended
one.'/>
<newline/>
<label colspan="4" align="0.0" string='
If you are testing OpenERP or using it for the first time,
we suggest you use the simplified interface. It has less
options and fields but is easier to understand.'/>
<newline/>
<label colspan="4" align="0.0" string='
You will be able to switch to the extended interface later.
'/>
<separator string="Choose Your Interface" colspan="4"/>
<field colspan="2" name="view" nolabel="1"/>
</group>
<xpath expr='//button[@name="action_skip"]' position='replace'/>
<xpath expr='//button[@name="action_next"]' position='attributes'>
<attribute name='string'>Set</attribute>
</xpath>
</data>
</field>
</record>
<record id="action_config_simple_view_form" model="ir.actions.act_window">
<field name="name">Configure Simple View</field>
<field name="name">Select Your Interface</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">res.config.view</field>
<field name="view_type">form</field>
<field name="view_id" ref="view_confirm_simple_view_form"/>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
@ -281,21 +308,11 @@
</data>
<data noupdate="1">
<record id="config_wizard_step_user" model="ir.actions.todo">
<field name="name">Create User</field>
<field name="note">Create your users.
You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.
</field>
<field name="action_id" ref="action_config_user_form"/>
<field name="sequence">10</field>
</record>
<record id="config_wizard_simple_view" model="ir.actions.todo">
<field name="name">Select Your Interface</field>
<field name="note">Choose between the "Simplified Interface" or the extended one.
If you are testing or using OpenERP for the first time, we suggest you to use
the simplified interface, which has less options and fields but is easier to
understand. You will be able to switch to the extended view later.
</field>
<field name="action_id" ref="action_config_simple_view_form"/>
<field name="sequence">5</field>
</record>

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-30 07:54+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 04:59+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "كولومبيا"
@ -729,6 +724,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,13 +1126,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1346,6 +1335,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1566,6 +1560,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1622,11 +1622,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1829,11 +1824,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1951,6 +1941,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2317,11 +2313,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2431,11 +2422,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3034,6 +3020,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3101,7 +3088,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3627,8 +3613,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3889,6 +3873,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3899,11 +3884,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4289,11 +4269,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4407,6 +4382,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4526,13 +4506,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4667,11 +4640,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4911,6 +4879,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5341,9 +5310,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5638,8 +5608,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5901,6 +5869,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5981,6 +5954,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6000,7 +5978,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6066,6 +6043,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6084,7 +6066,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6793,6 +6774,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7010,11 +7002,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7137,11 +7124,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7234,12 +7216,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7313,6 +7289,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7569,6 +7550,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7713,6 +7699,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.6\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13:57+0000\n"
"PO-Revision-Date: 2009-12-10 07:54+0000\n"
"POT-Creation-Date: 2009-12-18 08:39:22+0000\n"
"PO-Revision-Date: 2009-12-18 08:39:22+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -189,11 +189,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -393,7 +388,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -718,6 +713,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -966,21 +967,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1077,6 +1064,11 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1112,13 +1104,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1317,6 +1304,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1529,6 +1521,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1585,11 +1583,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1792,11 +1785,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1912,6 +1900,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2275,11 +2269,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2384,11 +2373,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`"
@ -2974,6 +2958,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3039,7 +3024,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3560,8 +3544,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3820,6 +3802,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3830,11 +3813,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4218,11 +4196,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4333,6 +4306,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4450,13 +4428,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4589,11 +4560,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4831,6 +4797,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5256,9 +5223,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5551,8 +5519,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5809,6 +5775,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5889,6 +5860,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -5908,7 +5884,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -5973,6 +5948,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -5991,7 +5971,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6688,6 +6667,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -6902,11 +6892,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7029,11 +7014,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7122,12 +7102,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7199,6 +7173,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7455,6 +7434,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7592,6 +7576,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,20 +6,20 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-16 06:37+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-30 05:37+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-17 04:43+0000\n"
"X-Launchpad-Export-Date: 2010-01-31 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
#: model:res.country,name:base.sh
msgid "Saint Helena"
msgstr "Света Елена"
msgstr "Св. Елена"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
@ -199,11 +199,6 @@ msgstr "На множество документи."
msgid "Number of Modules"
msgstr "Брой на модулите"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -233,13 +228,13 @@ msgstr "STOCK_DELETE"
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "Password mismatch !"
msgstr ""
msgstr "Паролата не съвпада !"
#. module: base
#: code:addons/base/module/module.py:0
#, python-format
msgid "This url '%s' must provide an html file with links to zip modules"
msgstr ""
msgstr "Този url '%s' трябва да съдържа html файл със връзки към zip модули."
#. module: base
#: selection:res.request,state:0
@ -254,7 +249,7 @@ msgstr ""
#. module: base
#: view:res.lang:0
msgid "%y - Year without century as a decimal number [00,99]."
msgstr ""
msgstr "%y - Година без век, като десетично число [00,99]."
#. module: base
#: selection:ir.ui.menu,icon:0
@ -413,7 +408,7 @@ msgid "Country Name"
msgstr "Име на държавата"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -741,6 +736,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -995,22 +996,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1109,6 +1095,14 @@ msgstr "Дни"
msgid "Fixed Width"
msgstr "Фиксирана ширина"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1144,14 +1138,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Партньори"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1358,6 +1347,11 @@ msgstr "Брой обновени модули"
msgid "Groups"
msgstr "Групи"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1582,6 +1576,12 @@ msgstr "Стойности"
msgid "Field Mappings"
msgstr "Свързване на полета"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1638,11 +1638,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1845,11 +1840,6 @@ msgstr "Контрол на достъпа"
msgid "Dependencies"
msgstr "Зависимости"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Основна фирма"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1967,6 +1957,12 @@ msgstr ""
msgid "Module"
msgstr "Модул"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2333,11 +2329,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2449,11 +2440,6 @@ msgstr "Домейн"
msgid "Summary"
msgstr "Обобщение"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3057,6 +3043,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Поле"
@ -3126,7 +3113,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3652,8 +3638,6 @@ msgid "Signal (button Name)"
msgstr "Сигнал (Име на бутон)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3914,6 +3898,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3924,11 +3909,6 @@ msgstr "Контакти"
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4316,11 +4296,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4434,6 +4409,11 @@ msgstr ""
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4555,13 +4535,6 @@ msgstr ""
msgid "iCal id"
msgstr "iCal идентификатор"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Функции на партньора"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4696,11 +4669,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4942,6 +4910,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Компании"
@ -5373,10 +5342,11 @@ msgid "Active Partner Events"
msgstr "Активни събития на партньора"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Правила на записа"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5670,8 +5640,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5933,6 +5901,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6013,6 +5986,11 @@ msgstr "Стойност според контекста"
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6032,7 +6010,6 @@ msgstr "Месец: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6098,6 +6075,11 @@ msgstr "Отпратка към таблица"
msgid "Parent"
msgstr "Родител"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6116,7 +6098,6 @@ msgstr "Родител"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6825,6 +6806,17 @@ msgstr ""
msgid "Landscape"
msgstr "Хоризонтално"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Партньори"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7042,11 +7034,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7169,11 +7156,6 @@ msgstr "Разширено търсене"
msgid "Bank Accounts"
msgstr "Банкови сметки"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7266,12 +7248,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7345,6 +7321,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Права за изтриване"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7603,6 +7584,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7747,6 +7733,12 @@ msgstr "Последна версия"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Правила на записа"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -7990,11 +7982,14 @@ msgstr ""
#~ msgid "Others Partners"
#~ msgstr "Други партньори"
#~ msgid "Main Company"
#~ msgstr "Основна фирма"
#~ msgid "Partner Functions"
#~ msgstr "Функции на партньора"
#~ msgid "Customers Partners"
#~ msgstr "Партньори на клиента"
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Suppliers Partners"
#~ msgstr "Партньори на доставчика"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-24 19:03+0000\n"
"Last-Translator: mra (Open ERP) <mra@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 04:59+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr "Na višestruke dok."
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr "Naziv zemlje"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -731,6 +726,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -985,22 +986,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1099,6 +1085,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1134,13 +1128,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1348,6 +1337,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1570,6 +1564,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1626,11 +1626,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1833,11 +1828,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1955,6 +1945,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2321,11 +2317,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2435,11 +2426,6 @@ msgstr ""
msgid "Summary"
msgstr "Sažetak"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3038,6 +3024,7 @@ msgstr "Ugovor o održavanju je dodat !"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3105,7 +3092,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3631,8 +3617,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3893,6 +3877,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3903,11 +3888,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4295,11 +4275,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4413,6 +4388,11 @@ msgstr ""
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4534,13 +4514,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4675,11 +4648,6 @@ msgstr "_Zatvori"
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4919,6 +4887,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5350,9 +5319,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5647,8 +5617,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5910,6 +5878,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5990,6 +5963,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6009,7 +5987,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6075,6 +6052,11 @@ msgstr ""
msgid "Parent"
msgstr "Roditelj"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6093,7 +6075,6 @@ msgstr "Roditelj"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6802,6 +6783,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7019,11 +7011,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7146,11 +7133,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7243,12 +7225,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7322,6 +7298,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7578,6 +7559,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7722,6 +7708,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-14 06:10+0000\n"
"Last-Translator: Jordi Esteve - http://www.zikzakmedia.com "
"<jesteve@zikzakmedia.com>\n"
@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 04:59+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -200,11 +200,6 @@ msgstr "En múltiples doc."
msgid "Number of Modules"
msgstr "Número de mòduls"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr "Companyia on es guardarà el registre actual."
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -418,7 +413,7 @@ msgid "Country Name"
msgstr "Nom de país"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colòmbia"
@ -747,6 +742,12 @@ msgstr "Illes Caiman"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1007,22 +1008,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1123,6 +1109,14 @@ msgstr "Dies"
msgid "Fixed Width"
msgstr "Ample fix"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1158,14 +1152,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Empreses"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1382,6 +1371,11 @@ msgstr "Número de mòduls actualitzats"
msgid "Groups"
msgstr "Grups"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1611,6 +1605,12 @@ msgstr "Valors"
msgid "Field Mappings"
msgstr "Mapa de camps"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1667,11 +1667,6 @@ msgstr "%p - Equivalent a AM o PM."
msgid "Iteration Actions"
msgstr "Accions iteració"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "Companyia en la que pertany l'usuari."
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1874,11 +1869,6 @@ msgstr "Controls d'accés"
msgid "Dependencies"
msgstr "Dependències"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Empresa principal"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1998,6 +1988,12 @@ msgstr "Mapa de camps."
msgid "Module"
msgstr "Mòdul"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2370,11 +2366,6 @@ msgstr "Certificat de qualitat"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr "Una expressió, ha de ser certa per concordar."
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2490,11 +2481,6 @@ msgstr "Domini"
msgid "Summary"
msgstr "Resum"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Expressió"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3108,6 +3094,7 @@ msgstr "Contracte de manteniment afegit!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Camp"
@ -3177,7 +3164,6 @@ msgstr "Kazakhstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3710,8 +3696,6 @@ msgid "Signal (button Name)"
msgstr "Senyal (nom del botó)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3976,6 +3960,7 @@ msgid "On Multiple Doc."
msgstr "En múltiples doc."
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3986,11 +3971,6 @@ msgstr "Contactes"
msgid "Faroe Islands"
msgstr "Illes Fèroe"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "L'objecte afectat per aquestes regles."
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4380,11 +4360,6 @@ msgstr "Camp de l'objecte"
msgid "French (CH) / Français (CH)"
msgstr "Francès (CH) / Français (CH)"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Llista de companyies"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4501,6 +4476,11 @@ msgstr "Nigèria"
msgid "res.partner.event"
msgstr "res.empresa.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4624,13 +4604,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "ID iCal"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Funcions empresa"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4767,11 +4740,6 @@ msgstr "Tan_ca"
msgid "Full"
msgstr "Complet"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Companyia per defecte"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5013,6 +4981,7 @@ msgstr "Gàmbia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Empreses"
@ -5451,10 +5420,11 @@ msgid "Active Partner Events"
msgstr "Esdeveniments d'empreses actives"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Regles de registres"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5750,8 +5720,6 @@ msgid "Martinique (French)"
msgstr "Martinica (França)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6020,6 +5988,11 @@ msgstr "Obre informe"
msgid "Rounding factor"
msgstr "Factor arrodoniment"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6100,6 +6073,11 @@ msgstr "Valor del context"
msgid "Hour 00->24: %(h24)s"
msgstr "Hora 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6119,7 +6097,6 @@ msgstr "Mes: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6187,6 +6164,11 @@ msgstr "Ref. taula"
msgid "Parent"
msgstr "Pare"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6205,7 +6187,6 @@ msgstr "Pare"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6927,6 +6908,17 @@ msgstr "ID de l'objecte"
msgid "Landscape"
msgstr "Horitzontal"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Empreses"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7147,11 +7139,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "El segon camp han de ser xifres"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Doneu-li un nom per trobar fàcilment un registre."
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7274,11 +7261,6 @@ msgstr "Cerca avançada"
msgid "Bank Accounts"
msgstr "Comptes bancaris"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Multi companyia per defecte"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7376,12 +7358,6 @@ msgstr "Acció en múltiples doc."
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Títols"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7459,6 +7435,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Permís per eliminar"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7716,6 +7697,11 @@ msgstr "Illes Wallis i Futuna"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "El CIF/NIF no sembla ser correcte."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7867,6 +7853,12 @@ msgstr "Última versió"
msgid "ir.actions.server"
msgstr "ir.accions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Regles de registres"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8119,29 +8111,32 @@ msgstr "Rus / русский язык"
#~ msgid "Others Partners"
#~ msgstr "Altres empreses"
#~ msgid "Main Company"
#~ msgstr "Empresa principal"
#~ msgid "Grant Access To Menus"
#~ msgstr "Autoritza accés a menús"
#~ msgid "Macedonia"
#~ msgstr "Macedònia"
#~ msgid "Partner Functions"
#~ msgstr "Funcions empresa"
#~ msgid "Customers Partners"
#~ msgstr "Clients"
#~ msgid "File Content"
#~ msgstr "Contingut del fitxer"
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Html from html"
#~ msgstr "Html des de html"
#~ msgid "Suppliers Partners"
#~ msgstr "Proveïdors"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "El CIF/NIF no sembla ser correcte."
#~ msgid "Titles"
#~ msgstr "Títols"
#, python-format
#~ msgid "The unlink method is not implemented on this object !"
@ -8247,3 +8242,30 @@ msgstr "Rus / русский язык"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "El mètode search (cercar) no està implementat en aquest objecte!"
#~ msgid "Company to store the current record"
#~ msgstr "Companyia on es guardarà el registre actual."
#~ msgid "Expression"
#~ msgstr "Expressió"
#~ msgid "Expression, must be True to match"
#~ msgstr "Una expressió, ha de ser certa per concordar."
#~ msgid "List of Company"
#~ msgstr "Llista de companyies"
#~ msgid "Default Company"
#~ msgstr "Companyia per defecte"
#~ msgid "Name it to easily find a record"
#~ msgstr "Doneu-li un nom per trobar fàcilment un registre."
#~ msgid "Default multi company"
#~ msgstr "Multi companyia per defecte"
#~ msgid "Company where the user is connected"
#~ msgstr "Companyia en la que pertany l'usuari."
#~ msgid "Object affect by this rules"
#~ msgstr "L'objecte afectat per aquestes regles."

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-15 06:32+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-04 06:02+0000\n"
"Last-Translator: Kuvaly [LCT] <kuvaly@seznam.cz>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:00+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr "Více dokumentů"
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr "Název země"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbie"
@ -729,6 +724,12 @@ msgstr "Kajmanské ostrovy"
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr "STOCK_KOPÍROVAT"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr "Dnů"
msgid "Fixed Width"
msgstr "Opravená šířka(Fixed width)"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,14 +1126,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneři"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1346,6 +1335,11 @@ msgstr "Počet aktualizovaných modulů"
msgid "Groups"
msgstr "Skupiny"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr "Správa přístupových práv"
msgid "Dependencies"
msgstr "Závislosti(Dependencies)"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Hlavní společnost"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr "Modul"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr "Shrnutí(Summary)"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3037,6 +3023,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3104,7 +3091,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3630,8 +3616,6 @@ msgid "Signal (button Name)"
msgstr "Signál(název tlačítka)Signal (button Name"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3892,20 +3876,16 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
msgstr "Kotakty"
msgstr "Kontakty"
#. module: base
#: model:res.country,name:base.fo
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
msgstr "Farské ostrovy"
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
@ -4292,11 +4272,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4410,6 +4385,11 @@ msgstr ""
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4529,13 +4509,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4670,11 +4643,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4914,6 +4882,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5344,9 +5313,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5641,8 +5611,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5904,6 +5872,11 @@ msgstr ""
msgid "Rounding factor"
msgstr "Faktor zaokrouhlení"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5984,6 +5957,11 @@ msgstr "Souvislá hodnota(Context Value)"
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6003,7 +5981,6 @@ msgstr "Měsíc: %(měsíc/e)"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6069,6 +6046,11 @@ msgstr "Table Ref.(Table Ref.)"
msgid "Parent"
msgstr "Nadřízený"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6087,7 +6069,6 @@ msgstr "Nadřízený"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6796,6 +6777,17 @@ msgstr ""
msgid "Landscape"
msgstr "Orientace stránky naležato(Landscape)"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneři"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7013,11 +7005,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7140,11 +7127,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7237,12 +7219,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7316,6 +7292,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Smazat právo"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7572,6 +7553,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7716,6 +7702,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -7956,5 +7948,5 @@ msgstr ""
msgid "Russian / русский язык"
msgstr "Rusko / русский язык"
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Main Company"
#~ msgstr "Hlavní společnost"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-30 07:47+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:00+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -404,7 +399,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -730,6 +725,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -984,22 +985,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1098,6 +1084,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1133,13 +1127,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1336,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:37+0000\n"
"Last-Translator: Ferdinand-chricar <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:00+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -200,11 +200,6 @@ msgstr "On multiple doc."
msgid "Number of Modules"
msgstr "Anzahl der Module"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr "Module: base"
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -416,7 +411,7 @@ msgid "Country Name"
msgstr "Land"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbien"
@ -745,6 +740,12 @@ msgstr "Cayman Inseln"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1005,22 +1006,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1122,6 +1108,14 @@ msgstr "Tage"
msgid "Fixed Width"
msgstr "Feste Breite"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1157,14 +1151,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partner"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1383,6 +1372,11 @@ msgstr "Anzahl Module mit Updates"
msgid "Groups"
msgstr "Gruppen"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1615,6 +1609,12 @@ msgstr "Menüeinträge"
msgid "Field Mappings"
msgstr "Felder Zuordnungen"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1671,11 +1671,6 @@ msgstr "%p - Equivalent zu AM oder PM."
msgid "Iteration Actions"
msgstr "Iteration"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "Die mit dem Benutzer verbundene Gesellschaft"
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1878,11 +1873,6 @@ msgstr "Zugriffskontolle"
msgid "Dependencies"
msgstr "Abhängigkeiten"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Hauptfirma"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -2002,6 +1992,12 @@ msgstr "Feld Zuordnung"
msgid "Module"
msgstr "Module"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2372,11 +2368,6 @@ msgstr "Qualitätszertifikat"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr "Ausdruck, muss wahr sein um zu stimmen."
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2492,11 +2483,6 @@ msgstr "Domain"
msgid "Summary"
msgstr "Zusammenfassung"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Ausdruck"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3110,6 +3096,7 @@ msgstr "Wartungsvertrag Hinzugefügt!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Feld"
@ -3177,7 +3164,6 @@ msgstr "Kasachstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3711,8 +3697,6 @@ msgid "Signal (button Name)"
msgstr "Button Bezeichnung"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3977,6 +3961,7 @@ msgid "On Multiple Doc."
msgstr "Für mehrfache Dokumente"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3987,11 +3972,6 @@ msgstr "Partner Kontakte"
msgid "Faroe Islands"
msgstr "Färöer Inseln"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "Von dieser Regel betroffenes Objekt"
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4380,11 +4360,6 @@ msgstr "Objektfeld"
msgid "French (CH) / Français (CH)"
msgstr "Französisch (CH) / Français (CH)"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Liste der Mandanten"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4503,6 +4478,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4627,13 +4607,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "iCal id"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Partner Funktionen"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4770,11 +4743,6 @@ msgstr "_Close"
msgid "Full"
msgstr "Vollst."
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Standard Mandant"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5016,6 +4984,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Betriebe"
@ -5452,10 +5421,11 @@ msgid "Active Partner Events"
msgstr "Partner Ereignisse"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Schreib- / Leserechte"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5752,8 +5722,6 @@ msgid "Martinique (French)"
msgstr "Martinique (franz.)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6022,6 +5990,11 @@ msgstr "Öffne Report"
msgid "Rounding factor"
msgstr "Faktor Rundung"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6102,6 +6075,11 @@ msgstr "Wert aus Kontext"
msgid "Hour 00->24: %(h24)s"
msgstr "Stunde 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6121,7 +6099,6 @@ msgstr "Monat: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6189,6 +6166,11 @@ msgstr "Table Ref."
msgid "Parent"
msgstr "(Ober-) Konto"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6207,7 +6189,6 @@ msgstr "(Ober-) Konto"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6930,6 +6911,17 @@ msgstr "Objekt Kurzb."
msgid "Landscape"
msgstr "Querformat"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partner"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7149,11 +7141,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Zweites Feld sollte eine Zahl beinhalten"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Der Datensatz kann über das NAme Feld leicht gefunden werden"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7276,11 +7263,6 @@ msgstr "Erweiterte Suche"
msgid "Bank Accounts"
msgstr "Bankkonten"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Standard Multi Mandant"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7377,12 +7359,6 @@ msgstr "Aktion für mehrfache Dokumente"
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Partner Titel"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7461,6 +7437,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Lösche Rechte"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7719,6 +7700,11 @@ msgstr "Wallis- und Futuna-Inseln"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "Die USt. scheint falsch zu sein."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7871,6 +7857,12 @@ msgstr "Letzte Version"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Schreib- / Leserechte"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8123,26 +8115,29 @@ msgstr "Russian / русский язык"
#~ msgid "Others Partners"
#~ msgstr "Andere Partner"
#~ msgid "Main Company"
#~ msgstr "Hauptfirma"
#~ msgid "Grant Access To Menus"
#~ msgstr "Definiere Menüzugriff"
#~ msgid "Macedonia"
#~ msgstr "Mazedonien"
#~ msgid "Partner Functions"
#~ msgstr "Partner Funktionen"
#~ msgid "Customers Partners"
#~ msgstr "Kunden Partner"
#~ msgid "File Content"
#~ msgstr "Dateiinhalt"
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Suppliers Partners"
#~ msgstr "Lieferanten Partner"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "Die USt. scheint falsch zu sein."
#~ msgid "Titles"
#~ msgstr "Partner Titel"
#, python-format
#~ msgid ""
@ -8163,3 +8158,30 @@ msgstr "Russian / русский язык"
#, python-format
#~ msgid "You cannot perform this operation."
#~ msgstr "Dieser Vorgang kann nicht durchgeführt werden."
#~ msgid "Company to store the current record"
#~ msgstr "Module: base"
#~ msgid "Company where the user is connected"
#~ msgstr "Die mit dem Benutzer verbundene Gesellschaft"
#~ msgid "Expression, must be True to match"
#~ msgstr "Ausdruck, muss wahr sein um zu stimmen."
#~ msgid "Expression"
#~ msgstr "Ausdruck"
#~ msgid "Object affect by this rules"
#~ msgstr "Von dieser Regel betroffenes Objekt"
#~ msgid "List of Company"
#~ msgstr "Liste der Mandanten"
#~ msgid "Default Company"
#~ msgstr "Standard Mandant"
#~ msgid "Name it to easily find a record"
#~ msgstr "Der Datensatz kann über das NAme Feld leicht gefunden werden"
#~ msgid "Default multi company"
#~ msgstr "Standard Multi Mandant"

View File

@ -5,14 +5,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-16 06:38+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: nls@hellug.gr <nls@hellug.gr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-17 04:43+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"X-Poedit-Country: GREECE\n"
"X-Poedit-Language: Greek\n"
@ -202,11 +202,6 @@ msgstr "Σε πολλαπλά έγγραφα."
msgid "Number of Modules"
msgstr "Αριθμός Αρθρωμάτων"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr "Εταιρεία για αποθήκευση της τρέχουσας εγγραφής"
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -420,7 +415,7 @@ msgid "Country Name"
msgstr "Όνομα Χώρας"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colombia"
@ -750,6 +745,12 @@ msgstr "Cayman Islands"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1010,22 +1011,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1127,6 +1113,14 @@ msgstr "Ημέρες"
msgid "Fixed Width"
msgstr "Προεπιλεγμένο Πλάτος"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1162,14 +1156,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Συνεργάτες"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1385,6 +1374,11 @@ msgstr "Αριθμός Αρθρωμάτων που ενημερώθηκαν"
msgid "Groups"
msgstr "Ομάδες"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1613,6 +1607,12 @@ msgstr "Τιμές"
msgid "Field Mappings"
msgstr "Field Mappings"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1669,11 +1669,6 @@ msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ."
msgid "Iteration Actions"
msgstr "Επαναληπτικές ενέργειες"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "Η εταιρεία στην οπία έχει συνδεθεί ο χρήστης"
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1878,11 +1873,6 @@ msgstr "Ρυθμίσεις Πρόσβασης"
msgid "Dependencies"
msgstr "Dependencies"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Κύρια Εταρεία"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -2002,6 +1992,12 @@ msgstr "Field Mappings."
msgid "Module"
msgstr "Άρθρωμα"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2374,11 +2370,6 @@ msgstr "Πιστοποιητικό Ποιότητας"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr "Έκφραση, πρέπει να είναι Αληθές για ισότητα"
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2494,11 +2485,6 @@ msgstr "Τομέας"
msgid "Summary"
msgstr "Περίληψη"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Έκφραση"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3117,6 +3103,7 @@ msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Πεδίο"
@ -3185,7 +3172,6 @@ msgstr "Kazakhstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3718,8 +3704,6 @@ msgid "Signal (button Name)"
msgstr "Σινιάλο (όνομα πλήκτρου)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3986,6 +3970,7 @@ msgid "On Multiple Doc."
msgstr "On Multiple Doc."
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3996,11 +3981,6 @@ msgstr "Στοιχεία"
msgid "Faroe Islands"
msgstr "Faroe Islands"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "Αντικείμενο που επηρεάζεται από αυτούς τους κανόνες"
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4390,11 +4370,6 @@ msgstr "Πεδίο Αντικειμένου"
msgid "French (CH) / Français (CH)"
msgstr "Γαλλικά (CH) / Français (CH)"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Λίστα εταιρείας"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4511,6 +4486,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4633,13 +4613,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "iCal id"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Λειτουργίες Συνεργατών"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4776,11 +4749,6 @@ msgstr "_Close"
msgid "Full"
msgstr "Πλήρες"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Προκαθορισμένη εταορεία"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5022,6 +4990,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Εταιρείες"
@ -5459,10 +5428,11 @@ msgid "Active Partner Events"
msgstr "Ενεργά Συμβάντα Συνεργάτη"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5759,8 +5729,6 @@ msgid "Martinique (French)"
msgstr "Martinique (French)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6030,6 +5998,11 @@ msgstr "Ανοικτή Αναφορά"
msgid "Rounding factor"
msgstr "Παράγοντας στρογγυλοποίησης"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6110,6 +6083,11 @@ msgstr "Context Value"
msgid "Hour 00->24: %(h24)s"
msgstr "Ώρα 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6129,7 +6107,6 @@ msgstr "Μήνας: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6197,6 +6174,11 @@ msgstr "Table Ref."
msgid "Parent"
msgstr "Ανήκει"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6215,7 +6197,6 @@ msgstr "Ανήκει"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6940,6 +6921,17 @@ msgstr "ID Αντικειμένου"
msgid "Landscape"
msgstr "Τοπίο"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Συνεργάτες"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7160,11 +7152,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Ονομάστε την εγγραφή για εύκολη αναζήτηση"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7287,11 +7274,6 @@ msgstr "Προχωρημένη Αναζήτηση"
msgid "Bank Accounts"
msgstr "Τραπεζικοί Λογαριασμοί"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Προκαθορισμένη πολλαπλή εταιρεία"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7389,12 +7371,6 @@ msgstr "Ενέργεια σε Πολλαπλά Έγγραφα"
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Τίτλοι"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7471,6 +7447,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Διαγραφή Πρόσβασης"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7727,6 +7708,11 @@ msgstr "Wallis and Futuna Islands"
msgid "Rwanda"
msgstr "Rwanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "Ο ΦΠΑ δε φαίνεται σωστός"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7878,6 +7864,12 @@ msgstr "Τελευταία έκδοση"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Record Rules"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8161,6 +8153,9 @@ msgstr "Ρώσσικα / русский язык"
#~ msgid "HR sector"
#~ msgstr "Τμήμα Ανθρωπίνων Πόρων"
#~ msgid "Main Company"
#~ msgstr "Κύρια Εταρεία"
#, python-format
#~ msgid "Please check that all your lines have %d columns."
#~ msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες."
@ -8235,6 +8230,9 @@ msgstr "Ρώσσικα / русский язык"
#~ msgid "The copy method is not implemented on this object !"
#~ msgstr "The copy method is not implemented on this object !"
#~ msgid "Partner Functions"
#~ msgstr "Λειτουργίες Συνεργατών"
#, python-format
#~ msgid "You cannot perform this operation."
#~ msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία."
@ -8268,9 +8266,6 @@ msgstr "Ρώσσικα / русский язык"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους."
#~ msgid "res.company"
#~ msgstr "res.company"
#, python-format
#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection"
#~ msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!"
@ -8289,13 +8284,13 @@ msgstr "Ρώσσικα / русский язык"
#~ msgid "Bad query."
#~ msgstr "Bad query."
#~ msgid "Titles"
#~ msgstr "Τίτλοι"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "Ο ΦΠΑ δε φαίνεται σωστός"
#~ msgid "IT sector"
#~ msgstr "IT sector"
@ -8321,3 +8316,30 @@ msgstr "Ρώσσικα / русский язык"
#~ msgid "Make the rule global, otherwise it needs to be put on a group or user"
#~ msgstr "Θέστε τον κανόνα ως γενικό αλλιώς ορίστε τον σε μια ομάδα ή χρήστη"
#~ msgid "Company to store the current record"
#~ msgstr "Εταιρεία για αποθήκευση της τρέχουσας εγγραφής"
#~ msgid "Expression"
#~ msgstr "Έκφραση"
#~ msgid "Expression, must be True to match"
#~ msgstr "Έκφραση, πρέπει να είναι Αληθές για ισότητα"
#~ msgid "Company where the user is connected"
#~ msgstr "Η εταιρεία στην οπία έχει συνδεθεί ο χρήστης"
#~ msgid "List of Company"
#~ msgstr "Λίστα εταιρείας"
#~ msgid "Default Company"
#~ msgstr "Προκαθορισμένη εταορεία"
#~ msgid "Name it to easily find a record"
#~ msgstr "Ονομάστε την εγγραφή για εύκολη αναζήτηση"
#~ msgid "Default multi company"
#~ msgstr "Προκαθορισμένη πολλαπλή εταιρεία"
#~ msgid "Object affect by this rules"
#~ msgstr "Αντικείμενο που επηρεάζεται από αυτούς τους κανόνες"

View File

@ -6,15 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-11 05:59+0000\n"
"Last-Translator: Jordi Esteve - http://www.zikzakmedia.com "
"<jesteve@zikzakmedia.com>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-15 05:22+0000\n"
"Last-Translator: Paco Molinero <paco@byasl.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:02+0000\n"
"X-Launchpad-Export-Date: 2010-01-16 04:35+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -200,11 +199,6 @@ msgstr "En múltiples doc."
msgid "Number of Modules"
msgstr "Número de módulos"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr "Compañía donde se guardará el registro actual."
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -419,7 +413,7 @@ msgid "Country Name"
msgstr "Nombre de país"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colombia"
@ -749,6 +743,12 @@ msgstr "Islas Caimán"
msgid "Iran"
msgstr "Irán"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr "Mis solicitudes"
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1010,23 +1010,8 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgstr ""
msgid "Model %s Does not Exist !"
msgstr "El modelo %s no existe"
#. module: base
#: code:addons/base/module/module.py:0
@ -1126,6 +1111,14 @@ msgstr "Días"
msgid "Fixed Width"
msgstr "Ancho fijo"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1161,14 +1154,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Empresas"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr "La compañía en la que este usuario está actualmente trabajando."
#. module: base
#: help:ir.actions.server,message:0
@ -1385,6 +1373,11 @@ msgstr "Número de módulos actualizados"
msgid "Groups"
msgstr "Grupos"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr "Este usuario no puede conectar usando esta compañía."
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1614,6 +1607,12 @@ msgstr "Valores"
msgid "Field Mappings"
msgstr "Mapeado de campos"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr "Mis solicitudes cerradas"
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1670,11 +1669,6 @@ msgstr "%p - Equivalente a AM o PM."
msgid "Iteration Actions"
msgstr "Acciones iteración"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "Compañía en la que pertenece el usuario."
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1877,11 +1871,6 @@ msgstr "Controles de acceso"
msgid "Dependencies"
msgstr "Dependencias"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Empresa principal"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -2001,6 +1990,12 @@ msgstr "Mapeo de campos."
msgid "Module"
msgstr "Módulo"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2373,11 +2368,6 @@ msgstr "Certificado de cualidad"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr "Una expresión, debe ser cierta para concordar."
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2493,11 +2483,6 @@ msgstr "Dominio"
msgid "Summary"
msgstr "Resumen"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Expresión"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3112,6 +3097,7 @@ msgstr "¡Contrato de mantenimiento añadido!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Campo"
@ -3180,7 +3166,6 @@ msgstr "Kazajstán"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3714,8 +3699,6 @@ msgid "Signal (button Name)"
msgstr "Señal (nombre del botón)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3980,6 +3963,7 @@ msgid "On Multiple Doc."
msgstr "En múltiples doc."
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3990,11 +3974,6 @@ msgstr "Contactos"
msgid "Faroe Islands"
msgstr "Islas Feroe"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "El objeto afectado por estas reglas."
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4383,11 +4362,6 @@ msgstr "Campo del objeto"
msgid "French (CH) / Français (CH)"
msgstr "Francés (CH) / Français (CH)"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Lista de compañías"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4504,6 +4478,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr "res.empresa.evento"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr "Usuarios aceptados"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4627,13 +4606,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "ID iCal"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Funciones empresa"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4770,11 +4742,6 @@ msgstr "_Cerrar"
msgid "Full"
msgstr "Completo"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Compañía por defecto"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5016,6 +4983,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Compañías"
@ -5453,10 +5421,11 @@ msgid "Active Partner Events"
msgstr "Eventos de empresas activas"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Reglas de registros"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5752,8 +5721,6 @@ msgid "Martinique (French)"
msgstr "Martinica (Francia)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6023,6 +5990,11 @@ msgstr "Abrir informe"
msgid "Rounding factor"
msgstr "Factor redondeo"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6103,6 +6075,11 @@ msgstr "Valor de contexto"
msgid "Hour 00->24: %(h24)s"
msgstr "Hora 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6122,7 +6099,6 @@ msgstr "Mes: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6190,6 +6166,11 @@ msgstr "Ref. tabla"
msgid "Parent"
msgstr "Padre"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6208,7 +6189,6 @@ msgstr "Padre"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6930,6 +6910,17 @@ msgstr "ID del objeto"
msgid "Landscape"
msgstr "Horizontal"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Empresas"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7150,11 +7141,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "El segundo campo debería ser cifras"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Dele un nombre para encontrar fácilmente un registro."
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7277,11 +7263,6 @@ msgstr "Búsqueda avanzada"
msgid "Bank Accounts"
msgstr "Cuentas bancarias"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Multi compañía por defecto"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7379,12 +7360,6 @@ msgstr "Acción en múltiples doc."
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Títulos"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7462,6 +7437,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Permiso para eliminar"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7719,6 +7699,11 @@ msgstr "Islas Wallis y Futuna"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "El CIF/NIF no parece estar correcto."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7872,6 +7857,12 @@ msgstr "Última versión"
msgid "ir.actions.server"
msgstr "ir.acciones.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Reglas de registros"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8124,26 +8115,29 @@ msgstr "Ruso / русский язык"
#~ msgid "Others Partners"
#~ msgstr "Otras empresas"
#~ msgid "Main Company"
#~ msgstr "Empresa principal"
#~ msgid "Grant Access To Menus"
#~ msgstr "Autorizar acceso a menús"
#~ msgid "Macedonia"
#~ msgstr "Macedonia"
#~ msgid "Partner Functions"
#~ msgstr "Funciones empresa"
#~ msgid "Customers Partners"
#~ msgstr "Clientes"
#~ msgid "File Content"
#~ msgstr "Contenido del fichero"
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Suppliers Partners"
#~ msgstr "Proveedores"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "El CIF/NIF no parece estar correcto."
#~ msgid "Titles"
#~ msgstr "Títulos"
#, python-format
#~ msgid "No journal for ending writing has been defined for the fiscal year"
@ -8635,3 +8629,30 @@ msgstr "Ruso / русский язык"
#~ msgid "IT sector"
#~ msgstr "Sector de TI"
#~ msgid "Company to store the current record"
#~ msgstr "Compañía donde se guardará el registro actual."
#~ msgid "Expression"
#~ msgstr "Expresión"
#~ msgid "Expression, must be True to match"
#~ msgstr "Una expresión, debe ser cierta para concordar."
#~ msgid "Company where the user is connected"
#~ msgstr "Compañía en la que pertenece el usuario."
#~ msgid "List of Company"
#~ msgstr "Lista de compañías"
#~ msgid "Object affect by this rules"
#~ msgstr "El objeto afectado por estas reglas."
#~ msgid "Default Company"
#~ msgstr "Compañía por defecto"
#~ msgid "Name it to easily find a record"
#~ msgstr "Dele un nombre para encontrar fácilmente un registro."
#~ msgid "Default multi company"
#~ msgstr "Multi compañía por defecto"

View File

@ -1020,21 +1020,7 @@ msgstr "STOCK_COPY"
#: code:addons/addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
"Model %s Does not Exist !"
msgstr ""
#. module: base

File diff suppressed because it is too large Load Diff

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:29+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:00+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -198,11 +198,6 @@ msgstr "Mitmel dokumendil."
msgid "Number of Modules"
msgstr "Moodulite arv"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -408,7 +403,7 @@ msgid "Country Name"
msgstr "Riigi nimi"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbia"
@ -736,6 +731,12 @@ msgstr "Kaimani saared"
msgid "Iran"
msgstr "Iraan"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -995,22 +996,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1109,6 +1095,14 @@ msgstr "Päevad"
msgid "Fixed Width"
msgstr "Fikseeritud laius"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1144,14 +1138,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerid"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1362,6 +1351,11 @@ msgstr "Uuendatud moodulite arv"
msgid "Groups"
msgstr "Grupid"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1590,6 +1584,12 @@ msgstr "Väärtused"
msgid "Field Mappings"
msgstr "Välja seostamised"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1646,11 +1646,6 @@ msgstr "%p - AM või PM vaste."
msgid "Iteration Actions"
msgstr "Iteratsiooni toimingud"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1853,11 +1848,6 @@ msgstr "Ligipääsukontroll"
msgid "Dependencies"
msgstr "Sõltuvused"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Emaettevõte"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1977,6 +1967,12 @@ msgstr "Välja seostamised"
msgid "Module"
msgstr "Moodul"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2349,11 +2345,6 @@ msgstr "Kvaliteedi sertifikaat"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2465,11 +2456,6 @@ msgstr "Domeen"
msgid "Summary"
msgstr "Kokkuvõte"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3080,6 +3066,7 @@ msgstr "Hooldusleping lisatud!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Väli"
@ -3147,7 +3134,6 @@ msgstr "Kasahstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3678,8 +3664,6 @@ msgid "Signal (button Name)"
msgstr "Signaal (nupu nimi)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3942,6 +3926,7 @@ msgid "On Multiple Doc."
msgstr "Mitmel dokumendil"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3952,11 +3937,6 @@ msgstr "Kontaktid"
msgid "Faroe Islands"
msgstr "Fääri saared"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4344,11 +4324,6 @@ msgstr "Objekti väli"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4465,6 +4440,11 @@ msgstr "Nigeeria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4587,13 +4567,6 @@ msgstr "Nepaal"
msgid "iCal id"
msgstr "iCal id"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Partneri funktsioonid"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4728,11 +4701,6 @@ msgstr "_Sulge"
msgid "Full"
msgstr "Täielik"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4974,6 +4942,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Firmad"
@ -5409,10 +5378,11 @@ msgid "Active Partner Events"
msgstr "Aktiivsed partneri sündmused"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Kirje reeglid"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5708,8 +5678,6 @@ msgid "Martinique (French)"
msgstr "Martinique (Prantsuse)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5975,6 +5943,11 @@ msgstr "Ava aruanne"
msgid "Rounding factor"
msgstr "Ümardusfaktor"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6055,6 +6028,11 @@ msgstr "Konteksti väärtus"
msgid "Hour 00->24: %(h24)s"
msgstr "Tund 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6074,7 +6052,6 @@ msgstr "Kuu: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6142,6 +6119,11 @@ msgstr "Tabeli viit"
msgid "Parent"
msgstr "Ülem"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6160,7 +6142,6 @@ msgstr "Ülem"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6880,6 +6861,17 @@ msgstr "Objekt ID"
msgid "Landscape"
msgstr "Rõhtpaigutus"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerid"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7100,11 +7092,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7227,11 +7214,6 @@ msgstr "Laiendatud otsing"
msgid "Bank Accounts"
msgstr "Pangakonto"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7326,12 +7308,6 @@ msgstr "Toiming mitmel dokumendil"
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Tiitlid"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7409,6 +7385,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Kustutamisõigus"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7665,6 +7646,11 @@ msgstr "Wallis ja Futuna Saared"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "Käibemaksukohuslase numbris on viga"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7816,6 +7802,12 @@ msgstr "Uusim versioon"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Kirje reeglid"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8067,12 +8059,18 @@ msgstr "Vene keel / русский язык"
#~ msgid "Others Partners"
#~ msgstr "Muud partnerid"
#~ msgid "Main Company"
#~ msgstr "Emaettevõte"
#~ msgid "Grant Access To Menus"
#~ msgstr "Taga ligipääs menüüdele"
#~ msgid "Macedonia"
#~ msgstr "Makedoonia"
#~ msgid "Partner Functions"
#~ msgstr "Partneri funktsioonid"
#~ msgid "Customers Partners"
#~ msgstr "Kliendid"
@ -8082,14 +8080,11 @@ msgstr "Vene keel / русский язык"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "Viga! Sa ei saa luua rekursiivseid seotud liikmeid."
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Html from html"
#~ msgstr "Html html-ist"
#~ msgid "Suppliers Partners"
#~ msgstr "Tarnijad"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "Käibemaksukohuslase numbris on viga"
#~ msgid "Titles"
#~ msgstr "Tiitlid"

7947
bin/addons/base/i18n/eu.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:31+0000\n"
"Last-Translator: mra (Open ERP) <mra@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:00+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -198,11 +198,6 @@ msgstr "Useammassa dokumentissa"
msgid "Number of Modules"
msgstr "Moduulien lukumäärä"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -416,7 +411,7 @@ msgid "Country Name"
msgstr "Maan nimi"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbia"
@ -746,6 +741,12 @@ msgstr "Caymansaaret"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1006,22 +1007,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1120,6 +1106,14 @@ msgstr "Päivää"
msgid "Fixed Width"
msgstr "Kiinteä leveys"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1155,14 +1149,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S = 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Kumppanit"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1376,6 +1365,11 @@ msgstr "Päivitettyjen moduulien määrä"
msgid "Groups"
msgstr "Ryhmät"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1602,6 +1596,12 @@ msgstr "Arvot"
msgid "Field Mappings"
msgstr "Kenttien kartoitukset"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1658,11 +1658,6 @@ msgstr "%p - Vastaa joko merkintää AM tai PM."
msgid "Iteration Actions"
msgstr "Iteraatiotoiminnot"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1865,11 +1860,6 @@ msgstr "Käyttöoikeudet"
msgid "Dependencies"
msgstr "Riippuvuudet"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Pääyritys"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1989,6 +1979,12 @@ msgstr "Kenttien kartoitukset."
msgid "Module"
msgstr "Moduuli"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2362,11 +2358,6 @@ msgstr "Laatusertifikaatti"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m = 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2482,11 +2473,6 @@ msgstr "Toimialue"
msgid "Summary"
msgstr "Yhteenveto"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3101,6 +3087,7 @@ msgstr "Ylläpitosopimus lisätty!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Kenttä"
@ -3169,7 +3156,6 @@ msgstr "Kazakstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3702,8 +3688,6 @@ msgid "Signal (button Name)"
msgstr "Signaali (painikkeen nimi)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3967,6 +3951,7 @@ msgid "On Multiple Doc."
msgstr "Useammassa dokumentissa"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3977,11 +3962,6 @@ msgstr "Yhteyshenkilöt"
msgid "Faroe Islands"
msgstr "Färsaaret"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4370,11 +4350,6 @@ msgstr "Objektikenttä"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4491,6 +4466,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4614,13 +4594,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "iCal-tunnus"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Kumppanien ammattinimikeet"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4757,11 +4730,6 @@ msgstr "_Sulje"
msgid "Full"
msgstr "Täysi"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5003,6 +4971,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Yritykset"
@ -5440,10 +5409,11 @@ msgid "Active Partner Events"
msgstr "Aktiiviset kumppanien tapahtumat"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Tietuesäännöt"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5739,8 +5709,6 @@ msgid "Martinique (French)"
msgstr "Martinique (Ranska)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6009,6 +5977,11 @@ msgstr "Avaa raportti"
msgid "Rounding factor"
msgstr "Pyöristyskerroin"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6089,6 +6062,11 @@ msgstr "Kontekstiarvo"
msgid "Hour 00->24: %(h24)s"
msgstr "Tunti 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6108,7 +6086,6 @@ msgstr "Kuukausi: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6176,6 +6153,11 @@ msgstr "Taulukon viite"
msgid "Parent"
msgstr "Ylempi rooli"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6194,7 +6176,6 @@ msgstr "Ylempi rooli"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6916,6 +6897,17 @@ msgstr "Objektin tunnus"
msgid "Landscape"
msgstr "Maisema"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Kumppanit"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7136,11 +7128,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Toinen kenttä pitäisi olla luku"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7263,11 +7250,6 @@ msgstr "Tarkennettu haku"
msgid "Bank Accounts"
msgstr "Pankkitilit"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7364,12 +7346,6 @@ msgstr "Useamman dokumentin toiminto"
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Nimikkeet"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7447,6 +7423,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Poista oikeus"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7704,6 +7685,11 @@ msgstr "Wallis- ja Futunasaaret"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "ALV ei vaikuta olevan oikea."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7857,6 +7843,12 @@ msgstr "Viimeisin versio"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Tietuesäännöt"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8107,12 +8099,18 @@ msgstr "Venäjä / русский язык"
#~ msgid "Others Partners"
#~ msgstr "Muut kumppanit"
#~ msgid "Main Company"
#~ msgstr "Pääyritys"
#~ msgid "Grant Access To Menus"
#~ msgstr "Anna käyttöoikeus valikkoihin"
#~ msgid "Macedonia"
#~ msgstr "Makedonia"
#~ msgid "Partner Functions"
#~ msgstr "Kumppanien ammattinimikeet"
#~ msgid "Customers Partners"
#~ msgstr "Asiakaskumppanit"
@ -8122,17 +8120,14 @@ msgstr "Venäjä / русский язык"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "Virhe! Rekursiivisesti rinnastettuja jäseniä ei voi luoda."
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Html from html"
#~ msgstr "HTML HTML:stä"
#~ msgid "Suppliers Partners"
#~ msgstr "Toimittajakumppanit"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "ALV ei vaikuta olevan oikea."
#~ msgid "Titles"
#~ msgstr "Nimikkeet"
#, python-format
#~ msgid "The unlink method is not implemented on this object !"

View File

@ -6,20 +6,20 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-11 05:46+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-21 05:27+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:00+0000\n"
"X-Launchpad-Export-Date: 2010-01-22 04:34+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
#: model:res.country,name:base.sh
msgid "Saint Helena"
msgstr "Sainte-Hélène"
msgstr "Île Sainte-Hélène"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
@ -202,11 +202,6 @@ msgstr "Sur de multiples enregistrements"
msgid "Number of Modules"
msgstr "Nombre de modules"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr "Société physique ou sera stocké cet enregistrement"
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -421,7 +416,7 @@ msgid "Country Name"
msgstr "Nom du pays"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colombie"
@ -751,6 +746,12 @@ msgstr "Îles Caïmans"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr "Mes requêtes"
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1012,23 +1013,8 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgstr ""
msgid "Model %s Does not Exist !"
msgstr "Le modèle %s n'existe pas !"
#. module: base
#: code:addons/base/module/module.py:0
@ -1037,6 +1023,8 @@ msgid ""
"You try to install the module '%s' that depends on the module:'%s'.\n"
"But this module is not available in your system."
msgstr ""
"Vous essayer d'installer le module '%s' qui dépend du module: '%s'.\n"
"Par contre ce module n'est pas disponible sur votre système."
#. module: base
#: model:ir.model,name:base.model_res_request_link
@ -1126,6 +1114,14 @@ msgstr "Jours"
msgid "Fixed Width"
msgstr "Largeur fixe"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1161,14 +1157,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partenaires"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr "La société de l'utilisateur dans laquelle il travaille."
#. module: base
#: help:ir.actions.server,message:0
@ -1270,6 +1261,8 @@ msgid ""
"If set, sequence will only be used in case this python expression matches, "
"and will precede other sequences."
msgstr ""
"Si renseignée, la séquence sera utilisée seulement dans le cas où cette "
"expression python correspond, et précédera toutes les autres séquences."
#. module: base
#: selection:ir.actions.act_window,view_type:0
@ -1383,6 +1376,11 @@ msgstr "Nombre de modules mis à jour"
msgid "Groups"
msgstr "Groupes"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr "Cet utilisateur ne peut pas se conencter en utilisant cette société"
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1615,6 +1613,12 @@ msgstr "Valeurs"
msgid "Field Mappings"
msgstr "Correspondances de champ"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr "Mes requêtes terminés"
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1671,11 +1675,6 @@ msgstr "%p - Soit AM soit à PM."
msgid "Iteration Actions"
msgstr "Actions de l'itération"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "Société ou l'utilisateur sera connecté"
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1878,11 +1877,6 @@ msgstr "Contrôle des accès"
msgid "Dependencies"
msgstr "Dépendances"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Société mère"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -2002,6 +1996,12 @@ msgstr "Correspondances de champ"
msgid "Module"
msgstr "Module"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr "Liste des banques"
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2374,11 +2374,6 @@ msgstr "Certificat Qualité"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2494,11 +2489,6 @@ msgstr "Domaine"
msgid "Summary"
msgstr "Sommaire"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Expression"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -2584,7 +2574,7 @@ msgstr "Type d'évènement"
#: view:res.partner.bank:0
#: model:res.partner.bank.type,name:base.bank_normal
msgid "Bank account"
msgstr "Compte banquaire"
msgstr "Compte bancaire"
#. module: base
#: view:ir.sequence.type:0
@ -3115,6 +3105,7 @@ msgstr "Contrat de maintenance ajouté !"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Champ"
@ -3183,7 +3174,6 @@ msgstr "Kazakhstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3302,6 +3292,9 @@ msgid ""
"\"%s\" contains too many dots. XML ids should not contain dots ! These are "
"used to refer to other modules data, as in module.reference_id"
msgstr ""
"\"%s\" contient trop de points. Les ids XML ne devraient pas contenir de "
"points! Les points sont utilisés pour faire référence à des données d'autres "
"modules, tel que module.reference_id"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -3716,8 +3709,6 @@ msgid "Signal (button Name)"
msgstr "Signal (Nom du bouton)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3982,6 +3973,7 @@ msgid "On Multiple Doc."
msgstr "Sur plusieurs documents"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3992,11 +3984,6 @@ msgstr "Contacts"
msgid "Faroe Islands"
msgstr "Îles Féroé"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "Objet affecté par cette règle"
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4188,7 +4175,7 @@ msgstr "a4"
#. module: base
#: field:ir.actions.act_window,search_view_id:0
msgid "Search View Ref."
msgstr ""
msgstr "Vue de recherche"
#. module: base
#: view:ir.rule.group:0
@ -4384,11 +4371,6 @@ msgstr "Champ objet"
msgid "French (CH) / Français (CH)"
msgstr "French (CH) / Français (CH)"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Liste des sociétés"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4506,6 +4488,11 @@ msgstr "Nigéria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr "Utilisateurs acceptés"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4629,13 +4616,6 @@ msgstr "Népal"
msgid "iCal id"
msgstr "ID iCal"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Fonctions de partenaire"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4772,11 +4752,6 @@ msgstr "_Fermer"
msgid "Full"
msgstr "Complet"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Société par défaut"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5018,6 +4993,7 @@ msgstr "Gambie"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Sociétés"
@ -5456,10 +5432,11 @@ msgid "Active Partner Events"
msgstr "Évènements actifs des partenaires"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Règles sur les enregistrements"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr "Fonctions du contact"
#. module: base
#: view:multi_company.default:0
@ -5755,8 +5732,6 @@ msgid "Martinique (French)"
msgstr "Martinique (Française)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6026,6 +6001,11 @@ msgstr "Ouvrir le rapport"
msgid "Rounding factor"
msgstr "Facteur d'arrondi"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6106,6 +6086,11 @@ msgstr "Valeur du contexte"
msgid "Hour 00->24: %(h24)s"
msgstr "Heure 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr "Sélectionner un champ property"
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6125,7 +6110,6 @@ msgstr "Mois: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6193,6 +6177,11 @@ msgstr "Réf. table"
msgid "Parent"
msgstr "Parent"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr "Retour"
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6211,7 +6200,6 @@ msgstr "Parent"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6935,6 +6923,17 @@ msgstr "ID de l'objet"
msgid "Landscape"
msgstr "Paysage"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partenaires"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7155,11 +7154,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Le second champ doit contenir des chiffres"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Nommer le facilement pour trouver l'enregistrement"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7282,11 +7276,6 @@ msgstr "Recherche avancée"
msgid "Bank Accounts"
msgstr "Comptes bancaires"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Multi société par défaut"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7385,12 +7374,6 @@ msgstr "Action due plusieurs documents"
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Titres"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7468,6 +7451,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Accès en suppression"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr "multi_company.default"
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7726,6 +7714,11 @@ msgstr "Wallis et Futuna"
msgid "Rwanda"
msgstr "Rwanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "Le numéro de TVA ne semble pas correct."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7879,6 +7872,12 @@ msgstr "Dernière version"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Règles sur les enregistrements"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8135,14 +8134,11 @@ msgstr "Russie / русский язык"
#~ msgstr ""
#~ "Erreur ! Vous ne pouvez pas créer des membres associés de manière récursive."
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Html from html"
#~ msgstr "De Html à html"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "Le numéro de TVA ne semble pas correct."
#~ msgid "Titles"
#~ msgstr "Titres"
#, python-format
#~ msgid "The unlink method is not implemented on this object !"
@ -8158,6 +8154,9 @@ msgstr "Russie / русский язык"
#~ msgid "Attached Model"
#~ msgstr "Modèle lié"
#~ msgid "Main Company"
#~ msgstr "Société mère"
#, python-format
#~ msgid ""
#~ "You try to install a module that depends on the module: %s.\n"
@ -8180,6 +8179,9 @@ msgstr "Russie / русский язык"
#~ msgid "UserError"
#~ msgstr "Erreur utilisateur"
#~ msgid "Partner Functions"
#~ msgstr "Fonctions de partenaire"
#~ msgid "Customers Partners"
#~ msgstr "Partenaires clients"
@ -8252,3 +8254,27 @@ msgstr "Russie / русский язык"
#~ msgid "IT sector"
#~ msgstr "Secteur IT"
#~ msgid "Company to store the current record"
#~ msgstr "Société physique ou sera stocké cet enregistrement"
#~ msgid "Company where the user is connected"
#~ msgstr "Société ou l'utilisateur sera connecté"
#~ msgid "Expression"
#~ msgstr "Expression"
#~ msgid "Object affect by this rules"
#~ msgstr "Objet affecté par cette règle"
#~ msgid "List of Company"
#~ msgstr "Liste des sociétés"
#~ msgid "Default Company"
#~ msgstr "Société par défaut"
#~ msgid "Name it to easily find a record"
#~ msgstr "Nommer le facilement pour trouver l'enregistrement"
#~ msgid "Default multi company"
#~ msgstr "Multi société par défaut"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-27 17:04+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:00+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -404,7 +399,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -730,6 +725,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -984,22 +985,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1098,6 +1084,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1133,13 +1127,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1336,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-16 06:38+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-18 17:51+0000\n"
"Last-Translator: Ddorda <d.dorda@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-17 04:43+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -199,11 +199,6 @@ msgstr "בריבוי מסמכים"
msgid "Number of Modules"
msgstr "מספר המודולים"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -415,7 +410,7 @@ msgid "Country Name"
msgstr "שם מדינה"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colombia"
@ -743,6 +738,12 @@ msgstr "Cayman Islands"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1001,22 +1002,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1115,6 +1101,14 @@ msgstr "ימים"
msgid "Fixed Width"
msgstr "תקן רוחב"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1150,14 +1144,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "שותפים"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1368,6 +1357,11 @@ msgstr "מספר מודולים עודכנו."
msgid "Groups"
msgstr "קבוצות"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1592,6 +1586,12 @@ msgstr "ערכים"
msgid "Field Mappings"
msgstr "מיפוי שדות"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1648,11 +1648,6 @@ msgstr "%p - מתייחס ל AM או PM."
msgid "Iteration Actions"
msgstr "הפעלה של חזרה"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1855,11 +1850,6 @@ msgstr "הגדרות גישה"
msgid "Dependencies"
msgstr "תלותיות"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "חברה מרכזית"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1977,6 +1967,12 @@ msgstr "מיפויי שדה"
msgid "Module"
msgstr "מודול"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2345,11 +2341,6 @@ msgstr "אישור איכות"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2463,11 +2454,6 @@ msgstr "דומיין"
msgid "Summary"
msgstr "סיכום"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3075,6 +3061,7 @@ msgstr "חוזה אחזקה הוסף!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "שדה"
@ -3142,7 +3129,6 @@ msgstr "Kazakhstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3670,8 +3656,6 @@ msgid "Signal (button Name)"
msgstr "סימן (שם לחצן)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3934,6 +3918,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3944,11 +3929,6 @@ msgstr "אנשי קשר"
msgid "Faroe Islands"
msgstr "Faroe Islands"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4336,11 +4316,6 @@ msgstr "שדה אובייקט"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4456,6 +4431,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4577,13 +4557,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "מזהה iCal"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "פעילות שותף"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4720,11 +4693,6 @@ msgstr "_סגור"
msgid "Full"
msgstr "מלא"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4964,6 +4932,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "חברות"
@ -5394,10 +5363,11 @@ msgid "Active Partner Events"
msgstr "אורעי שותפים פעילים"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "חוקי רשומה"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5692,8 +5662,6 @@ msgid "Martinique (French)"
msgstr "Martinique (French)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5958,6 +5926,11 @@ msgstr "פתח דוח"
msgid "Rounding factor"
msgstr "גורם עיגול"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6038,6 +6011,11 @@ msgstr "ערך הקשר"
msgid "Hour 00->24: %(h24)s"
msgstr "שעה 00->24: %(h24)ות"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6057,7 +6035,6 @@ msgstr "חודש: %(month)ים"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6125,6 +6102,11 @@ msgstr ""
msgid "Parent"
msgstr "הורה"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6143,7 +6125,6 @@ msgstr "הורה"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6859,6 +6840,17 @@ msgstr "מזהה אובייקט"
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "שותפים"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7078,11 +7070,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "יש לסמן שדה שני"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7105,7 +7092,7 @@ msgstr "גבוה"
#. module: base
#: field:ir.exports.line,export_id:0
msgid "Export"
msgstr "יצוא"
msgstr "ייצוא"
#. module: base
#: help:res.bank,bic:0
@ -7205,11 +7192,6 @@ msgstr "חיפוש מתקדם"
msgid "Bank Accounts"
msgstr "חשבון בנק"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7306,12 +7288,6 @@ msgstr "פעולה על מסמכים רבים."
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "כותרות"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7389,6 +7365,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "מחק הרשאה"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7645,6 +7626,11 @@ msgstr "Wallis and Futuna Islands"
msgid "Rwanda"
msgstr "Rwanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "המע\"מ נראה שגוי"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7795,6 +7781,12 @@ msgstr "גרסא המאוחרת ביותר"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "חוקי רשומה"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8080,6 +8072,9 @@ msgstr "רוסית / русский язык"
#~ msgid "HR sector"
#~ msgstr "מגזר HR"
#~ msgid "Main Company"
#~ msgstr "חברה מרכזית"
#, python-format
#~ msgid "Please check that all your lines have %d columns."
#~ msgstr "אנא בדוק כי כל השורות בעלות עמודות %d"
@ -8146,6 +8141,9 @@ msgstr "רוסית / русский язык"
#~ msgid "The copy method is not implemented on this object !"
#~ msgstr "שיטת העתקה אינה מיושמת באובייקט"
#~ msgid "Partner Functions"
#~ msgstr "פעילות שותף"
#, python-format
#~ msgid "You cannot perform this operation."
#~ msgstr "אתה לא יכול לבצע פעולה זו."
@ -8179,9 +8177,6 @@ msgstr "רוסית / русский язык"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "שגיאה! לא ניתן ליצור חברים קשורים באופן רקרוסיבי."
#~ msgid "res.company"
#~ msgstr "res.company"
#, python-format
#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection"
#~ msgstr "הערך \"%s\" לשדה \"%s\" אינו בבחירה."
@ -8192,13 +8187,13 @@ msgstr "רוסית / русский язык"
#~ msgid "Suppliers Partners"
#~ msgstr "שותפים ספקים"
#~ msgid "Titles"
#~ msgstr "כותרות"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "שיטת החיפוש אינה מיושמת על אובייקט זה."
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "המע\"מ נראה שגוי"
#~ msgid "IT sector"
#~ msgstr "מגזר IT"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-11-30 08:22+0000\n"
"Last-Translator: dzuvela <drazen@radez.hr>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-29 05:47+0000\n"
"Last-Translator: Damir <damir.tusek@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:02+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -29,12 +29,12 @@ msgstr ""
#. module: base
#: view:res.lang:0
msgid "%j - Day of the year as a decimal number [001,366]."
msgstr ""
msgstr "%j - Dan u godini kao decimalni broj [001,366]."
#. module: base
#: field:ir.values,meta_unpickle:0
msgid "Metadata"
msgstr ""
msgstr "Meta podaci"
#. module: base
#: field:ir.ui.view,arch:0
@ -68,7 +68,7 @@ msgstr ""
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Hungarian / Magyar"
msgstr ""
msgstr "Mađarski / Magyar"
#. module: base
#: field:ir.actions.server,wkf_model_id:0
@ -193,11 +193,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -729,6 +724,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,13 +1126,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1346,6 +1335,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1566,6 +1560,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1622,11 +1622,6 @@ msgstr "%p - Equivalent za AM ili PM."
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1829,11 +1824,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1951,6 +1941,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2317,11 +2313,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2431,11 +2422,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3034,6 +3020,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3101,7 +3088,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3627,8 +3613,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3889,6 +3873,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3899,11 +3884,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4289,11 +4269,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4407,6 +4382,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4526,13 +4506,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4667,11 +4640,6 @@ msgstr ""
msgid "Full"
msgstr "Pun"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4911,6 +4879,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5341,9 +5310,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5638,8 +5608,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5901,6 +5869,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5981,6 +5954,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6000,7 +5978,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6066,6 +6043,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6084,7 +6066,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6793,6 +6774,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7010,11 +7002,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7137,11 +7124,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7234,12 +7216,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7313,6 +7289,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7569,6 +7550,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7713,6 +7699,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-11-24 20:04+0000\n"
"Last-Translator: mra (Open ERP) <mra@tinyerp.com>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-30 05:38+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-31 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr "Ország"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -729,6 +724,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,14 +1126,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerek"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1346,6 +1335,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1499,7 +1493,7 @@ msgstr "Billentyűkombináció neve"
#. module: base
#: field:res.partner,credit_limit:0
msgid "Credit Limit"
msgstr ""
msgstr "Hitelkeret"
#. module: base
#: help:ir.actions.server,write_id:0
@ -1566,6 +1560,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1622,11 +1622,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1829,11 +1824,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Anyagcég"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1951,6 +1941,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2317,11 +2313,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2431,11 +2422,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3034,6 +3020,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3101,7 +3088,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3627,8 +3613,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3889,6 +3873,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3899,11 +3884,6 @@ msgstr "Névjegyek"
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4289,11 +4269,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4407,6 +4382,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4526,13 +4506,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4667,11 +4640,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4911,6 +4879,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5341,9 +5310,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5638,8 +5608,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5901,6 +5869,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5981,6 +5954,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6000,7 +5978,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6066,6 +6043,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6084,7 +6066,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6793,6 +6774,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerek"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7010,11 +7002,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7137,11 +7124,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7234,12 +7216,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7313,6 +7289,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7569,6 +7550,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7713,6 +7699,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -7952,3 +7944,6 @@ msgstr ""
#: selection:module.lang.install,init,lang:0
msgid "Russian / русский язык"
msgstr ""
#~ msgid "Main Company"
#~ msgstr "Anyagcég"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-24 18:49+0000\n"
"Last-Translator: Iman Sulaiman <isulaiman@hotmail.com>\n"
"Language-Team: Indonesian <id@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -404,7 +399,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -730,6 +725,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -984,22 +985,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1098,6 +1084,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1133,13 +1127,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1336,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-30 08:27+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: Icelandic <is@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -404,7 +399,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -730,6 +725,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -984,22 +985,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1098,6 +1084,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1133,13 +1127,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1336,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-15 06:32+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-10 09:01+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -175,7 +175,7 @@ msgstr "ir.report.custom.fields"
#. module: base
#: view:res.partner:0
msgid "Search Partner"
msgstr ""
msgstr "Ricerca Partner"
#. module: base
#: code:addons/base/module/wizard/wizard_export_lang.py:0
@ -199,11 +199,6 @@ msgstr "Su documenti multipli"
msgid "Number of Modules"
msgstr "Numero di Moduli"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -221,6 +216,8 @@ msgid ""
"Save this document to a %s file and edit it with a specific software or a "
"text editor. The file encoding is UTF-8."
msgstr ""
"Salva questo documento come un file %s e modificalo con un software "
"specifico o un editor di testo. La codifica del file è UTF-8."
#. module: base
#: selection:ir.ui.menu,icon:0
@ -238,6 +235,8 @@ msgstr "Le password non corrispondono !"
#, python-format
msgid "This url '%s' must provide an html file with links to zip modules"
msgstr ""
"Questo indirizzo URL '%s' deve condurre ad un file html contenente "
"collegamenti a diversi moduli in formato .zip."
#. module: base
#: selection:res.request,state:0
@ -319,7 +318,7 @@ msgstr "Moduli non Installati"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "txt"
msgstr ""
msgstr "txt"
#. module: base
#: wizard_view:server.action.create,init:0
@ -366,6 +365,8 @@ msgid ""
"You can not remove the admin user as it is used internally for resources "
"created by OpenERP (updates, module installation, ...)"
msgstr ""
"Non puoi rimuovere l'utente admin, poichè viene utilizzato internamente per "
"risorse create da OpenERP (aggiornamenti, installazioni...)"
#. module: base
#: model:res.country,name:base.gf
@ -375,7 +376,7 @@ msgstr "Guyana Francese"
#. module: base
#: field:ir.ui.view.custom,ref_id:0
msgid "Original View"
msgstr ""
msgstr "Vista originale"
#. module: base
#: selection:module.lang.install,init,lang:0
@ -396,6 +397,7 @@ msgstr ""
#: help:res.lang,iso_code:0
msgid "This ISO code is the name of po files to use for translations"
msgstr ""
"Questo codice ISO è il nome del file PO da utilizzare per le traduzioni"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -413,7 +415,7 @@ msgid "Country Name"
msgstr "Nome Nazione"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colombia"
@ -594,7 +596,7 @@ msgstr ","
#. module: base
#: view:res.partner:0
msgid "My Partners"
msgstr ""
msgstr "Miei Partners"
#. module: base
#: model:res.country,name:base.es
@ -659,7 +661,7 @@ msgstr "Moduli di contratto di manutenzione"
#. module: base
#: view:ir.values:0
msgid "client_action_multi, client_action_relate"
msgstr ""
msgstr "client_action_multi, client_action_relate"
#. module: base
#: model:res.country,name:base.ad
@ -741,7 +743,13 @@ msgstr "Isole Cayman"
#. module: base
#: model:res.country,name:base.ir
msgid "Iran"
msgstr ""
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr "Le Mie Richieste"
#. module: base
#: field:ir.sequence,name:0
@ -767,12 +775,12 @@ msgstr "Uganda"
#. module: base
#: model:res.country,name:base.ne
msgid "Niger"
msgstr ""
msgstr "Nigeria"
#. module: base
#: model:res.country,name:base.ba
msgid "Bosnia-Herzegovina"
msgstr ""
msgstr "Bosnia-Erzegovina"
#. module: base
#: field:ir.report.custom.fields,alignment:0
@ -824,12 +832,12 @@ msgstr "Repository"
#. module: base
#: model:res.country,name:base.gs
msgid "S. Georgia & S. Sandwich Isls."
msgstr ""
msgstr "Isole di S. Georgia e S. Sandwich"
#. module: base
#: field:ir.actions.url,url:0
msgid "Action URL"
msgstr ""
msgstr "URL dell'azione"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -839,12 +847,12 @@ msgstr "STOCK_JUSTIFY_FILL"
#. module: base
#: model:res.country,name:base.mh
msgid "Marshall Islands"
msgstr ""
msgstr "Isole Marshall"
#. module: base
#: model:res.country,name:base.ht
msgid "Haiti"
msgstr ""
msgstr "Haiti"
#. module: base
#: selection:ir.translation,type:0
@ -854,13 +862,13 @@ msgstr "RML"
#. module: base
#: selection:ir.ui.view,type:0
msgid "Search"
msgstr ""
msgstr "Ricerca"
#. module: base
#: code:addons/base/ir/ir_report_custom.py:0
#, python-format
msgid "Pie charts need exactly two fields"
msgstr ""
msgstr "I Grafici a Torta necessitano di due campi"
#. module: base
#: help:wizard.module.lang.export,lang:0
@ -870,7 +878,7 @@ msgstr "Per esportare una nuova lingua, non selezionare una lingua"
#. module: base
#: model:res.country,name:base.md
msgid "Moldavia"
msgstr ""
msgstr "Moldavia"
#. module: base
#: view:ir.module.module:0
@ -927,6 +935,9 @@ msgid ""
"you select the invoice, then `object.invoice_address_id.email` is the field "
"which gives the correct address"
msgstr ""
"Fornisce i campi che verranno usati per prelevare l'indirizzo e-mail, es. "
"quando si seleziona una fattura. `object.invoice_address_id.email` è il "
"campo che fornisce l'indirizzo corretto."
#. module: base
#: field:res.roles,name:0
@ -946,7 +957,7 @@ msgstr "-"
#. module: base
#: field:res.payterm,name:0
msgid "Payment Term (short name)"
msgstr ""
msgstr "Termini di Pagamento (abbreviazione)"
#. module: base
#: model:ir.model,name:base.model_res_bank
@ -1000,22 +1011,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1039,7 +1035,7 @@ msgstr "Cerca Nuovi Moduli"
#. module: base
#: model:res.country,name:base.km
msgid "Comoros"
msgstr ""
msgstr "Isole Comore"
#. module: base
#: model:ir.actions.act_window,name:base.action_server_action
@ -1051,7 +1047,7 @@ msgstr "Azioni Server"
#. module: base
#: model:res.country,name:base.tp
msgid "East Timor"
msgstr ""
msgstr "Timor Est"
#. module: base
#: view:ir.rule:0
@ -1066,7 +1062,7 @@ msgstr "Precisione di Calcolo"
#. module: base
#: model:res.country,name:base.kg
msgid "Kyrgyz Republic (Kyrgyzstan)"
msgstr ""
msgstr "Kyrgyzstan"
#. module: base
#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line
@ -1082,7 +1078,7 @@ msgstr "Giorno: %(day)s"
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "You can not read this document! (%s)"
msgstr ""
msgstr "Non puoi leggere questo documento ! (%s)"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -1092,7 +1088,7 @@ msgstr "STOCK_FIND_AND_REPLACE"
#. module: base
#: model:res.country,name:base.mv
msgid "Maldives"
msgstr ""
msgstr "Maldive"
#. module: base
#: help:ir.values,res_id:0
@ -1114,6 +1110,14 @@ msgstr "Giorni"
msgid "Fixed Width"
msgstr "Larghezza Fissa"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1149,14 +1153,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partner"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1368,6 +1367,11 @@ msgstr "Numero di moduli aggiornati"
msgid "Groups"
msgstr "Gruppi"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1592,6 +1596,12 @@ msgstr "Valori"
msgid "Field Mappings"
msgstr "Mappatura Campi"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1648,11 +1658,6 @@ msgstr "%p - Equivalenti di AM o PM."
msgid "Iteration Actions"
msgstr "Iterazione di azioni"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1855,11 +1860,6 @@ msgstr "Controlli Accesso"
msgid "Dependencies"
msgstr "Dipendenze"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Azienda Principale"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1979,6 +1979,12 @@ msgstr ""
msgid "Module"
msgstr "Modulo"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2348,11 +2354,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2465,11 +2466,6 @@ msgstr "Dominio"
msgid "Summary"
msgstr "Riepilogo"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3078,6 +3074,7 @@ msgstr "Contratto di manutenzione aggiunto !"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Campo"
@ -3146,7 +3143,6 @@ msgstr "Kazakistan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3676,8 +3672,6 @@ msgid "Signal (button Name)"
msgstr "Segnale (Nome Pulsante)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3938,6 +3932,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3948,11 +3943,6 @@ msgstr "Contatti"
msgid "Faroe Islands"
msgstr "Isole Fær Øer"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4342,11 +4332,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4460,6 +4445,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4582,13 +4572,6 @@ msgstr ""
msgid "iCal id"
msgstr "ID iCal"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Funzioni Partner"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4723,11 +4706,6 @@ msgstr "_Chiudi"
msgid "Full"
msgstr "Completo"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4968,6 +4946,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Aziende"
@ -5399,10 +5378,11 @@ msgid "Active Partner Events"
msgstr "Eventi Partner Attivi"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Registra Regole"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5696,8 +5676,6 @@ msgid "Martinique (French)"
msgstr "Martinica"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5963,6 +5941,11 @@ msgstr "Apri Report"
msgid "Rounding factor"
msgstr "Fattore di Arrotondamento"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6043,6 +6026,11 @@ msgstr "Valore Contesto"
msgid "Hour 00->24: %(h24)s"
msgstr "Formato Orario 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6062,7 +6050,6 @@ msgstr "Mese: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6130,6 +6117,11 @@ msgstr "Rif. Tabella"
msgid "Parent"
msgstr "Superiore"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6148,7 +6140,6 @@ msgstr "Superiore"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6868,6 +6859,17 @@ msgstr "ID oggetto"
msgid "Landscape"
msgstr "Orizzontale"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partner"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7088,11 +7090,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7215,11 +7212,6 @@ msgstr "Ricerca Avanzata"
msgid "Bank Accounts"
msgstr "Conti Bancari"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7315,12 +7307,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Qualifiche"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7398,6 +7384,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Cancella Autorizzazione"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7656,6 +7647,11 @@ msgstr "Wallis e Fortuna"
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "L'IVA non sembra essere corretta"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7805,6 +7801,12 @@ msgstr "La versione più recente"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Registra Regole"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8058,23 +8060,26 @@ msgstr "Russian / русский язык"
#~ msgid "Others Partners"
#~ msgstr "Altri Partner"
#~ msgid "Main Company"
#~ msgstr "Azienda Principale"
#~ msgid "Grant Access To Menus"
#~ msgstr "Concedere l'accesso ai Menu"
#~ msgid "Partner Functions"
#~ msgstr "Funzioni Partner"
#~ msgid "Customers Partners"
#~ msgstr "Partner Clienti"
#~ msgid "File Content"
#~ msgstr "Contenuto del file"
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Suppliers Partners"
#~ msgstr "Partner Fornitori"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "L'IVA non sembra essere corretta"
#~ msgid "Titles"
#~ msgstr "Qualifiche"
#~ msgid "Macedonia"
#~ msgstr "Macedonia"

View File

@ -7,20 +7,20 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-server\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-11-27 18:52+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-31 06:40+0000\n"
"Last-Translator: Teru <Unknown>\n"
"Language-Team: Japanese <ja@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-02-01 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
#: model:res.country,name:base.sh
msgid "Saint Helena"
msgstr ""
msgstr "セント・ヘレナ"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
@ -35,7 +35,7 @@ msgstr ""
#. module: base
#: field:ir.values,meta_unpickle:0
msgid "Metadata"
msgstr ""
msgstr "メタデータ"
#. module: base
#: field:ir.ui.view,arch:0
@ -52,19 +52,19 @@ msgstr ""
#. module: base
#: wizard_field:module.lang.import,init,code:0
msgid "Code (eg:en__US)"
msgstr ""
msgstr "コードen_US"
#. module: base
#: view:workflow:0
#: field:workflow.activity,wkf_id:0
#: field:workflow.instance,wkf_id:0
msgid "Workflow"
msgstr ""
msgstr "ワークフロー"
#. module: base
#: view:wizard.module.lang.export:0
msgid "To browse official translations, you can visit this link: "
msgstr ""
msgstr "公式の翻訳は、次のリンクで見ることができます: "
#. module: base
#: selection:module.lang.install,init,lang:0
@ -116,7 +116,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.kr
msgid "South Korea"
msgstr ""
msgstr "韓国"
#. module: base
#: model:ir.actions.act_window,name:base.action_workflow_transition_form
@ -133,7 +133,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.sz
msgid "Swaziland"
msgstr ""
msgstr "スワジランド"
#. module: base
#: model:ir.model,name:base.model_ir_actions_report_custom
@ -176,7 +176,7 @@ msgstr ""
#: code:addons/base/module/wizard/wizard_export_lang.py:0
#, python-format
msgid "new"
msgstr ""
msgstr "新規"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -242,7 +237,7 @@ msgstr ""
#. module: base
#: field:ir.actions.wizard,wiz_name:0
msgid "Wizard Name"
msgstr ""
msgstr "ウィザード名"
#. module: base
#: view:res.lang:0
@ -257,7 +252,7 @@ msgstr ""
#. module: base
#: help:ir.rule.group,rules:0
msgid "The rule is satisfied if at least one test is True"
msgstr ""
msgstr "このルールは、少なくとも一つのテストが通ることで満たされます。"
#. module: base
#: selection:ir.report.custom.fields,operation:0
@ -272,12 +267,12 @@ msgstr ""
#. module: base
#: field:ir.model.data,date_update:0
msgid "Update Date"
msgstr ""
msgstr "日を更新する"
#. module: base
#: field:ir.actions.act_window,src_model:0
msgid "Source Object"
msgstr ""
msgstr "ソース・オブジェクト"
#. module: base
#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
@ -295,14 +290,14 @@ msgstr ""
#: field:ir.model.access,group_id:0
#: field:ir.rule,rule_group:0
msgid "Group"
msgstr ""
msgstr "グループ"
#. module: base
#: field:ir.exports.line,name:0
#: field:ir.translation,name:0
#: field:res.partner.bank.type.field,name:0
msgid "Field Name"
msgstr ""
msgstr "フィールド名"
#. module: base
#: model:ir.actions.act_window,name:base.open_module_tree_uninstall
@ -313,7 +308,7 @@ msgstr ""
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "txt"
msgstr ""
msgstr "txt"
#. module: base
#: wizard_view:server.action.create,init:0
@ -324,7 +319,7 @@ msgstr ""
#. module: base
#: selection:ir.actions.todo,type:0
msgid "Configure"
msgstr ""
msgstr "設定する"
#. module: base
#: model:res.country,name:base.tv
@ -335,18 +330,18 @@ msgstr ""
#: selection:ir.model,state:0
#: selection:ir.model.grid,state:0
msgid "Custom Object"
msgstr ""
msgstr "カスタム・オブジェクト"
#. module: base
#: field:res.lang,date_format:0
msgid "Date Format"
msgstr ""
msgstr "日付の書式"
#. module: base
#: field:res.bank,email:0
#: field:res.partner.address,email:0
msgid "E-Mail"
msgstr ""
msgstr "eメール"
#. module: base
#: model:res.country,name:base.an
@ -386,7 +381,7 @@ msgstr ""
#. module: base
#: help:res.lang,iso_code:0
msgid "This ISO code is the name of po files to use for translations"
msgstr ""
msgstr "このISOコードが、翻訳に使うpoファイルの名前になります。"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -396,7 +391,7 @@ msgstr ""
#. module: base
#: field:ir.actions.todo,note:0
msgid "Text"
msgstr ""
msgstr "テキスト"
#. module: base
#: field:res.country,name:0
@ -404,14 +399,14 @@ msgid "Country Name"
msgstr "国名"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
msgstr "コロンビア"
#. module: base
#: view:ir.module.module:0
msgid "Schedule Upgrade"
msgstr ""
msgstr "スケジュール更新"
#. module: base
#: field:ir.actions.report.custom,report_id:0
@ -429,7 +424,7 @@ msgstr ""
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
msgid "Xor"
msgstr ""
msgstr "Xor"
#. module: base
#: view:res.partner:0
@ -440,7 +435,7 @@ msgstr ""
#: view:ir.actions.wizard:0
#: field:wizard.ir.model.menu.create.line,wizard_id:0
msgid "Wizard"
msgstr ""
msgstr "ウィザード"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -452,18 +447,18 @@ msgstr ""
#: view:ir.actions.wizard:0
#: model:ir.ui.menu,name:base.menu_ir_action_wizard
msgid "Wizards"
msgstr ""
msgstr "ウィザード"
#. module: base
#: selection:res.config.view,view:0
msgid "Extended Interface"
msgstr ""
msgstr "拡張インターフェース"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "Custom fields must have a name that starts with 'x_' !"
msgstr ""
msgstr "カスタム・フィールドは、x_で始まる名前を持っていなければなりません。"
#. module: base
#: help:ir.actions.server,action_id:0
@ -473,12 +468,12 @@ msgstr ""
#. module: base
#: view:wizard.module.lang.export:0
msgid "Export done"
msgstr ""
msgstr "エクスポート完了"
#. module: base
#: view:ir.model:0
msgid "Model Description"
msgstr ""
msgstr "モデルの説明"
#. module: base
#: field:workflow.transition,trigger_expr_id:0
@ -488,13 +483,13 @@ msgstr ""
#. module: base
#: model:res.country,name:base.jo
msgid "Jordan"
msgstr ""
msgstr "ヨルダン"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "You can not remove the model '%s' !"
msgstr ""
msgstr "あなたは、モデル %s を削除することができません。"
#. module: base
#: model:res.country,name:base.er
@ -525,7 +520,7 @@ msgstr ""
#. module: base
#: selection:ir.report.custom,type:0
msgid "Bar Chart"
msgstr ""
msgstr "棒グラフ"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -540,7 +535,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.rs
msgid "Serbia"
msgstr ""
msgstr "セルビア"
#. module: base
#: selection:ir.translation,type:0
@ -568,7 +563,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.pg
msgid "Papua New Guinea"
msgstr ""
msgstr "パプア・ニューギニア"
#. module: base
#: model:res.partner.category,name:base.res_partner_category_4
@ -588,13 +583,13 @@ msgstr ""
#. module: base
#: model:res.country,name:base.es
msgid "Spain"
msgstr ""
msgstr "スペイン"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
msgid "You may have to reinstall some language pack."
msgstr ""
msgstr "あなたは、いくつかの言語パックを再インストールしなければならないかもしれません。"
#. module: base
#: field:res.partner.address,mobile:0
@ -604,7 +599,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.om
msgid "Oman"
msgstr ""
msgstr "オマーン"
#. module: base
#: model:ir.actions.act_window,name:base.action_payterm_form
@ -631,12 +626,12 @@ msgstr ""
#: model:ir.actions.act_window,name:base.act_menu_create
#: view:wizard.ir.model.menu.create:0
msgid "Create Menu"
msgstr ""
msgstr "メニューを作成する"
#. module: base
#: model:res.country,name:base.in
msgid "India"
msgstr ""
msgstr "インド"
#. module: base
#: model:ir.model,name:base.model_maintenance_contract_module
@ -657,7 +652,7 @@ msgstr ""
#: field:ir.module.category,child_ids:0
#: field:res.partner.category,child_ids:0
msgid "Child Categories"
msgstr ""
msgstr "子カテゴリ"
#. module: base
#: selection:wizard.module.lang.export,format:0
@ -672,7 +667,7 @@ msgstr ""
#. module: base
#: view:res.lang:0
msgid "%B - Full month name."
msgstr ""
msgstr "%B - 月名"
#. module: base
#: field:ir.actions.report.xml,report_type:0
@ -682,7 +677,7 @@ msgstr ""
#: field:ir.values,key:0
#: view:res.partner:0
msgid "Type"
msgstr ""
msgstr "タイプ"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -728,6 +723,12 @@ msgstr ""
#. module: base
#: model:res.country,name:base.ir
msgid "Iran"
msgstr "イラン"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
@ -739,7 +740,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.td
msgid "Chad"
msgstr ""
msgstr "チャド"
#. module: base
#: selection:module.lang.install,init,lang:0
@ -749,7 +750,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.ug
msgid "Uganda"
msgstr ""
msgstr "ウガンダ"
#. module: base
#: model:res.country,name:base.ne
@ -759,7 +760,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.ba
msgid "Bosnia-Herzegovina"
msgstr ""
msgstr "ボスニア・ヘルツェゴビナ"
#. module: base
#: field:ir.report.custom.fields,alignment:0
@ -769,7 +770,7 @@ msgstr ""
#. module: base
#: selection:ir.rule,operator:0
msgid ">="
msgstr ""
msgstr ">="
#. module: base
#: view:res.lang:0
@ -793,17 +794,17 @@ msgstr ""
#: field:ir.module.module,website:0
#: field:res.partner,website:0
msgid "Website"
msgstr ""
msgstr "ウェブサイト"
#. module: base
#: field:ir.rule.group,rules:0
msgid "Tests"
msgstr ""
msgstr "テスト"
#. module: base
#: view:ir.module.repository:0
msgid "Repository"
msgstr ""
msgstr "リポジトリ"
#. module: base
#: model:res.country,name:base.gs
@ -823,12 +824,12 @@ msgstr ""
#. module: base
#: model:res.country,name:base.mh
msgid "Marshall Islands"
msgstr ""
msgstr "マーシャル諸島"
#. module: base
#: model:res.country,name:base.ht
msgid "Haiti"
msgstr ""
msgstr "ハイチ"
#. module: base
#: selection:ir.translation,type:0
@ -838,7 +839,7 @@ msgstr ""
#. module: base
#: selection:ir.ui.view,type:0
msgid "Search"
msgstr ""
msgstr "検索"
#. module: base
#: code:addons/base/ir/ir_report_custom.py:0
@ -859,7 +860,7 @@ msgstr ""
#. module: base
#: view:ir.module.module:0
msgid "Features"
msgstr ""
msgstr "特徴"
#. module: base
#: field:ir.report.custom,frequency:0
@ -937,12 +938,12 @@ msgstr ""
#: view:res.bank:0
#: field:res.partner.bank,bank:0
msgid "Bank"
msgstr ""
msgstr "銀行"
#. module: base
#: view:res.lang:0
msgid "Examples"
msgstr ""
msgstr "使用例"
#. module: base
#: field:ir.module.module,reports_by_module:0
@ -962,13 +963,13 @@ msgstr ""
#. module: base
#: field:ir.default,value:0
msgid "Default Value"
msgstr ""
msgstr "既定値"
#. module: base
#: wizard_field:res.partner.sms_send,init,user:0
#: field:res.users,login:0
msgid "Login"
msgstr ""
msgstr "ログイン"
#. module: base
#: view:maintenance.contract:0
@ -984,23 +985,8 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgstr ""
msgid "Model %s Does not Exist !"
msgstr "モデル %s がありません!"
#. module: base
#: code:addons/base/module/module.py:0
@ -1009,6 +995,8 @@ msgid ""
"You try to install the module '%s' that depends on the module:'%s'.\n"
"But this module is not available in your system."
msgstr ""
"あなたは、モジュール %s をインストールしようとしていて、そのモジュールは、モジュール %s に依存しています。\n"
"しかし、このモジュールは、あなたのシステムでは利用可能ではありません。"
#. module: base
#: model:ir.model,name:base.model_res_request_link
@ -1035,7 +1023,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.tp
msgid "East Timor"
msgstr ""
msgstr "東ティモール"
#. module: base
#: view:ir.rule:0
@ -1045,7 +1033,7 @@ msgstr ""
#. module: base
#: field:res.currency,accuracy:0
msgid "Computational Accuracy"
msgstr ""
msgstr "計算の精度"
#. module: base
#: model:res.country,name:base.kg
@ -1066,7 +1054,7 @@ msgstr ""
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "You can not read this document! (%s)"
msgstr ""
msgstr "あなたはこの文書を読むことができません!(%s)"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -1076,7 +1064,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.mv
msgid "Maldives"
msgstr ""
msgstr "モルディブ"
#. module: base
#: help:ir.values,res_id:0
@ -1096,6 +1084,14 @@ msgstr ""
#. module: base
#: field:ir.report.custom.fields,width:0
msgid "Fixed Width"
msgstr "固定幅"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
@ -1133,13 +1129,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1338,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1563,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1625,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1827,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1944,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2316,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2425,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3023,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3091,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3616,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3876,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3887,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4272,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4385,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4509,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4643,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4882,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5313,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5611,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5872,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5957,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5981,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6046,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6069,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6777,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7005,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7127,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7219,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7292,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7553,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7702,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:47+0000\n"
"Last-Translator: ekodaq <ceo@ekosdaq.com>\n"
"Language-Team: Korean <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -199,11 +199,6 @@ msgstr ""
msgid "Number of Modules"
msgstr "모듈 수"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -410,7 +405,7 @@ msgid "Country Name"
msgstr "국가 이름"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -736,6 +731,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -992,22 +993,7 @@ msgstr "재고_복사"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1106,6 +1092,14 @@ msgstr "일"
msgid "Fixed Width"
msgstr "고정폭"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1141,14 +1135,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "파트너"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1358,6 +1347,11 @@ msgstr "갱신된 모듈들의 수"
msgid "Groups"
msgstr "그룹"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1580,6 +1574,12 @@ msgstr "값"
msgid "Field Mappings"
msgstr "필드 매핑"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1636,11 +1636,6 @@ msgstr "%p - AM 또는 PM의 등가물"
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1843,11 +1838,6 @@ msgstr "접근 컨트롤"
msgid "Dependencies"
msgstr "의존성"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "메인 기업"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1965,6 +1955,12 @@ msgstr "필드 매핑"
msgid "Module"
msgstr "모듈"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2335,11 +2331,6 @@ msgstr "품질 증명"
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2452,11 +2443,6 @@ msgstr "도메인"
msgid "Summary"
msgstr "요약"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3060,6 +3046,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3127,7 +3114,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3653,8 +3639,6 @@ msgid "Signal (button Name)"
msgstr "신호 (버튼 이름)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3915,6 +3899,7 @@ msgid "On Multiple Doc."
msgstr "여러 문서 상"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3925,11 +3910,6 @@ msgstr "연락처"
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4316,11 +4296,6 @@ msgstr "오브젝트 필드"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4436,6 +4411,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4555,13 +4535,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "파트너 기능"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4698,11 +4671,6 @@ msgstr "닫기 (C)"
msgid "Full"
msgstr "전부"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4942,6 +4910,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "회사"
@ -5372,10 +5341,11 @@ msgid "Active Partner Events"
msgstr "활성 파트너 이벤트"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "레코드 규칙"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5669,8 +5639,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5932,6 +5900,11 @@ msgstr "리포트 오픈"
msgid "Rounding factor"
msgstr "반올림 펙터"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6012,6 +5985,11 @@ msgstr "문맥 값"
msgid "Hour 00->24: %(h24)s"
msgstr "시간 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6031,7 +6009,6 @@ msgstr "월: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6099,6 +6076,11 @@ msgstr "테이블 참조"
msgid "Parent"
msgstr "부모"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6117,7 +6099,6 @@ msgstr "부모"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6829,6 +6810,17 @@ msgstr "오브젝트 ID"
msgid "Landscape"
msgstr "랜드스케이프"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "파트너"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7046,11 +7038,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr "두번 째 필드는 숫자여야 합니다."
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7173,11 +7160,6 @@ msgstr "고급 검색"
msgid "Bank Accounts"
msgstr "은행 계정"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7271,12 +7253,6 @@ msgstr "여러 문서 상의 액션"
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "제목"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7353,6 +7329,11 @@ msgstr ""
msgid "Delete Permission"
msgstr "퍼미션 삭제"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7609,6 +7590,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "VAT가 올바르지 않습니다."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7755,6 +7741,12 @@ msgstr "최종 버전"
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "레코드 규칙"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8033,6 +8025,9 @@ msgstr ""
#~ msgid "HR sector"
#~ msgstr "HR 섹터"
#~ msgid "Main Company"
#~ msgstr "메인 기업"
#, python-format
#~ msgid "Please check that all your lines have %d columns."
#~ msgstr "모든 라인이 %d 칼럼을 가지는 지 체크하십시오."
@ -8099,6 +8094,9 @@ msgstr ""
#~ msgid "The copy method is not implemented on this object !"
#~ msgstr "복사 메쏘드는 이 오브젝트에 적용되지 않습니다."
#~ msgid "Partner Functions"
#~ msgstr "파트너 기능"
#, python-format
#~ msgid "You cannot perform this operation."
#~ msgstr "귀하는 이 오퍼레이션을 수행할 수 없습니다."
@ -8146,13 +8144,13 @@ msgstr ""
#~ msgid "Bad query."
#~ msgstr "잘못된 질의"
#~ msgid "Titles"
#~ msgstr "제목"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "이 검색 방식은 이 오브젝트에 적용되지 않음!"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "VAT가 올바르지 않습니다."
#~ msgid "IT sector"
#~ msgstr "IT 섹터"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-30 08:32+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -729,6 +724,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,13 +1126,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1346,6 +1335,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1566,6 +1560,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1622,11 +1622,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1829,11 +1824,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1951,6 +1941,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2317,11 +2313,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2431,11 +2422,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3034,6 +3020,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3101,7 +3088,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3627,8 +3613,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3889,6 +3873,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3899,11 +3884,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4289,11 +4269,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4407,6 +4382,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4526,13 +4506,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4667,11 +4640,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4911,6 +4879,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5341,9 +5310,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5638,8 +5608,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5901,6 +5869,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5981,6 +5954,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6000,7 +5978,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6066,6 +6043,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6084,7 +6066,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6793,6 +6774,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7010,11 +7002,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7137,11 +7124,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7234,12 +7216,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7313,6 +7289,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7569,6 +7550,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7713,6 +7699,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -972,21 +972,7 @@ msgstr ""
#. module: base
#: code:addons/addons/base/ir/ir_model.py:0
#, python-format
msgid "Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-15 06:30+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-04 06:03+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: Latvian <lv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -200,11 +200,6 @@ msgstr "Daudziem doc."
msgid "Number of Modules"
msgstr "Moduļu Skaits"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -322,7 +317,7 @@ msgstr "Neuzstādītie moduļi"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "txt"
msgstr ""
msgstr "txt"
#. module: base
#: wizard_view:server.action.create,init:0
@ -417,7 +412,7 @@ msgid "Country Name"
msgstr "Valsts Nosaukums"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbija"
@ -746,6 +741,12 @@ msgstr "Kaimanu Salas"
msgid "Iran"
msgstr "Irāna"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -858,7 +859,7 @@ msgstr "RML"
#. module: base
#: selection:ir.ui.view,type:0
msgid "Search"
msgstr ""
msgstr "Meklēt"
#. module: base
#: code:addons/base/ir/ir_report_custom.py:0
@ -1007,22 +1008,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1121,6 +1107,14 @@ msgstr "Dienas"
msgid "Fixed Width"
msgstr "Fiksēts Platums"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1156,14 +1150,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneri"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1376,6 +1365,11 @@ msgstr "Jaunināto moduļu skaits"
msgid "Groups"
msgstr "Grupas"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1605,6 +1599,12 @@ msgstr "Vērtības"
msgid "Field Mappings"
msgstr "Lauka Sasaistes"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1661,11 +1661,6 @@ msgstr "%p - Ekvivalents AM vai PM."
msgid "Iteration Actions"
msgstr "Atkārtošanas Darbības"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1868,11 +1863,6 @@ msgstr "Pieejas Kontrole"
msgid "Dependencies"
msgstr "Atkarīgie objekti"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Galvenais Uzņēmums"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1994,6 +1984,12 @@ msgstr "Lauka Sasaistes"
msgid "Module"
msgstr "Modulis"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2366,11 +2362,6 @@ msgstr "Kvalitātes Sertifikāts"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2486,11 +2477,6 @@ msgstr "Domēns"
msgid "Summary"
msgstr "Kopsavilkums"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3106,6 +3092,7 @@ msgstr "Servisa līgums pievienots!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Lauks"
@ -3175,7 +3162,6 @@ msgstr "Kazahstāna"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3196,7 +3182,7 @@ msgstr "Montserrata"
#. module: base
#: model:ir.ui.menu,name:base.menu_translation_app
msgid "Application Terms"
msgstr "Izmantotie nosacījumi"
msgstr "Izmantotie Termini"
#. module: base
#: selection:ir.report.custom.fields,operation:0
@ -3703,8 +3689,6 @@ msgid "Signal (button Name)"
msgstr "Signāls (pogas Nosaukums)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3967,6 +3951,7 @@ msgid "On Multiple Doc."
msgstr "Daudziem Dokumentiem"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3977,11 +3962,6 @@ msgstr "Kontakti"
msgid "Faroe Islands"
msgstr "Fēru Salas"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4371,11 +4351,6 @@ msgstr "Objekta Lauks"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4492,6 +4467,11 @@ msgstr "Nigērija"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4615,13 +4595,6 @@ msgstr "Nepāla"
msgid "iCal id"
msgstr "iCal id"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Amats"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4758,11 +4731,6 @@ msgstr "_Aizvērt"
msgid "Full"
msgstr "Pilns"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5004,6 +4972,7 @@ msgstr "Gambija"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Uzņēmumi"
@ -5438,10 +5407,11 @@ msgid "Active Partner Events"
msgstr "Aktīvie Partnera Notikumi"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Ierakstu Noteikumi"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5737,8 +5707,6 @@ msgid "Martinique (French)"
msgstr "Martinika"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6003,6 +5971,11 @@ msgstr "Atvērt Atskaiti"
msgid "Rounding factor"
msgstr "Noapaļošanas faktors"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6083,6 +6056,11 @@ msgstr "Konteksta Vērtība"
msgid "Hour 00->24: %(h24)s"
msgstr "Stunda 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6102,7 +6080,6 @@ msgstr "Mēnesis: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6170,6 +6147,11 @@ msgstr "Tabulas Atsauce"
msgid "Parent"
msgstr "Virs"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6188,7 +6170,6 @@ msgstr "Virs"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6908,6 +6889,17 @@ msgstr "Objekta ID"
msgid "Landscape"
msgstr "Horizontāli"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneri"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7128,11 +7120,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Otrajam laukam jābūt kā attēlam"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7255,11 +7242,6 @@ msgstr "Paplašinātā Meklēšana"
msgid "Bank Accounts"
msgstr "Bankas Konts"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7356,12 +7338,6 @@ msgstr "Darbība ar vairākiem Dok."
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Uzrunas"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7439,6 +7415,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Dzēst Pieeju"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7696,6 +7677,11 @@ msgstr "Volisa un Futuna"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "Liekas, ka PVN aprēķināts nepareizi."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7847,6 +7833,12 @@ msgstr "Jaunākā versija"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Ierakstu Noteikumi"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8134,6 +8126,9 @@ msgstr "Krievu / русский язык"
#~ msgid "HR sector"
#~ msgstr "HR Sektors"
#~ msgid "Main Company"
#~ msgstr "Galvenais Uzņēmums"
#, python-format
#~ msgid "Please check that all your lines have %d columns."
#~ msgstr "Lūdzu pārbaudiet, lai visām rindām būtu attiecīgas %d kolonnas."
@ -8208,6 +8203,9 @@ msgstr "Krievu / русский язык"
#~ msgid "The copy method is not implemented on this object !"
#~ msgstr "copy funkcija nav ieviesta šim objektam!"
#~ msgid "Partner Functions"
#~ msgstr "Amats"
#, python-format
#~ msgid "You cannot perform this operation."
#~ msgstr "Nevar veikt šo operāciju."
@ -8245,9 +8243,6 @@ msgstr "Krievu / русский язык"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "Kļūda! Nevar izveidot rekursīvus asociētos locekļus."
#~ msgid "res.company"
#~ msgstr "res.company"
#, python-format
#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection"
#~ msgstr "Lauka \"%s\" vērtība \"%s\" nav atlasījumā."
@ -8266,13 +8261,13 @@ msgstr "Krievu / русский язык"
#~ msgid "Bad query."
#~ msgstr "Nepareizs pieprasījums."
#~ msgid "Titles"
#~ msgstr "Uzrunas"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "Meklēšanas funkcija nav ieviesta šim objektam!"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "Liekas, ka PVN aprēķināts nepareizi."
#~ msgid "IT sector"
#~ msgstr "IT sektors"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-01 06:09+0000\n"
"Last-Translator: Munkhbayar Batkhuu <bmr333@gmail.com>\n"
"Language-Team: Mongolian <mn@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -404,7 +399,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -730,6 +725,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -984,22 +985,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1098,6 +1084,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1133,13 +1127,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1336,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-16 08:24+0000\n"
"Last-Translator: Pieter J. Kersten (EduSense BV) <Unknown>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-24 06:52+0000\n"
"Last-Translator: mra (Open ERP) <mra@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-17 04:43+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -200,11 +200,6 @@ msgstr "Op meerdere doc."
msgid "Number of Modules"
msgstr "Aantal modules"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr "Bedrijf om het huidige record op te slaan"
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -421,7 +416,7 @@ msgid "Country Name"
msgstr "Naam land"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colombia"
@ -750,6 +745,12 @@ msgstr "Kaaimaneilanden"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1010,38 +1011,8 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgstr ""
"Model %s bestaat niet !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr "Model %s bestaat niet !"
#. module: base
#: code:addons/base/module/module.py:0
@ -1141,6 +1112,14 @@ msgstr "Dagen"
msgid "Fixed Width"
msgstr "Vaste breedte"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1176,14 +1155,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Relaties"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1400,6 +1374,11 @@ msgstr "Aantal bijgewerkte modules"
msgid "Groups"
msgstr "Groepen"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1629,6 +1608,12 @@ msgstr "Waarden"
msgid "Field Mappings"
msgstr "Veldverwijzingen"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1685,11 +1670,6 @@ msgstr "%p - Equivalent van AM of PM"
msgid "Iteration Actions"
msgstr "Repeterende acties"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "Bedrijf verbonden aan deze gebruiker"
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1892,11 +1872,6 @@ msgstr "Toegangsrechten"
msgid "Dependencies"
msgstr "Afhankelijkheden"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Moederorganisatie"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -2016,6 +1991,12 @@ msgstr "Veldkoppelingen"
msgid "Module"
msgstr "Module"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2388,11 +2369,6 @@ msgstr "Kwaliteitscertificaat"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d. %m ==> 05. 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr "Expressie, dient 'Waar' te zijn om te matchen"
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2508,11 +2484,6 @@ msgstr "Domein"
msgid "Summary"
msgstr "Samenvatting"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Expressie"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3127,6 +3098,7 @@ msgstr "Onderhoudscontract toegevoegd !"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Veld"
@ -3196,7 +3168,6 @@ msgstr "Kazachstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3731,8 +3702,6 @@ msgid "Signal (button Name)"
msgstr "Signaal (naam knop)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3998,6 +3967,7 @@ msgid "On Multiple Doc."
msgstr "Op meerdere doc."
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -4008,11 +3978,6 @@ msgstr "Contactpersonen"
msgid "Faroe Islands"
msgstr "Faeröereilanden"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "Object onderworpen aan deze regels"
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4403,11 +4368,6 @@ msgstr "Objectveld"
msgid "French (CH) / Français (CH)"
msgstr "Frans (CH) / Français (CH)"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Lijst van bedrijf"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4524,6 +4484,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4647,13 +4612,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "iCal id"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Functies relatie"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4790,11 +4748,6 @@ msgstr "_Sluiten"
msgid "Full"
msgstr "Volledig"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Standaard bedrijf"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5036,6 +4989,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Bedrijven"
@ -5470,10 +5424,11 @@ msgid "Active Partner Events"
msgstr "Actieve gebeurtenissen relatie"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Record-regels"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5769,8 +5724,6 @@ msgid "Martinique (French)"
msgstr "Martinique"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6040,6 +5993,11 @@ msgstr "Open overzicht"
msgid "Rounding factor"
msgstr "Afrondingsfactor"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6120,6 +6078,11 @@ msgstr "Contextwaarde"
msgid "Hour 00->24: %(h24)s"
msgstr "Uur 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6139,7 +6102,6 @@ msgstr "Maand %(maand)en"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6207,6 +6169,11 @@ msgstr "Tabelref."
msgid "Parent"
msgstr "Bovenliggend"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6225,7 +6192,6 @@ msgstr "Bovenliggend"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6948,6 +6914,17 @@ msgstr "Object ID"
msgid "Landscape"
msgstr "Liggend"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Relaties"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7168,11 +7145,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Tweede veld zouden figuren moeten zijn"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Benoem het om een record makkelijk terug te vinden"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7295,11 +7267,6 @@ msgstr "Uitgebreid zoeken"
msgid "Bank Accounts"
msgstr "Bankrekeningen"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Standaard meerdere bedrijven"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7397,12 +7364,6 @@ msgstr "Actie op meerdere doc."
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Titels"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7480,6 +7441,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Toestemming verwijderen"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7738,6 +7704,11 @@ msgstr "Wallis en Futuna-eilanden"
msgid "Rwanda"
msgstr "Rwanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "De BTW lijkt niet correct te zijn."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7889,6 +7860,12 @@ msgstr "Laatste versie"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Record-regels"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8131,3 +8108,39 @@ msgstr "Sri Lanka"
#: selection:module.lang.install,init,lang:0
msgid "Russian / русский язык"
msgstr "Russisch / русский язык"
#~ msgid "Main Company"
#~ msgstr "Moederorganisatie"
#~ msgid "Titles"
#~ msgstr "Titels"
#~ msgid "Company to store the current record"
#~ msgstr "Bedrijf om het huidige record op te slaan"
#~ msgid "Company where the user is connected"
#~ msgstr "Bedrijf verbonden aan deze gebruiker"
#~ msgid "Expression, must be True to match"
#~ msgstr "Expressie, dient 'Waar' te zijn om te matchen"
#~ msgid "Expression"
#~ msgstr "Expressie"
#~ msgid "Object affect by this rules"
#~ msgstr "Object onderworpen aan deze regels"
#~ msgid "Default Company"
#~ msgstr "Standaard bedrijf"
#~ msgid "Name it to easily find a record"
#~ msgstr "Benoem het om een record makkelijk terug te vinden"
#~ msgid "List of Company"
#~ msgstr "Lijst van bedrijf"
#~ msgid "Partner Functions"
#~ msgstr "Functies relatie"
#~ msgid "Default multi company"
#~ msgstr "Standaard meerdere bedrijven"

View File

@ -1018,21 +1018,7 @@ msgstr "STOCK_COPY"
#: code:addons/addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
"Model %s Does not Exist !"
msgstr ""
#. module: base

View File

@ -1029,21 +1029,7 @@ msgstr "STOCK_COPY"
#: code:addons/addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
"Model %s Does not Exist !"
msgstr ""
#. module: base

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-12 06:10+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -199,11 +199,6 @@ msgstr "Na wielu dok."
msgid "Number of Modules"
msgstr "Liczba modułów"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -416,7 +411,7 @@ msgid "Country Name"
msgstr "Nazwa kraju"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbia"
@ -745,6 +740,12 @@ msgstr "Wyspy Kajmany"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1005,22 +1006,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1121,6 +1107,14 @@ msgstr "Dni"
msgid "Fixed Width"
msgstr "Ustalona szerokość"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1156,14 +1150,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerzy"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1379,6 +1368,11 @@ msgstr "Liczba zaktualizowanych modułów"
msgid "Groups"
msgstr "Grupy"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1610,6 +1604,12 @@ msgstr "Wartości"
msgid "Field Mappings"
msgstr "Mapowanie pól"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1666,11 +1666,6 @@ msgstr "%p - Ekwiwalent AM lub PM."
msgid "Iteration Actions"
msgstr "Akcje iteracyjne"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "Firma, do której użytkownik jest podłączony"
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1873,11 +1868,6 @@ msgstr "Prawa dostępu"
msgid "Dependencies"
msgstr "Zależności"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Główna firma"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1997,6 +1987,12 @@ msgstr "Mapowania pola."
msgid "Module"
msgstr "Moduł"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2369,11 +2365,6 @@ msgstr "Certyfikat jakości"
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr "Wyrażenie, musi być Prawdą aby było spełnione"
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2489,11 +2480,6 @@ msgstr "Domena"
msgid "Summary"
msgstr "Podsumowanie"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Wyrażenie"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3106,6 +3092,7 @@ msgstr "Dodano umowę konserwacyjną !"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Pole"
@ -3173,7 +3160,6 @@ msgstr "Kazachstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3707,8 +3693,6 @@ msgid "Signal (button Name)"
msgstr "Przywołanie (nazwa przycisku)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3971,6 +3955,7 @@ msgid "On Multiple Doc."
msgstr "Na wielu dok."
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3981,11 +3966,6 @@ msgstr "Kontakty"
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "Obiekt podlegający tej regule"
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4373,11 +4353,6 @@ msgstr "Pole obiektu"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Lista firm"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4494,6 +4469,11 @@ msgstr "Nigeria"
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4617,13 +4597,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Funkcje partnera"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4760,11 +4733,6 @@ msgstr "_Zamknij"
msgid "Full"
msgstr "Pełna"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Domyślna firma"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5005,6 +4973,7 @@ msgstr "Gambia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Firmy"
@ -5440,10 +5409,11 @@ msgid "Active Partner Events"
msgstr "Aktywne zdarzenia partnera"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Reguły rekordu"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5740,8 +5710,6 @@ msgid "Martinique (French)"
msgstr "Martynika (Francja)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6011,6 +5979,11 @@ msgstr "Otwórz raport"
msgid "Rounding factor"
msgstr "Zaokrąglenie"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6091,6 +6064,11 @@ msgstr "Wartość kontekstowa"
msgid "Hour 00->24: %(h24)s"
msgstr "Godzina 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6110,7 +6088,6 @@ msgstr "Miesiąc: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6178,6 +6155,11 @@ msgstr "Odn. tabeli"
msgid "Parent"
msgstr "Nadrzędna"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6196,7 +6178,6 @@ msgstr "Nadrzędna"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6919,6 +6900,17 @@ msgstr "ID obiektu"
msgid "Landscape"
msgstr "Poziomo"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerzy"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7139,11 +7131,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr "Drugie pole powinno być wyliczeniem"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Nazwij to, aby łątwiej odszukać rekord"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7266,11 +7253,6 @@ msgstr "Wyszukiwanie zaawansowane"
msgid "Bank Accounts"
msgstr "Konta bankowe"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Domyślna firma w wielofirmowości"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7367,12 +7349,6 @@ msgstr "Akcja na wielu dokumentach"
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Tytuły"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7450,6 +7426,11 @@ msgstr ""
msgid "Delete Permission"
msgstr "Prawo usuwania"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7708,6 +7689,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7860,6 +7846,12 @@ msgstr "Ostatnia wersja"
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Reguły rekordu"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8439,6 +8431,9 @@ msgstr ""
#~ "Selected Move lines does not have any account move enties in draft state"
#~ msgstr "Wybrane pozycje zmian stanu konta nie mają zapisów w stanie projekt"
#~ msgid "Main Company"
#~ msgstr "Główna firma"
#, python-format
#~ msgid "Please create an invoice for this sale."
#~ msgstr "Przoszę utworzyć fakturę dla tej sprzedaży."
@ -8883,3 +8878,33 @@ msgstr ""
#, python-format
#~ msgid "Futur Stock"
#~ msgstr "Przyszły zapas"
#~ msgid "Default Company"
#~ msgstr "Domyślna firma"
#~ msgid "Titles"
#~ msgstr "Tytuły"
#~ msgid "List of Company"
#~ msgstr "Lista firm"
#~ msgid "Name it to easily find a record"
#~ msgstr "Nazwij to, aby łątwiej odszukać rekord"
#~ msgid "Partner Functions"
#~ msgstr "Funkcje partnera"
#~ msgid "Company where the user is connected"
#~ msgstr "Firma, do której użytkownik jest podłączony"
#~ msgid "Expression"
#~ msgstr "Wyrażenie"
#~ msgid "Expression, must be True to match"
#~ msgstr "Wyrażenie, musi być Prawdą aby było spełnione"
#~ msgid "Object affect by this rules"
#~ msgstr "Obiekt podlegający tej regule"
#~ msgid "Default multi company"
#~ msgstr "Domyślna firma w wielofirmowości"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-13 06:37+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-19 06:22+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:02+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -199,11 +199,6 @@ msgstr "Em múltiplos documentos"
msgid "Number of Modules"
msgstr "Número de Módolos"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr "Companhia para guardar o registo actual"
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -417,7 +412,7 @@ msgid "Country Name"
msgstr "Nome do país"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Colômbia"
@ -746,6 +741,12 @@ msgstr "Ilhas Caimão"
msgid "Iran"
msgstr "Irão"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1006,38 +1007,8 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgstr ""
"O modelo %s não existe!\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr "O modelo %s não existe!"
#. module: base
#: code:addons/base/module/module.py:0
@ -1137,6 +1108,14 @@ msgstr "Dias"
msgid "Fixed Width"
msgstr "Largura fixa"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1172,14 +1151,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Terceiros"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1396,6 +1370,11 @@ msgstr "Numero de módulos actualizados"
msgid "Groups"
msgstr "Grupos"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1625,6 +1604,12 @@ msgstr "Valores"
msgid "Field Mappings"
msgstr "Mapeamento de campos"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1681,11 +1666,6 @@ msgstr "%p - Equivalente do AM or PM."
msgid "Iteration Actions"
msgstr "Acções de iteração"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr "A companhia à qual o utilizador está ligado"
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1888,11 +1868,6 @@ msgstr "Controlos de Acesso"
msgid "Dependencies"
msgstr "Dependências"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Empresa principal"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -2012,6 +1987,12 @@ msgstr "Mapeamento de campos"
msgid "Module"
msgstr "Módulo"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2384,11 +2365,6 @@ msgstr "Certificado de qualidade"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr "Expressão, deve ser verdadeira para coincidir"
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2504,11 +2480,6 @@ msgstr "Domínio"
msgid "Summary"
msgstr "Sumário"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr "Expressão"
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3121,6 +3092,7 @@ msgstr "Contrato da manutenção adicionado!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Campo"
@ -3189,7 +3161,6 @@ msgstr "Cazaquistão"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3722,8 +3693,6 @@ msgid "Signal (button Name)"
msgstr "Sinal (nome do botão)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3986,6 +3955,7 @@ msgid "On Multiple Doc."
msgstr "Em múltiplos docs"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3996,11 +3966,6 @@ msgstr "Contactos"
msgid "Faroe Islands"
msgstr "Ilhas Faroé"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr "Objecto afectado por estas regras"
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4388,11 +4353,6 @@ msgstr "Campo do objecto"
msgid "French (CH) / Français (CH)"
msgstr "Francês (CH) / Français (CH)"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr "Lista de companhias"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4509,6 +4469,11 @@ msgstr "Nigéria"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4631,13 +4596,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "iCal id"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Funcões do terceiro"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4774,11 +4732,6 @@ msgstr "_Fechar"
msgid "Full"
msgstr "Completo"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr "Companhia pré-definida"
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -5020,6 +4973,7 @@ msgstr "Gâmbia"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Empresas"
@ -5458,10 +5412,11 @@ msgid "Active Partner Events"
msgstr "Eventos de terceiros activos"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Gravar regras"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5757,8 +5712,6 @@ msgid "Martinique (French)"
msgstr "Martinica (França)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6027,6 +5980,11 @@ msgstr "Abrir relatório"
msgid "Rounding factor"
msgstr "Factor de arredondamento"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6107,6 +6065,11 @@ msgstr "Valor do contexto"
msgid "Hour 00->24: %(h24)s"
msgstr "Hora 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6126,7 +6089,6 @@ msgstr "Mês: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6194,6 +6156,11 @@ msgstr "Referencia da tabela"
msgid "Parent"
msgstr "Pai"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6212,7 +6179,6 @@ msgstr "Pai"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6933,6 +6899,17 @@ msgstr "ID do objecto"
msgid "Landscape"
msgstr "Paisagem"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Terceiros"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7153,11 +7130,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "O segundo campo deve ser algarismos"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr "Atribua nomes para encontrar facilmente os registos"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7280,11 +7252,6 @@ msgstr "Procura avançada"
msgid "Bank Accounts"
msgstr "Contas bancarias"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr "Multi-companhia pre-definida"
#. module: base
#: view:res.request:0
msgid "Send"
@ -7382,12 +7349,6 @@ msgstr "Acção em multiplos documentos."
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Títulos"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7465,6 +7426,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Apagar permissão"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7722,6 +7688,11 @@ msgstr "Ilhas Wallis e Futuna"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "O IVA não parece estar correcto."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7874,6 +7845,12 @@ msgstr "Ultima versão"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Gravar regras"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8125,9 +8102,15 @@ msgstr "Russo / русский язык"
#~ msgid "Others Partners"
#~ msgstr "Outros terceiros"
#~ msgid "Main Company"
#~ msgstr "Empresa principal"
#~ msgid "Grant Access To Menus"
#~ msgstr "Permitir acesso ao menu"
#~ msgid "Partner Functions"
#~ msgstr "Funcões do terceiro"
#~ msgid "Customers Partners"
#~ msgstr "Terceiros clientes"
@ -8137,8 +8120,8 @@ msgstr "Russo / русский язык"
#~ msgid "Suppliers Partners"
#~ msgstr "Terceiros fornecedores"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "O IVA não parece estar correcto."
#~ msgid "Titles"
#~ msgstr "Títulos"
#, python-format
#~ msgid "No journal for ending writing has been defined for the fiscal year"
@ -8147,3 +8130,30 @@ msgstr "Russo / русский язык"
#, python-format
#~ msgid "The unlink method is not implemented on this object !"
#~ msgstr "O método remover (unlink) não está implementado neste objecto!"
#~ msgid "Company to store the current record"
#~ msgstr "Companhia para guardar o registo actual"
#~ msgid "Expression"
#~ msgstr "Expressão"
#~ msgid "Default Company"
#~ msgstr "Companhia pré-definida"
#~ msgid "Name it to easily find a record"
#~ msgstr "Atribua nomes para encontrar facilmente os registos"
#~ msgid "Company where the user is connected"
#~ msgstr "A companhia à qual o utilizador está ligado"
#~ msgid "Expression, must be True to match"
#~ msgstr "Expressão, deve ser verdadeira para coincidir"
#~ msgid "Object affect by this rules"
#~ msgstr "Objecto afectado por estas regras"
#~ msgid "List of Company"
#~ msgstr "Lista de companhias"
#~ msgid "Default multi company"
#~ msgstr "Multi-companhia pre-definida"

File diff suppressed because it is too large Load Diff

View File

@ -6,20 +6,20 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-11-30 08:49+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-21 06:09+0000\n"
"Last-Translator: Valentin Caragea <carageav@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:02+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
#: model:res.country,name:base.sh
msgid "Saint Helena"
msgstr ""
msgstr "Sfanta Elena"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
@ -29,71 +29,72 @@ msgstr "SMS - Gateway: clickatell"
#. module: base
#: view:res.lang:0
msgid "%j - Day of the year as a decimal number [001,366]."
msgstr ""
msgstr "%j - Ziua anului ca numar zecimal [001,366]"
#. module: base
#: field:ir.values,meta_unpickle:0
msgid "Metadata"
msgstr ""
msgstr "Metadata"
#. module: base
#: field:ir.ui.view,arch:0
#: field:ir.ui.view.custom,arch:0
msgid "View Architecture"
msgstr "Architectura vederii (view)"
msgstr "Alcatuirea afisarii"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "You can not create this kind of document! (%s)"
msgstr ""
msgstr "Nu puteti crea acest tip de document! (%s)"
#. module: base
#: wizard_field:module.lang.import,init,code:0
msgid "Code (eg:en__US)"
msgstr ""
msgstr "Cod (eg:en__US)"
#. module: base
#: view:workflow:0
#: field:workflow.activity,wkf_id:0
#: field:workflow.instance,wkf_id:0
msgid "Workflow"
msgstr "Workflow"
msgstr "Flux"
#. module: base
#: view:wizard.module.lang.export:0
msgid "To browse official translations, you can visit this link: "
msgstr ""
"Pentru a naviga printre traducerile oficiale, puteti vizita acest link: "
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Hungarian / Magyar"
msgstr ""
msgstr "Maghiara / Magyar"
#. module: base
#: field:ir.actions.server,wkf_model_id:0
msgid "Workflow On"
msgstr ""
msgstr "Activare Flux"
#. module: base
#: view:ir.module.module:0
msgid "Created Views"
msgstr ""
msgstr "Afisari Create"
#. module: base
#: view:workflow.activity:0
msgid "Outgoing transitions"
msgstr ""
msgstr "Tranzitii iesire"
#. module: base
#: selection:ir.report.custom,frequency:0
msgid "Yearly"
msgstr ""
msgstr "Anual"
#. module: base
#: field:ir.actions.act_window,target:0
msgid "Target Window"
msgstr ""
msgstr "Fereastra tinta"
#. module: base
#: model:ir.actions.todo,note:base.config_wizard_simple_view
@ -106,102 +107,103 @@ msgid ""
"understand. You will be able to switch to the extended view later.\n"
" "
msgstr ""
"Alegeti intre \"Interfata Simplificata\" sau cea extinsa.\n"
"Daca utilizati pentru prima data, sau doriti sa testati OpenERP\n"
"pentru prima data, va sugeram sa folositi Interfata Simplificata,\n"
"care are mai putine optiuni si campuri, dar este mult mai usor de inteles.\n"
"Puteti sa schimbati mai tarziu in cea extinsa.\n"
" "
#. module: base
#: field:ir.rule,operand:0
msgid "Operand"
msgstr ""
msgstr "Operand"
#. module: base
#: model:res.country,name:base.kr
msgid "South Korea"
msgstr ""
msgstr "Coreea de Sud"
#. module: base
#: model:ir.actions.act_window,name:base.action_workflow_transition_form
#: model:ir.ui.menu,name:base.menu_workflow_transition
#: view:workflow.activity:0
msgid "Transitions"
msgstr ""
msgstr "Tranzitii"
#. module: base
#: model:ir.model,name:base.model_ir_ui_view_custom
msgid "ir.ui.view.custom"
msgstr ""
msgstr "ir.ui.view.custom"
#. module: base
#: model:res.country,name:base.sz
msgid "Swaziland"
msgstr ""
msgstr "Elvetia"
#. module: base
#: model:ir.model,name:base.model_ir_actions_report_custom
#: selection:ir.ui.menu,action:0
msgid "ir.actions.report.custom"
msgstr ""
msgstr "ir.actions.report.custom"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_CANCEL"
msgstr ""
msgstr "STOCK_CANCEL"
#. module: base
#: field:ir.report.custom,sortby:0
msgid "Sorted By"
msgstr "Sorteaza"
msgstr "Sortat dupa"
#. module: base
#: field:ir.sequence,number_increment:0
msgid "Increment Number"
msgstr "Incrementare numar"
msgstr "Increment"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_tree
#: model:ir.ui.menu,name:base.menu_action_res_company_tree
msgid "Company's Structure"
msgstr ""
msgstr "Structura Companiei"
#. module: base
#: model:ir.model,name:base.model_ir_report_custom_fields
msgid "ir.report.custom.fields"
msgstr ""
msgstr "ir.report.custom.fields"
#. module: base
#: view:res.partner:0
msgid "Search Partner"
msgstr ""
msgstr "Cautare Partener"
#. module: base
#: code:addons/base/module/wizard/wizard_export_lang.py:0
#, python-format
msgid "new"
msgstr ""
msgstr "nou"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_GOTO_TOP"
msgstr ""
msgstr "STOCK_GOTO_TOP"
#. module: base
#: field:ir.actions.report.custom,multi:0
#: field:ir.actions.report.xml,multi:0
msgid "On multiple doc."
msgstr ""
msgstr "In documente multiple"
#. module: base
#: field:ir.module.category,module_nr:0
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
msgstr "Numar de Module"
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
msgstr ""
msgstr "Dimensiunea Maxima"
#. module: base
#: field:res.partner.address,name:0
@ -215,86 +217,90 @@ msgid ""
"Save this document to a %s file and edit it with a specific software or a "
"text editor. The file encoding is UTF-8."
msgstr ""
"Salvati acest document intr-un fisier %s si editati-l cu un soft adecvat sau "
"un editor de text. Folositi codarea UTF-8."
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_DELETE"
msgstr ""
msgstr "STOCK_DELETE"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid "Password mismatch !"
msgstr ""
msgstr "Parola este gresita!"
#. module: base
#: code:addons/base/module/module.py:0
#, python-format
msgid "This url '%s' must provide an html file with links to zip modules"
msgstr ""
"Acest url '%s' trebuie sa duca la un fisier html cu legaturi catre module in "
"format zip"
#. module: base
#: selection:res.request,state:0
msgid "active"
msgstr ""
msgstr "activ"
#. module: base
#: field:ir.actions.wizard,wiz_name:0
msgid "Wizard Name"
msgstr ""
msgstr "Nume Asistent"
#. module: base
#: view:res.lang:0
msgid "%y - Year without century as a decimal number [00,99]."
msgstr ""
msgstr "%y - An fara secol ca numar zecimal [00,99]."
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_GOTO_FIRST"
msgstr ""
msgstr "STOCK_GOTO_FIRST"
#. module: base
#: help:ir.rule.group,rules:0
msgid "The rule is satisfied if at least one test is True"
msgstr ""
msgstr "Regula este satisfacuta daca cel putin un test este Adevarat"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Get Max"
msgstr ""
msgstr "Incarca Max"
#. module: base
#: help:ir.actions.act_window,limit:0
msgid "Default limit for the list view"
msgstr ""
msgstr "Limita implicita pentru Vizualizare Lista"
#. module: base
#: field:ir.model.data,date_update:0
msgid "Update Date"
msgstr ""
msgstr "Data Actualizare"
#. module: base
#: field:ir.actions.act_window,src_model:0
msgid "Source Object"
msgstr ""
msgstr "Obiect Sursa"
#. module: base
#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
#: view:ir.actions.todo:0
#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
msgid "Config Wizard Steps"
msgstr ""
msgstr "Configurare Pasi Asistare"
#. module: base
#: model:ir.model,name:base.model_ir_ui_view_sc
msgid "ir.ui.view_sc"
msgstr ""
msgstr "ir.ui.view_sc"
#. module: base
#: field:ir.model.access,group_id:0
#: field:ir.rule,rule_group:0
msgid "Group"
msgstr ""
msgstr "Grup"
#. module: base
#: field:ir.exports.line,name:0
@ -403,7 +409,7 @@ msgid "Country Name"
msgstr "Nume tara"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -729,6 +735,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +995,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1094,14 @@ msgstr ""
msgid "Fixed Width"
msgstr "Largime fixa"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,14 +1137,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partener"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1346,6 +1346,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1566,6 +1571,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1622,11 +1633,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1829,11 +1835,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Compania mama"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1951,6 +1952,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2317,11 +2324,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2431,11 +2433,6 @@ msgstr ""
msgid "Summary"
msgstr "Rezultat actiune"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3034,6 +3031,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3101,7 +3099,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3627,8 +3624,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3889,6 +3884,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3899,11 +3895,6 @@ msgstr "Adresa"
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4289,11 +4280,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4407,6 +4393,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4526,13 +4517,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4667,11 +4651,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4911,6 +4890,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5341,9 +5321,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5640,8 +5621,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5903,6 +5882,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5983,6 +5967,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6002,7 +5991,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6068,6 +6056,11 @@ msgstr "Tabela de Ref."
msgid "Parent"
msgstr "Parinte"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6086,7 +6079,6 @@ msgstr "Parinte"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6795,6 +6787,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partener"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7012,11 +7015,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7139,11 +7137,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7236,12 +7229,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7315,6 +7302,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7571,6 +7563,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7715,6 +7712,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -7954,3 +7957,9 @@ msgstr ""
#: selection:module.lang.install,init,lang:0
msgid "Russian / русский язык"
msgstr ""
#~ msgid "Main Company"
#~ msgstr "Compania mama"
#~ msgid "Company to store the current record"
#~ msgstr "Compania unde se face inregistrarea"

File diff suppressed because it is too large Load Diff

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:36+0000\n"
"Last-Translator: Radoslav Sloboda <rado.sloboda@gmail.com>\n"
"Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -195,11 +195,6 @@ msgstr ""
msgid "Number of Modules"
msgstr "Počet modulov"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -406,7 +401,7 @@ msgid "Country Name"
msgstr "Názov krajiny"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbia"
@ -734,6 +729,12 @@ msgstr "Kajmanské Ostrovy"
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -991,22 +992,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1105,6 +1091,14 @@ msgstr ""
msgid "Fixed Width"
msgstr "Pevná šírka"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1140,14 +1134,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneri"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1357,6 +1346,11 @@ msgstr "Počet aktualizovaných modulov"
msgid "Groups"
msgstr "Skupiny"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1583,6 +1577,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1639,11 +1639,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1846,11 +1841,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1968,6 +1958,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2334,11 +2330,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2448,11 +2439,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3051,6 +3037,7 @@ msgstr "Servisná zmluva pridaná!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3118,7 +3105,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3644,8 +3630,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3906,6 +3890,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3916,11 +3901,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4306,11 +4286,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4424,6 +4399,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4543,13 +4523,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4684,11 +4657,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4928,6 +4896,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5358,9 +5327,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5655,8 +5625,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5918,6 +5886,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5998,6 +5971,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6017,7 +5995,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6083,6 +6060,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6101,7 +6083,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6810,6 +6791,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneri"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7027,11 +7019,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7154,11 +7141,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7251,12 +7233,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7330,6 +7306,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7586,6 +7567,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7730,6 +7716,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:48+0000\n"
"Last-Translator: mra (Open ERP) <mra@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr "Na večih dokumentih"
msgid "Number of Modules"
msgstr "Število modulov"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -407,7 +402,7 @@ msgid "Country Name"
msgstr "Naziv države"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbija"
@ -735,6 +730,12 @@ msgstr "Kajmanski otoki"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -989,22 +990,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1103,6 +1089,14 @@ msgstr "Dni"
msgid "Fixed Width"
msgstr "Nespremenljiva širina"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1138,14 +1132,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %U:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerji"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1354,6 +1343,11 @@ msgstr "Število osveženih modulov"
msgid "Groups"
msgstr "Skupine"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1576,6 +1570,12 @@ msgstr "Vrednosti"
msgid "Field Mappings"
msgstr "Preslikave polj"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1632,11 +1632,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1839,11 +1834,6 @@ msgstr "Nadzori dostopov"
msgid "Dependencies"
msgstr "Odvisnosti"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Glavna družba"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1961,6 +1951,12 @@ msgstr ""
msgid "Module"
msgstr "Modul"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2327,11 +2323,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2446,11 +2437,6 @@ msgstr "Domena"
msgid "Summary"
msgstr "Povzetek"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3054,6 +3040,7 @@ msgstr "Vzdrževalna pogodba je dodana!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Polje"
@ -3122,7 +3109,6 @@ msgstr "Kazahstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3648,8 +3634,6 @@ msgid "Signal (button Name)"
msgstr "Signal (naziv gumba)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3910,6 +3894,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3920,11 +3905,6 @@ msgstr "Stiki"
msgid "Faroe Islands"
msgstr "Ferski otoki"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4310,11 +4290,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4428,6 +4403,11 @@ msgstr "Nigerija"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4549,13 +4529,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr "iCal ID"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Partnerjeve funkcije"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4692,11 +4665,6 @@ msgstr "_Zapri"
msgid "Full"
msgstr "Polno"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4938,6 +4906,7 @@ msgstr "Gambija"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Družbe"
@ -5370,10 +5339,11 @@ msgid "Active Partner Events"
msgstr "Aktivni partnerjevi dogodki"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Posnemi pravila"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5667,8 +5637,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5933,6 +5901,11 @@ msgstr "Odpri poročilo"
msgid "Rounding factor"
msgstr "Faktor zaokroževanja"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6013,6 +5986,11 @@ msgstr "Kontekst"
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6032,7 +6010,6 @@ msgstr "Mesec: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6100,6 +6077,11 @@ msgstr "Sklic tabele"
msgid "Parent"
msgstr "Nadvloge"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6118,7 +6100,6 @@ msgstr "Nadvloge"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6827,6 +6808,17 @@ msgstr ""
msgid "Landscape"
msgstr "Ležeče"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partnerji"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7047,11 +7039,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7174,11 +7161,6 @@ msgstr "Napredno iskanje"
msgid "Bank Accounts"
msgstr "Bančni računi"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7273,12 +7255,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Naslovi"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7352,6 +7328,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Dovoljenje za brisanje"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7608,6 +7589,11 @@ msgstr "Otoki Wallis in Futuna"
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "Napaka pri obračunu DDV"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7752,6 +7738,12 @@ msgstr "Najnovejša različica"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Posnemi pravila"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -7997,12 +7989,15 @@ msgstr "rusko"
#~ msgid "Others Partners"
#~ msgstr "Ostali partnerji"
#~ msgid "Main Company"
#~ msgstr "Glavna družba"
#~ msgid "Partner Functions"
#~ msgstr "Partnerjeve funkcije"
#~ msgid "Customers Partners"
#~ msgstr "Kupci"
#~ msgid "res.company"
#~ msgstr "res.company"
#~ msgid "Suppliers Partners"
#~ msgstr "Dobavitelji"
@ -8112,9 +8107,9 @@ msgstr "rusko"
#~ msgid "Bad query."
#~ msgstr "Napačna poizvedba."
#~ msgid "Titles"
#~ msgstr "Naslovi"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "Metoda 'search' ni implementirana za ta objekt."
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "Napaka pri obračunu DDV"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-30 08:55+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 04:59+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -199,11 +199,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -409,7 +404,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -735,6 +730,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -989,22 +990,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1103,6 +1089,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1138,13 +1132,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1352,6 +1341,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1572,6 +1566,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1628,11 +1628,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1835,11 +1830,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1957,6 +1947,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2323,11 +2319,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2437,11 +2428,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3040,6 +3026,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3107,7 +3094,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3633,8 +3619,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3895,6 +3879,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3905,11 +3890,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4295,11 +4275,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4413,6 +4388,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4532,13 +4512,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4673,11 +4646,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4917,6 +4885,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5347,9 +5316,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5644,8 +5614,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5907,6 +5875,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5987,6 +5960,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6006,7 +5984,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6072,6 +6049,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6090,7 +6072,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6799,6 +6780,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7016,11 +7008,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7143,11 +7130,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7240,12 +7222,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7319,6 +7295,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7575,6 +7556,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7719,6 +7705,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:55+0000\n"
"Last-Translator: Sonja Sardelić <sardelic.sonja@gmail.com>\n"
"Language-Team: Serbian <sr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -200,11 +200,6 @@ msgstr "Na više dok."
msgid "Number of Modules"
msgstr "Broj modula"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -417,7 +412,7 @@ msgid "Country Name"
msgstr "Ime države"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Kolumbija"
@ -747,6 +742,12 @@ msgstr "Kajmanska ostrva"
msgid "Iran"
msgstr "Iran"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -1007,22 +1008,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1121,6 +1107,14 @@ msgstr "Dani"
msgid "Fixed Width"
msgstr "Fiksna širina"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1156,14 +1150,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneri"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1378,6 +1367,11 @@ msgstr "Broj ažuriranih modula"
msgid "Groups"
msgstr "Grupe"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1606,6 +1600,12 @@ msgstr "Vrednosti"
msgid "Field Mappings"
msgstr "Mapiranje polja"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1662,11 +1662,6 @@ msgstr "%p - Ekvivalent od AM ili PM."
msgid "Iteration Actions"
msgstr "Akcije ponavljanja"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1869,11 +1864,6 @@ msgstr "Kontrole pristupa"
msgid "Dependencies"
msgstr "Zavisnosti"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Glavno preduzeće"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1993,6 +1983,12 @@ msgstr "Mapiranja polja."
msgid "Module"
msgstr "Modul"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2365,11 +2361,6 @@ msgstr "Sertifikat o kvalitetu"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2484,11 +2475,6 @@ msgstr "Domen"
msgid "Summary"
msgstr "Pregled"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3102,6 +3088,7 @@ msgstr "Dodat je ugovor o održavanju !"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Polje"
@ -3171,7 +3158,6 @@ msgstr "Kazahstan"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3699,8 +3685,6 @@ msgid "Signal (button Name)"
msgstr "Signal (naziv dugmeta)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3964,6 +3948,7 @@ msgid "On Multiple Doc."
msgstr "Na više dokumenata"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3974,11 +3959,6 @@ msgstr "Kontakti"
msgid "Faroe Islands"
msgstr "Farska ostrva"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4368,11 +4348,6 @@ msgstr "Polje objekta"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4489,6 +4464,11 @@ msgstr "Nigerija"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4612,13 +4592,6 @@ msgstr "Nepal"
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Funkcije partnera"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4755,11 +4728,6 @@ msgstr "_Zatvori"
msgid "Full"
msgstr "Puno"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4999,6 +4967,7 @@ msgstr "Gambija"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Kompanije"
@ -5435,10 +5404,11 @@ msgid "Active Partner Events"
msgstr "Aktivni događaji partnera"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Pravila zapisa"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5734,8 +5704,6 @@ msgid "Martinique (French)"
msgstr "Martinik"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -6000,6 +5968,11 @@ msgstr "Otvori izveštaj"
msgid "Rounding factor"
msgstr "Faktor zaokruživanja"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6080,6 +6053,11 @@ msgstr "Vrednost dodatka"
msgid "Hour 00->24: %(h24)s"
msgstr "Sat 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6099,7 +6077,6 @@ msgstr "Mesec: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6167,6 +6144,11 @@ msgstr "Vezana tabela"
msgid "Parent"
msgstr "Nad"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6185,7 +6167,6 @@ msgstr "Nad"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6906,6 +6887,17 @@ msgstr "Šifra objekta"
msgid "Landscape"
msgstr "Položeno"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Partneri"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7125,11 +7117,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Drugo polje treba da bude podatak"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7252,11 +7239,6 @@ msgstr "Napredna pretraga"
msgid "Bank Accounts"
msgstr "Bankovni računi"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7353,12 +7335,6 @@ msgstr "Akcija na više dokumenata"
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Naslovi"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7436,6 +7412,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Brisanje dozvole"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7692,6 +7673,11 @@ msgstr ""
msgid "Rwanda"
msgstr "Ruanda"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "PDV nije ispravan."
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7843,6 +7829,12 @@ msgstr "Najnovija verzija"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Pravila zapisa"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8125,6 +8117,9 @@ msgstr "Ruski / русский язык"
#~ msgid "HR sector"
#~ msgstr "Sektor ljudskih resursa"
#~ msgid "Main Company"
#~ msgstr "Glavno preduzeće"
#, python-format
#~ msgid "Please check that all your lines have %d columns."
#~ msgstr "Proverite da svi redovi imaju %d kolona."
@ -8198,6 +8193,9 @@ msgstr "Ruski / русский язык"
#~ msgid "The copy method is not implemented on this object !"
#~ msgstr "Metoda copy nije implementirana u ovaj objekat !"
#~ msgid "Partner Functions"
#~ msgstr "Funkcije partnera"
#, python-format
#~ msgid "You cannot perform this operation."
#~ msgstr "Ne možete da izvršite ovu operaciju."
@ -8235,9 +8233,6 @@ msgstr "Ruski / русский язык"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "Greška ! Ne možete da kreirate rekurivne povezane članove."
#~ msgid "res.company"
#~ msgstr "res.company"
#, python-format
#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection"
#~ msgstr "Vrednost \"%s\" za polje \"%s\" nije u izabranom"
@ -8256,13 +8251,13 @@ msgstr "Ruski / русский язык"
#~ msgid "Bad query."
#~ msgstr "Pogrešan upit."
#~ msgid "Titles"
#~ msgstr "Naslovi"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "Metoda pretrage nije implementirana za ovaj objekat !"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "PDV nije ispravan."
#~ msgid "IT sector"
#~ msgstr "IT sektor"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-12-15 06:40+0000\n"
"Last-Translator: mra (Open ERP) <mra@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr "Land"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -729,6 +724,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr "Dagar"
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,13 +1126,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1346,6 +1335,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr "Beroenden"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr "Modul"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr "Sammandrag"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr "Kontakter"
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr "Förälder"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr "Förälder"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr "Liggande"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-30 09:01+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: Thai <th@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:02+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -404,7 +399,7 @@ msgid "Country Name"
msgstr "ชื่อประเทศ"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -730,6 +725,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -984,22 +985,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1098,6 +1084,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1133,13 +1127,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1336,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-30 07:48+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:03+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -729,6 +724,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,13 +1126,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1346,6 +1335,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1566,6 +1560,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1622,11 +1622,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1829,11 +1824,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1951,6 +1941,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2317,11 +2313,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2431,11 +2422,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3034,6 +3020,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3101,7 +3088,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3627,8 +3613,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3889,6 +3873,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3899,11 +3884,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4289,11 +4269,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4407,6 +4382,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4526,13 +4506,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4667,11 +4640,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4911,6 +4879,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5341,9 +5310,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5638,8 +5608,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5901,6 +5869,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5981,6 +5954,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6000,7 +5978,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6066,6 +6043,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6084,7 +6066,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6793,6 +6774,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7010,11 +7002,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7137,11 +7124,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7234,12 +7216,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7313,6 +7289,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7569,6 +7550,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7713,6 +7699,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

File diff suppressed because it is too large Load Diff

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-15 06:57+0000\n"
"Last-Translator: Eugene Babiy <eugene.babiy@gmail.com>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-27 05:47+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:02+0000\n"
"X-Launchpad-Export-Date: 2010-01-28 04:34+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -174,7 +174,7 @@ msgstr "ir.report.custom.fields"
#. module: base
#: view:res.partner:0
msgid "Search Partner"
msgstr ""
msgstr "Знайти Партнера"
#. module: base
#: code:addons/base/module/wizard/wizard_export_lang.py:0
@ -198,11 +198,6 @@ msgstr "При багатьох док."
msgid "Number of Modules"
msgstr "Кількість Модулів"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -320,7 +315,7 @@ msgstr "Вилучені модулі"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "txt"
msgstr ""
msgstr "txt"
#. module: base
#: wizard_view:server.action.create,init:0
@ -397,6 +392,7 @@ msgstr ""
#: help:res.lang,iso_code:0
msgid "This ISO code is the name of po files to use for translations"
msgstr ""
"Цей код ISO визначає ім`я po файлів, які використовуюсться для перекладу"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -414,7 +410,7 @@ msgid "Country Name"
msgstr "Назва країни"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "Колумбія"
@ -495,7 +491,7 @@ msgstr "Опис моделі"
#. module: base
#: field:workflow.transition,trigger_expr_id:0
msgid "Trigger Expression"
msgstr ""
msgstr "Помилка Трігера"
#. module: base
#: model:res.country,name:base.jo
@ -595,7 +591,7 @@ msgstr ","
#. module: base
#: view:res.partner:0
msgid "My Partners"
msgstr ""
msgstr "Мої Партнери"
#. module: base
#: model:res.country,name:base.es
@ -659,7 +655,7 @@ msgstr "модулі контракту на підтримку"
#. module: base
#: view:ir.values:0
msgid "client_action_multi, client_action_relate"
msgstr ""
msgstr "client_action_multi, client_action_relate"
#. module: base
#: model:res.country,name:base.ad
@ -743,6 +739,12 @@ msgstr "Кайманові острови"
msgid "Iran"
msgstr "Іран"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr "Мої Запроси"
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -854,7 +856,7 @@ msgstr "RML"
#. module: base
#: selection:ir.ui.view,type:0
msgid "Search"
msgstr ""
msgstr "Пошук"
#. module: base
#: code:addons/base/ir/ir_report_custom.py:0
@ -927,6 +929,9 @@ msgid ""
"you select the invoice, then `object.invoice_address_id.email` is the field "
"which gives the correct address"
msgstr ""
"Вказує поле з якого буде взято email адреса, наприклад, якщо ви вибрали "
"заказ, поле `object.invoice_address_id.email` є полем, яке дає правильну "
"адресу"
#. module: base
#: field:res.roles,name:0
@ -1000,23 +1005,8 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgstr ""
msgid "Model %s Does not Exist !"
msgstr "Моделі %s Не Існує !"
#. module: base
#: code:addons/base/module/module.py:0
@ -1025,6 +1015,8 @@ msgid ""
"You try to install the module '%s' that depends on the module:'%s'.\n"
"But this module is not available in your system."
msgstr ""
"Ви намагаєтесь встановити модуль '%s' який залежить від модуля:'%s'.\n"
"Але цей модуль не встановлено у вашій системі."
#. module: base
#: model:ir.model,name:base.model_res_request_link
@ -1114,6 +1106,14 @@ msgstr "Дні"
msgid "Fixed Width"
msgstr "Фіксована ширина"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1136,7 +1136,7 @@ msgstr "Звіт користувача"
#: code:addons/base/res/res_user.py:0
#, python-format
msgid " (copy)"
msgstr ""
msgstr " (copy)"
#. module: base
#: view:ir.sequence:0
@ -1149,14 +1149,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %Г:%М:%С ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Партнери"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr "Компанія цього користувача"
#. module: base
#: help:ir.actions.server,message:0
@ -1258,6 +1253,8 @@ msgid ""
"If set, sequence will only be used in case this python expression matches, "
"and will precede other sequences."
msgstr ""
"Якщо выбрано, послідовність буде використана тількі у випадку, якщо цей "
"python вираз співпаде, та буде перед іншими послідовностями."
#. module: base
#: selection:ir.actions.act_window,view_type:0
@ -1309,7 +1306,7 @@ msgstr "STOCK_PROPERTIES"
#. module: base
#: view:res.partner.address:0
msgid "Search Contact"
msgstr ""
msgstr "Пощук Контракту"
#. module: base
#: view:ir.module.module:0
@ -1371,6 +1368,11 @@ msgstr "Кількість обновлених модулів"
msgid "Groups"
msgstr "Групи"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr "Цєй користувач не може підключатись до цієї компанії !"
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1463,7 +1465,7 @@ msgstr ""
#. module: base
#: help:ir.rule.group,global:0
msgid "Make the rule global, otherwise it needs to be put on a group"
msgstr ""
msgstr "Зробіть правило загальним чи призначте його групі"
#. module: base
#: model:ir.actions.act_window,name:base.action_menu_admin
@ -1481,7 +1483,7 @@ msgstr "Поточний Курс"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Greek / Ελληνικά"
msgstr ""
msgstr "Грецька / Ελληνικά"
#. module: base
#: view:ir.values:0
@ -1559,7 +1561,7 @@ msgstr "Адреса ел. пошти"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "French (BE) / Français (BE)"
msgstr ""
msgstr "Французська (Бельгія) / Français (BE)"
#. module: base
#: code:addons/base/ir/ir_model.py:0
@ -1593,6 +1595,12 @@ msgstr "Значення"
msgid "Field Mappings"
msgstr "Відповідність полів"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr "Мої Закриті Запити"
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1649,11 +1657,6 @@ msgstr "%p - Еквівалент AM або PM."
msgid "Iteration Actions"
msgstr "Повторювані Дії"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1856,11 +1859,6 @@ msgstr "Контроль доступу"
msgid "Dependencies"
msgstr "Залежності"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "Головна компанія"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1872,6 +1870,8 @@ msgid ""
"If you use a formula type, use a python expression using the variable "
"'object'."
msgstr ""
"Якщо ви використовуєте тип \"формула\", використовуйте python вираз зі "
"змінною 'object'."
#. module: base
#: field:res.partner.address,birthdate:0
@ -1978,6 +1978,12 @@ msgstr ""
msgid "Module"
msgstr "Модуль"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2008,7 +2014,7 @@ msgstr "Дія"
#. module: base
#: field:res.lang,grouping:0
msgid "Separator Format"
msgstr ""
msgstr "Формат Роздільника"
#. module: base
#: view:wizard.module.lang.export:0
@ -2034,7 +2040,7 @@ msgstr "Масова розсилка пошти"
#. module: base
#: model:res.country,name:base.yt
msgid "Mayotte"
msgstr ""
msgstr "Майотта"
#. module: base
#: wizard_view:module.lang.import,init:0
@ -2045,7 +2051,7 @@ msgstr "Ви також можете імпортувати .po файли."
#: code:addons/base/maintenance/maintenance.py:0
#, python-format
msgid "Unable to find a valid contract"
msgstr ""
msgstr "Не можу знайти коректний контракт"
#. module: base
#: code:addons/base/ir/ir_actions.py:0
@ -2269,7 +2275,7 @@ msgstr "STOCK_QUIT"
#. module: base
#: view:ir.cron:0
msgid "Technical Data"
msgstr ""
msgstr "Технічні Данні"
#. module: base
#: view:res.partner:0
@ -2344,11 +2350,6 @@ msgstr "Сертифікат Якості"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2388,7 +2389,7 @@ msgstr ""
#: model:ir.actions.act_window,name:base.action_partner_customer_form
#: view:res.partner:0
msgid "Customers"
msgstr ""
msgstr "Клієнти"
#. module: base
#: model:res.country,name:base.au
@ -2463,11 +2464,6 @@ msgstr "Категорія"
msgid "Summary"
msgstr "Підсумок"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -2493,7 +2489,7 @@ msgstr "Назва мови"
#. module: base
#: model:res.country,name:base.va
msgid "Holy See (Vatican City State)"
msgstr ""
msgstr "Святий Престол (Ватикан, Місто-Держава)"
#. module: base
#: help:ir.actions.server,condition:0
@ -2501,6 +2497,8 @@ msgid ""
"Condition that is to be tested before action is executed, e.g. "
"object.list_price > object.cost_price"
msgstr ""
"Умова, яка має бути перевірена перед тим як буде виконана дія, наприклад "
"object.list_price > object.cost_price"
#. module: base
#: wizard_field:base.module.import,init,module_file:0
@ -2563,6 +2561,8 @@ msgid ""
"You try to upgrade a module that depends on the module: %s.\n"
"But this module is not available in your system."
msgstr ""
"Ви намагаєтесь оновити модуль, я кий залежить від модуля: %s.\n"
"Але цей модуль не доступен у вашій системі."
#. module: base
#: view:res.partner.address:0
@ -2588,7 +2588,7 @@ msgstr "STOCK_SAVE_AS"
#. module: base
#: selection:ir.translation,type:0
msgid "SQL Constraint"
msgstr ""
msgstr "SQL Constraint"
#. module: base
#: field:ir.actions.server,srcmodel_id:0
@ -2639,7 +2639,7 @@ msgstr "Автор"
#. module: base
#: model:res.country,name:base.mk
msgid "FYROM"
msgstr ""
msgstr "Македонія"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -2654,7 +2654,7 @@ msgstr "%c - Прийнятне відображення дати та часу.
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Finland / Suomi"
msgstr ""
msgstr "Фінська / Suomi"
#. module: base
#: model:res.country,name:base.bo
@ -2707,7 +2707,7 @@ msgstr ""
#: help:ir.values,key2:0
msgid ""
"The kind of action or button in the client side that will trigger the action."
msgstr ""
msgstr "Вид дії або кнопки на клієнтському боці, яка запустить дію."
#. module: base
#: selection:ir.ui.menu,icon:0
@ -2920,7 +2920,7 @@ msgstr "Курси"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Albanian / Shqipëri"
msgstr ""
msgstr "Албанська / Shqipëri"
#. module: base
#: model:res.country,name:base.sy
@ -3007,7 +3007,7 @@ msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom_multicompany
msgid "Multi company"
msgstr ""
msgstr "Декілька компаній"
#. module: base
#: view:ir.attachment:0
@ -3017,7 +3017,7 @@ msgstr "Приєднано До"
#. module: base
#: field:res.lang,decimal_point:0
msgid "Decimal Separator"
msgstr ""
msgstr "Десятковий Роздільник"
#. module: base
#: view:res.partner:0
@ -3074,6 +3074,7 @@ msgstr "Контракт на підтримку додано !"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "Поле"
@ -3143,7 +3144,6 @@ msgstr "Казахстан"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3164,7 +3164,7 @@ msgstr "Монтсерат"
#. module: base
#: model:ir.ui.menu,name:base.menu_translation_app
msgid "Application Terms"
msgstr "Умови заявки"
msgstr "Терміни, Мови"
#. module: base
#: selection:ir.report.custom.fields,operation:0
@ -3179,7 +3179,7 @@ msgstr "Демо-дані"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "English (UK)"
msgstr ""
msgstr "Англійська (Британська)"
#. module: base
#: model:res.country,name:base.aq
@ -3204,7 +3204,7 @@ msgstr "Web"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "English (CA)"
msgstr ""
msgstr "Англійська (Канада)"
#. module: base
#: field:res.partner.event,planned_revenue:0
@ -3612,7 +3612,7 @@ msgstr "Створити Дію"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "HTML from HTML"
msgstr ""
msgstr "HTML з HTML"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
@ -3671,8 +3671,6 @@ msgid "Signal (button Name)"
msgstr "Сигнал (назва кнопки)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3919,7 +3917,7 @@ msgstr "Мозамбік"
#: model:ir.actions.act_window,name:base.grant_menu_access
#: model:ir.ui.menu,name:base.menu_grant_menu_access
msgid "Manage Menus"
msgstr ""
msgstr "Керувати Меню"
#. module: base
#: field:ir.actions.server,message:0
@ -3933,6 +3931,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3943,11 +3942,6 @@ msgstr "Контакти"
msgid "Faroe Islands"
msgstr "Фарерські Острови"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -3972,7 +3966,7 @@ msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_management
msgid "Modules Management"
msgstr "Управління модулями"
msgstr "Керування модулями"
#. module: base
#: rml:ir.module.reference:0
@ -4037,7 +4031,7 @@ msgstr "Настрій"
#. module: base
#: selection:ir.ui.view,type:0
msgid "mdx"
msgstr ""
msgstr "mdx"
#. module: base
#: model:res.country,name:base.bi
@ -4077,7 +4071,7 @@ msgstr "Формат файлу"
#. module: base
#: field:res.lang,iso_code:0
msgid "ISO code"
msgstr ""
msgstr "ISO код"
#. module: base
#: model:ir.model,name:base.model_res_config_view
@ -4333,11 +4327,6 @@ msgstr "Поле Об'єкта"
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4451,6 +4440,11 @@ msgstr "Нігерія"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4572,13 +4566,6 @@ msgstr "Непал"
msgid "iCal id"
msgstr "iCal id"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "Функції партнера"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4633,7 +4620,7 @@ msgstr "Далі"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Thai / ภาษาไทย"
msgstr ""
msgstr "Тайська / ภาษาไทย"
#. module: base
#: model:ir.actions.act_window,name:base.ir_property_form
@ -4715,11 +4702,6 @@ msgstr "_Закрити"
msgid "Full"
msgstr "Повністю"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4961,6 +4943,7 @@ msgstr "Гамбія"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "Компанії"
@ -5392,10 +5375,11 @@ msgid "Active Partner Events"
msgstr "Активні Події Партнера"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Правила записів"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
#: view:multi_company.default:0
@ -5689,8 +5673,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5952,6 +5934,11 @@ msgstr "Відкрити Звіт"
msgid "Rounding factor"
msgstr "Коефіцієнт округлення"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "res.company"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6032,6 +6019,11 @@ msgstr "Значення контексту"
msgid "Hour 00->24: %(h24)s"
msgstr "Година 00->24: %(h24)"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6051,7 +6043,6 @@ msgstr "Місяць: %(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6119,6 +6110,11 @@ msgstr "Таблиця пос."
msgid "Parent"
msgstr "Батьківська"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6137,7 +6133,6 @@ msgstr "Батьківська"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6850,6 +6845,17 @@ msgstr ""
msgid "Landscape"
msgstr "Ландшафт"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "Партнери"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7070,11 +7076,6 @@ msgstr "="
msgid "Second field should be figures"
msgstr "Друге поле має бути числовим"
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7197,11 +7198,6 @@ msgstr "Розширений пошук"
msgid "Bank Accounts"
msgstr "Банківські рахунки"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7298,12 +7294,6 @@ msgstr "Дія над Кількома Док."
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "Заголовки"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7381,6 +7371,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "Закрити Доступ"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7639,6 +7634,11 @@ msgstr "Острови Велліс та Футуна"
msgid "Rwanda"
msgstr "Руанда"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "ПДВ здається некоректним"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7783,6 +7783,12 @@ msgstr "Остання версія"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "Правила записів"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -8067,6 +8073,9 @@ msgstr "Російська / Russian"
#~ msgid "HR sector"
#~ msgstr "Працевлаштування"
#~ msgid "Main Company"
#~ msgstr "Головна компанія"
#, python-format
#~ msgid "Please check that all your lines have %d columns."
#~ msgstr "Перевірте, чи всі рядки мають %d колонок."
@ -8124,6 +8133,9 @@ msgstr "Російська / Russian"
#~ msgid "The copy method is not implemented on this object !"
#~ msgstr "Метод copy не реалізований у цьому об'єкті!"
#~ msgid "Partner Functions"
#~ msgstr "Функції партнера"
#, python-format
#~ msgid "You cannot perform this operation."
#~ msgstr "Ви не можете виконати цю операцію."
@ -8158,9 +8170,6 @@ msgstr "Російська / Russian"
#~ msgid "ValidateError"
#~ msgstr "ValidateError"
#~ msgid "res.company"
#~ msgstr "res.company"
#, python-format
#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection"
#~ msgstr "Значення \"%s\" для поля \"%s\" немає у виборі"
@ -8179,13 +8188,13 @@ msgstr "Російська / Russian"
#~ msgid "Bad query."
#~ msgstr "Неправильний запит."
#~ msgid "Titles"
#~ msgstr "Заголовки"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "Метод search не реалізований у цьому об'єкті!"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "ПДВ здається некоректним"
#~ msgid "IT sector"
#~ msgstr "Сфера IT"

View File

@ -989,21 +989,7 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/addons/base/ir/ir_model.py:0
#, python-format
msgid "Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-24 18:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Vietnamese <vi@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:03+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -194,11 +194,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -404,7 +399,7 @@ msgid "Country Name"
msgstr ""
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -730,6 +725,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -984,22 +985,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1098,6 +1084,14 @@ msgstr ""
msgid "Fixed Width"
msgstr ""
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1133,13 +1127,8 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
@ -1347,6 +1336,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1567,6 +1561,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1623,11 +1623,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1830,11 +1825,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr ""
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1952,6 +1942,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2318,11 +2314,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2432,11 +2423,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3035,6 +3021,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3102,7 +3089,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3628,8 +3614,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,6 +3874,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3900,11 +3885,6 @@ msgstr ""
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4290,11 +4270,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4408,6 +4383,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4527,13 +4507,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4668,11 +4641,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4912,6 +4880,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5342,9 +5311,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5639,8 +5609,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5902,6 +5870,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5982,6 +5955,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6001,7 +5979,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6067,6 +6044,11 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6085,7 +6067,6 @@ msgstr ""
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6794,6 +6775,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7011,11 +7003,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7138,11 +7125,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7235,12 +7217,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7314,6 +7290,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7570,6 +7551,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7714,6 +7700,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"PO-Revision-Date: 2009-12-11 08:27+0000\n"
"Last-Translator: mra (Open ERP) <mra@tinyerp.com>\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2010-01-24 05:45+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:03+0000\n"
"X-Launchpad-Export-Date: 2010-01-25 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -172,7 +172,7 @@ msgstr "ir.report.custom.fields"
#. module: base
#: view:res.partner:0
msgid "Search Partner"
msgstr ""
msgstr "搜索业务伙伴"
#. module: base
#: code:addons/base/module/wizard/wizard_export_lang.py:0
@ -196,11 +196,6 @@ msgstr "作用于多个文档。"
msgid "Number of Modules"
msgstr "模块数"
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -315,7 +310,7 @@ msgstr "已卸载的模块"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "txt"
msgstr ""
msgstr "txt"
#. module: base
#: wizard_view:server.action.create,init:0
@ -388,7 +383,7 @@ msgstr "如果您选中此处,当下次用户使用相同的附件名称打印
#. module: base
#: help:res.lang,iso_code:0
msgid "This ISO code is the name of po files to use for translations"
msgstr ""
msgstr ".PO 文件翻译使用的 ISO 国家代码"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -406,7 +401,7 @@ msgid "Country Name"
msgstr "国家名称"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr "哥伦比亚"
@ -587,7 +582,7 @@ msgstr ","
#. module: base
#: view:res.partner:0
msgid "My Partners"
msgstr ""
msgstr "我的业务伙伴列表"
#. module: base
#: model:res.country,name:base.es
@ -734,6 +729,12 @@ msgstr "开曼群岛"
msgid "Iran"
msgstr "伊朗"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr "我的请求列表"
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -842,7 +843,7 @@ msgstr "RML"
#. module: base
#: selection:ir.ui.view,type:0
msgid "Search"
msgstr ""
msgstr "搜索"
#. module: base
#: code:addons/base/ir/ir_report_custom.py:0
@ -973,7 +974,7 @@ msgstr "默认价值"
#: wizard_field:res.partner.sms_send,init,user:0
#: field:res.users,login:0
msgid "Login"
msgstr "登录"
msgstr "用户名"
#. module: base
#: view:maintenance.contract:0
@ -989,23 +990,8 @@ msgstr "STOCK_COPY"
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgstr ""
msgid "Model %s Does not Exist !"
msgstr "模型 %s 不存在!"
#. module: base
#: code:addons/base/module/module.py:0
@ -1014,6 +1000,8 @@ msgid ""
"You try to install the module '%s' that depends on the module:'%s'.\n"
"But this module is not available in your system."
msgstr ""
"您试图安装模块'%s'.这模块依赖模块: %s。\n"
"但您的系统中该模块不可用。"
#. module: base
#: model:ir.model,name:base.model_res_request_link
@ -1103,6 +1091,14 @@ msgstr "日"
msgid "Fixed Width"
msgstr "固定宽度"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1125,7 +1121,7 @@ msgstr "自定义报表"
#: code:addons/base/res/res_user.py:0
#, python-format
msgid " (copy)"
msgstr ""
msgstr " (副本)"
#. module: base
#: view:ir.sequence:0
@ -1138,14 +1134,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr "7. %H:%M:%S ==> 18:25:20"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "业务伙伴"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr "该用户当前工作的公司。"
#. module: base
#: help:ir.actions.server,message:0
@ -1291,7 +1282,7 @@ msgstr "STOCK_PROPERTIES"
#. module: base
#: view:res.partner.address:0
msgid "Search Contact"
msgstr ""
msgstr "搜索联系人"
#. module: base
#: view:ir.module.module:0
@ -1352,6 +1343,11 @@ msgstr "已更新的模块数"
msgid "Groups"
msgstr "组"
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr "该用户不能使用该公司连接。"
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1461,7 +1457,7 @@ msgstr "当前汇率"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Greek / Ελληνικά"
msgstr ""
msgstr "希腊语 / Ελληνικά"
#. module: base
#: view:ir.values:0
@ -1539,7 +1535,7 @@ msgstr "电子邮件地址"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "French (BE) / Français (BE)"
msgstr ""
msgstr "法语(比利时)/ Français (BE)"
#. module: base
#: code:addons/base/ir/ir_model.py:0
@ -1573,6 +1569,12 @@ msgstr "值"
msgid "Field Mappings"
msgstr "字段映射"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr "我的已关闭请求列表"
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1629,11 +1631,6 @@ msgstr "%p - 等价于 AM 或 PM"
msgid "Iteration Actions"
msgstr "遍历动作"
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1836,11 +1833,6 @@ msgstr "访问控制"
msgid "Dependencies"
msgstr "依附关系"
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "母公司"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1958,6 +1950,12 @@ msgstr "字段映射"
msgid "Module"
msgstr "模块"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr "银行列表"
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2041,7 +2039,7 @@ msgstr "STOCK_JUSTIFY_RIGHT"
#. module: base
#: model:ir.model,name:base.model_res_partner_function
msgid "Function of the contact"
msgstr "联系人自定义功能"
msgstr "联系人能"
#. module: base
#: model:ir.actions.act_window,name:base.open_module_tree_upgrade
@ -2328,11 +2326,6 @@ msgstr "质量证书编号"
msgid "6. %d, %m ==> 05, 12"
msgstr "6. %d, %m ==> 05, 12"
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2369,7 +2362,7 @@ msgstr "把文件存为 .CSV 格式用您喜好的电子表格程序打开。该
#: model:ir.actions.act_window,name:base.action_partner_customer_form
#: view:res.partner:0
msgid "Customers"
msgstr ""
msgstr "客户列表"
#. module: base
#: model:res.country,name:base.au
@ -2442,11 +2435,6 @@ msgstr "域"
msgid "Summary"
msgstr "摘要"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -2567,7 +2555,7 @@ msgstr "STOCK_SAVE_AS"
#. module: base
#: selection:ir.translation,type:0
msgid "SQL Constraint"
msgstr ""
msgstr "SQL 约束"
#. module: base
#: field:ir.actions.server,srcmodel_id:0
@ -2978,7 +2966,7 @@ msgstr "如果设为真,该动作将不会显示表单右侧的工具栏中。
#. module: base
#: model:ir.ui.menu,name:base.menu_custom_multicompany
msgid "Multi company"
msgstr ""
msgstr "多公司"
#. module: base
#: view:ir.attachment:0
@ -3045,6 +3033,7 @@ msgstr "维护合同已添加!"
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr "字段"
@ -3079,7 +3068,7 @@ msgstr "负责与该业务伙伴沟通的内部用户"
#. module: base
#: field:res.partner,parent_id:0
msgid "Parent Partner"
msgstr ""
msgstr "上级业务伙伴"
#. module: base
#: view:ir.module.module:0
@ -3112,7 +3101,6 @@ msgstr "哈萨克斯坦"
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3148,7 +3136,7 @@ msgstr "示范数据"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "English (UK)"
msgstr ""
msgstr "英语(英国)"
#. module: base
#: model:res.country,name:base.aq
@ -3173,7 +3161,7 @@ msgstr "网页"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "English (CA)"
msgstr ""
msgstr "英语(加拿大)"
#. module: base
#: field:res.partner.event,planned_revenue:0
@ -3411,7 +3399,7 @@ msgstr "客户端动作设置"
#: model:ir.ui.menu,name:base.menu_partner_address_form
#: view:res.partner.address:0
msgid "Partner Addresses"
msgstr "业务伙伴地址"
msgstr "业务伙伴地址列表"
#. module: base
#: selection:module.lang.install,init,lang:0
@ -3583,7 +3571,7 @@ msgstr "创建动作"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "HTML from HTML"
msgstr ""
msgstr "HTML 来自 HTML"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
@ -3622,7 +3610,7 @@ msgstr "报表Xml"
#: model:ir.ui.menu,name:base.menu_module_tree
#: field:wizard.module.lang.export,modules:0
msgid "Modules"
msgstr "模块分类"
msgstr "模块列表"
#. module: base
#: selection:workflow.activity,kind:0
@ -3642,8 +3630,6 @@ msgid "Signal (button Name)"
msgstr "信号(按钮名称)"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3890,7 +3876,7 @@ msgstr "莫桑比克"
#: model:ir.actions.act_window,name:base.grant_menu_access
#: model:ir.ui.menu,name:base.menu_grant_menu_access
msgid "Manage Menus"
msgstr ""
msgstr "管理菜单"
#. module: base
#: field:ir.actions.server,message:0
@ -3904,6 +3890,7 @@ msgid "On Multiple Doc."
msgstr "在多个文档上面。"
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3914,11 +3901,6 @@ msgstr "联系人"
msgid "Faroe Islands"
msgstr "法罗群岛"
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4008,7 +3990,7 @@ msgstr "业务伙伴满意度"
#. module: base
#: selection:ir.ui.view,type:0
msgid "mdx"
msgstr ""
msgstr "mdx"
#. module: base
#: model:res.country,name:base.bi
@ -4048,7 +4030,7 @@ msgstr "文件格式"
#. module: base
#: field:res.lang,iso_code:0
msgid "ISO code"
msgstr ""
msgstr "ISO 国家代码"
#. module: base
#: model:ir.model,name:base.model_res_config_view
@ -4110,7 +4092,7 @@ msgstr "a4"
#. module: base
#: field:ir.actions.act_window,search_view_id:0
msgid "Search View Ref."
msgstr ""
msgstr "搜索视图引用"
#. module: base
#: view:ir.rule.group:0
@ -4302,12 +4284,7 @@ msgstr "对象字段"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
msgstr "法语(瑞士)/ Français (CH)"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -4381,7 +4358,7 @@ msgstr "取消卸载"
#: view:res.partner:0
#: view:res.partner.address:0
msgid "Communication"
msgstr ""
msgstr "交流"
#. module: base
#: model:ir.model,name:base.model_ir_server_object_lines
@ -4422,6 +4399,11 @@ msgstr "尼日利亚"
msgid "res.partner.event"
msgstr "res.partner.event"
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr "接受的用户"
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4541,13 +4523,6 @@ msgstr "尼泊尔"
msgid "iCal id"
msgstr "iCal 标识符"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr "业务伙伴职能"
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4602,7 +4577,7 @@ msgstr "继续"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Thai / ภาษาไทย"
msgstr ""
msgstr "泰国语 / ภาษาไทย"
#. module: base
#: model:ir.actions.act_window,name:base.ir_property_form
@ -4684,11 +4659,6 @@ msgstr "关闭(_C)"
msgid "Full"
msgstr "完全"
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4704,7 +4674,7 @@ msgstr "对象"
#. module: base
#: field:ir.model.fields,selectable:0
msgid "Selectable"
msgstr ""
msgstr "可选择"
#. module: base
#: view:res.request.link:0
@ -4893,12 +4863,12 @@ msgstr "STOCK_GO_BACK"
#. module: base
#: view:ir.actions.act_window:0
msgid "General Settings"
msgstr ""
msgstr "常规设置"
#. module: base
#: model:ir.ui.menu,name:base.custom_shortcuts
msgid "Custom Shortcuts"
msgstr ""
msgstr "自定义快捷方式"
#. module: base
#: model:res.country,name:base.dz
@ -4928,6 +4898,7 @@ msgstr "冈比亚"
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr "公司"
@ -5358,15 +5329,16 @@ msgid "Active Partner Events"
msgstr "进行中的业务伙伴事件"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "记录规则"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr "联系人职能"
#. module: base
#: view:multi_company.default:0
msgid "Multi Company"
msgstr ""
msgstr "多公司"
#. module: base
#: view:ir.sequence:0
@ -5504,7 +5476,7 @@ msgstr "GPL-3 或更新版本"
#. module: base
#: selection:ir.actions.report.xml,report_type:0
msgid "HTML from HTML(Mako)"
msgstr ""
msgstr "HTML 到 HTML 报表(使用 Mako 模板)"
#. module: base
#: field:workflow.activity,action:0
@ -5655,8 +5627,6 @@ msgid "Martinique (French)"
msgstr "马提尼(法属)"
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5762,7 +5732,7 @@ msgstr "字段 %d 应该是数字"
#: model:ir.actions.act_window,name:base.action_inventory_form
#: model:ir.ui.menu,name:base.menu_action_inventory_form
msgid "Default Company per Object"
msgstr ""
msgstr "每对象的默认公司"
#. module: base
#: view:ir.actions.configuration.wizard:0
@ -5828,7 +5798,7 @@ msgstr "开始安装"
#. module: base
#: help:res.lang,code:0
msgid "This field is used to set/get locales for user"
msgstr ""
msgstr "此字段用于设定或获取地区设置"
#. module: base
#: model:res.partner.category,name:base.res_partner_category_2
@ -5922,6 +5892,11 @@ msgstr "打开报表"
msgid "Rounding factor"
msgstr "舍入系数"
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr "公司"
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -6002,6 +5977,11 @@ msgstr "上下文值"
msgid "Hour 00->24: %(h24)s"
msgstr "小时 00->24: %(h24)s"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr "选择字段属性"
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6021,7 +6001,6 @@ msgstr "月:%(month)s"
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6087,6 +6066,11 @@ msgstr "表参照"
msgid "Parent"
msgstr "上级"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6105,7 +6089,6 @@ msgstr "上级"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6814,6 +6797,17 @@ msgstr "对象标识符 ID"
msgid "Landscape"
msgstr "横向"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "业务伙伴"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -6828,7 +6822,7 @@ msgstr "子项"
#: view:res.users:0
#: field:res.users,company_ids:0
msgid "Accepted Companies"
msgstr ""
msgstr "已接受公司列表"
#. module: base
#: field:ir.report.custom.fields,operation:0
@ -7029,12 +7023,7 @@ msgstr "="
#: code:addons/base/ir/ir_report_custom.py:0
#, python-format
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
msgstr "第二字段应该是数字"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
@ -7118,7 +7107,7 @@ msgstr "坦桑尼亚"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Danish / Dansk"
msgstr ""
msgstr "丹麦语 / Dansk"
#. module: base
#: model:res.country,name:base.cx
@ -7158,11 +7147,6 @@ msgstr "高级搜索"
msgid "Bank Accounts"
msgstr "银行帐号"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7255,12 +7239,6 @@ msgstr "动作作用于多个文档"
msgid "https://translations.launchpad.net/openobject"
msgstr "https://translations.launchpad.net/openobject"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr "称谓"
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7337,6 +7315,11 @@ msgstr ">"
msgid "Delete Permission"
msgstr "删除权限"
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr "multi_company.default"
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7428,7 +7411,7 @@ msgstr "自动加载视图"
#: model:ir.actions.act_window,name:base.action_partner_supplier_form
#: view:res.partner:0
msgid "Suppliers"
msgstr ""
msgstr "供应商列表"
#. module: base
#: selection:ir.ui.menu,icon:0
@ -7465,7 +7448,7 @@ msgstr "省/州"
#. module: base
#: view:multi_company.default:0
msgid "Matching"
msgstr ""
msgstr "匹配"
#. module: base
#: field:ir.actions.configuration.wizard,name:0
@ -7529,7 +7512,7 @@ msgstr "添加技术维护合同"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam"
msgstr ""
msgstr "越南 / Cộng hòa xã hội chủ nghĩa Việt Nam"
#. module: base
#: field:ir.actions.act_window,limit:0
@ -7593,6 +7576,11 @@ msgstr "瓦利斯和富图纳群岛"
msgid "Rwanda"
msgstr "卢旺达"
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr "增值税似乎不正确。"
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7625,7 +7613,7 @@ msgstr "不能更新"
#. module: base
#: selection:module.lang.install,init,lang:0
msgid "Klingon"
msgstr ""
msgstr "克林贡文"
#. module: base
#: model:res.country,name:base.sg
@ -7682,12 +7670,12 @@ msgstr "分类名称"
#. module: base
#: view:ir.actions.act_window:0
msgid "Select Groups"
msgstr ""
msgstr "选择组"
#. module: base
#: field:ir.sequence,weight:0
msgid "Weight"
msgstr ""
msgstr "重量"
#. module: base
#: view:res.lang:0
@ -7740,6 +7728,12 @@ msgstr "最新版本"
msgid "ir.actions.server"
msgstr "ir.actions.server"
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr "记录规则"
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -7758,7 +7752,7 @@ msgstr "设置向导"
#. module: base
#: field:res.lang,code:0
msgid "Locale Code"
msgstr ""
msgstr "地区代码"
#. module: base
#: field:workflow.activity,split_mode:0
@ -7850,7 +7844,7 @@ msgstr "塞舌尔"
#: code:addons/base/res/res_user.py:0
#, python-format
msgid "You can not have two users with the same login !"
msgstr ""
msgstr "用户名必须唯一!"
#. module: base
#: model:res.country,name:base.sl
@ -7890,7 +7884,7 @@ msgstr "资源对象"
#: field:res.partner.address,function:0
#: selection:workflow.activity,kind:0
msgid "Function"
msgstr "能"
msgstr "能"
#. module: base
#: selection:res.partner.address,type:0
@ -7980,8 +7974,8 @@ msgstr "斯里兰卡"
msgid "Russian / русский язык"
msgstr "俄语 / русский язык"
#~ msgid "res.company"
#~ msgstr "公司"
#~ msgid "Main Company"
#~ msgstr "公司"
#, python-format
#~ msgid "No journal for ending writing has been defined for the fiscal year"
@ -8196,42 +8190,16 @@ msgstr "俄语 / русский язык"
#~ msgid "Bad query."
#~ msgstr "无效的查询。"
#~ msgid "Titles"
#~ msgstr "称谓"
#, python-format
#~ msgid "The search method is not implemented on this object !"
#~ msgstr "该对象尚未实现“search”方法"
#~ msgid "The VAT doesn't seem to be correct."
#~ msgstr "增值税似乎不正确。"
#~ msgid "IT sector"
#~ msgstr "信息技术部门"
#, python-format
#~ msgid ""
#~ "Cannot delete Purchase Order(s) which are in %s State!' % s['state']))\n"
#~ " return super(purchase_order, self).unlink(cr, uid, unlink_ids, "
#~ "context=context)\n"
#~ "\n"
#~ " def button_dummy(self, cr, uid, ids, context={}):\n"
#~ " return True\n"
#~ "\n"
#~ " def onchange_dest_address_id(self, cr, uid, ids, adr_id):\n"
#~ " if not adr_id:\n"
#~ " return {}\n"
#~ " part_id = self.pool.get('res.partner.address"
#~ msgstr ""
#~ "无法删除在%s状态的采购订单' % s['state']))\n"
#~ " return super(purchase_order, self).unlink(cr, uid, unlink_ids, \n"
#~ "context=context)\n"
#~ "\n"
#~ " def button_dummy(self, cr, uid, ids, context={}):\n"
#~ " return True\\n\n"
#~ "\n"
#~ " def onchange_dest_address_id(self, cr, uid, ids, adr_id):\n"
#~ " if not adr_id:\n"
#~ " return {}\n"
#~ " part_id = self.pool.get('res.partner.address"
#, python-format
#~ msgid ""
#~ "Could not resolve product category, ' \\n "
@ -9443,3 +9411,6 @@ msgstr "俄语 / русский язык"
#, python-format
#~ msgid "Directory name must be unique!"
#~ msgstr "目录名必须唯一!"
#~ msgid "Partner Functions"
#~ msgstr "业务伙伴职能"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-12-09 10:13+0000\n"
"POT-Creation-Date: 2009-12-18 08:39+0000\n"
"PO-Revision-Date: 2009-11-24 12:56+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-15 05:03+0000\n"
"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base
@ -193,11 +193,6 @@ msgstr ""
msgid "Number of Modules"
msgstr ""
#. module: base
#: help:multi_company.default,company_dest_id:0
msgid "Company to store the current record"
msgstr ""
#. module: base
#: field:res.partner.bank.type.field,size:0
msgid "Max. Size"
@ -403,7 +398,7 @@ msgid "Country Name"
msgstr "国家名称"
#. module: base
#: model:res.country,name:base.co
#: model:res.country,name:base.coreturn
msgid "Colombia"
msgstr ""
@ -729,6 +724,12 @@ msgstr ""
msgid "Iran"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
msgid "My Requests"
msgstr ""
#. module: base
#: field:ir.sequence,name:0
#: field:ir.sequence.type,name:0
@ -983,22 +984,7 @@ msgstr ""
#. module: base
#: code:addons/base/ir/ir_model.py:0
#, python-format
msgid ""
"Model %s Does not Exist !\" % vals['relation']))\n"
" \n"
" if self.pool.get(vals['model']):\n"
" self.pool.get(vals['model']).__init__(self.pool, cr)\n"
" self.pool.get(vals['model'])._auto_init(cr, {})\n"
" \n"
" return res\n"
"ir_model_fields()\n"
"\n"
"class ir_model_access(osv.osv):\n"
" _name = 'ir.model.access'\n"
" _columns = {\n"
" 'name': fields.char('Name', size=64, required=True),\n"
" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n"
" 'group_id': fields.many2one('res.groups', 'Group"
msgid "Model %s Does not Exist !"
msgstr ""
#. module: base
@ -1097,6 +1083,14 @@ msgstr ""
msgid "Fixed Width"
msgstr "固定宽度"
#. module: base
#: model:res.company,overdue_msg:base.main_company
msgid ""
"Would your payment have been carried out after this mail was sent, please "
"consider the present one as void. Do not hesitate to contact our accounting "
"department at (+32).81.81.37.00."
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "terp-calendar"
@ -1132,14 +1126,9 @@ msgid "7. %H:%M:%S ==> 18:25:20"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "父项"
#: help:res.users,company_id:0
msgid "The company this user is currently working on."
msgstr ""
#. module: base
#: help:ir.actions.server,message:0
@ -1346,6 +1335,11 @@ msgstr ""
msgid "Groups"
msgstr ""
#. module: base
#: constraint:res.users:0
msgid "This user can not connect using this company !"
msgstr ""
#. module: base
#: model:res.country,name:base.bz
msgid "Belize"
@ -1566,6 +1560,12 @@ msgstr ""
msgid "Field Mappings"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-closed
#: model:ir.ui.menu,name:base.next_id_12_close
msgid "My Closed Requests"
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
msgid "Customization"
@ -1622,11 +1622,6 @@ msgstr ""
msgid "Iteration Actions"
msgstr ""
#. module: base
#: help:multi_company.default,company_id:0
msgid "Company where the user is connected"
msgstr ""
#. module: base
#: field:maintenance.contract,date_stop:0
msgid "Ending Date"
@ -1829,11 +1824,6 @@ msgstr ""
msgid "Dependencies"
msgstr ""
#. module: base
#: field:multi_company.default,company_id:0
msgid "Main Company"
msgstr "主要公司"
#. module: base
#: field:ir.report.custom.fields,bgcolor:0
msgid "Background Color"
@ -1951,6 +1941,12 @@ msgstr ""
msgid "Module"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
msgid "Bank List"
msgstr ""
#. module: base
#: field:ir.attachment,description:0
#: field:ir.module.module,description:0
@ -2317,11 +2313,6 @@ msgstr ""
msgid "6. %d, %m ==> 05, 12"
msgstr ""
#. module: base
#: help:multi_company.default,expression:0
msgid "Expression, must be True to match"
msgstr ""
#. module: base
#: help:res.partner,customer:0
msgid "Check this box if the partner is a customer."
@ -2431,11 +2422,6 @@ msgstr ""
msgid "Summary"
msgstr "动作结果"
#. module: base
#: field:multi_company.default,expression:0
msgid "Expression"
msgstr ""
#. module: base
#: help:ir.actions.server,subject:0
msgid ""
@ -3034,6 +3020,7 @@ msgstr ""
#. module: base
#: field:ir.rule,field_id:0
#: selection:ir.translation,type:0
#: field:multi_company.default,field_id:0
msgid "Field"
msgstr ""
@ -3101,7 +3088,6 @@ msgstr ""
#: field:ir.rule.group,name:0
#: field:ir.values,name:0
#: field:maintenance.contract.module,name:0
#: field:multi_company.default,name:0
#: field:res.bank,name:0
#: field:res.config.view,name:0
#: field:res.lang,name:0
@ -3627,8 +3613,6 @@ msgid "Signal (button Name)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_bank_form
#: model:ir.ui.menu,name:base.menu_action_res_bank_form
#: view:res.bank:0
#: field:res.partner,bank_ids:0
msgid "Banks"
@ -3889,6 +3873,7 @@ msgid "On Multiple Doc."
msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_base_config_contact
#: field:res.partner,address:0
#: view:res.partner.address:0
msgid "Contacts"
@ -3899,11 +3884,6 @@ msgstr "联系人"
msgid "Faroe Islands"
msgstr ""
#. module: base
#: help:multi_company.default,object_id:0
msgid "Object affect by this rules"
msgstr ""
#. module: base
#: model:ir.actions.wizard,name:base.wizard_upgrade
#: model:ir.ui.menu,name:base.menu_wizard_upgrade
@ -4289,11 +4269,6 @@ msgstr ""
msgid "French (CH) / Français (CH)"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "List of Company"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_NEW"
@ -4407,6 +4382,11 @@ msgstr ""
msgid "res.partner.event"
msgstr ""
#. module: base
#: field:res.company,user_ids:0
msgid "Accepted Users"
msgstr ""
#. module: base
#: selection:ir.ui.menu,icon:0
msgid "STOCK_UNDERLINE"
@ -4526,13 +4506,6 @@ msgstr ""
msgid "iCal id"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Partner Functions"
msgstr ""
#. module: base
#: wizard_view:res.partner.sms_send,init:0
msgid "Bulk SMS send"
@ -4667,11 +4640,6 @@ msgstr ""
msgid "Full"
msgstr ""
#. module: base
#: field:multi_company.default,company_dest_id:0
msgid "Default Company"
msgstr ""
#. module: base
#: model:res.country,name:base.as
msgid "American Samoa"
@ -4911,6 +4879,7 @@ msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_res_company_form
#: model:ir.ui.menu,name:base.menu_action_res_company_form
#: model:ir.ui.menu,name:base.menu_res_company_global
#: view:res.company:0
msgid "Companies"
msgstr ""
@ -5341,9 +5310,10 @@ msgid "Active Partner Events"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
#: model:ir.actions.act_window,name:base.action_partner_function_form
#: model:ir.ui.menu,name:base.menu_partner_function_form
#: view:res.partner.function:0
msgid "Contact Functions"
msgstr ""
#. module: base
@ -5638,8 +5608,6 @@ msgid "Martinique (French)"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.res_request-act
#: model:ir.ui.menu,name:base.menu_res_request_act
#: model:ir.ui.menu,name:base.next_id_12
#: view:res.request:0
msgid "Requests"
@ -5901,6 +5869,11 @@ msgstr ""
msgid "Rounding factor"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_res_company
msgid "res.company"
msgstr ""
#. module: base
#: wizard_view:module.upgrade,end:0
#: wizard_view:module.upgrade,start:0
@ -5981,6 +5954,11 @@ msgstr ""
msgid "Hour 00->24: %(h24)s"
msgstr ""
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr ""
#. module: base
#: field:res.request.history,date_sent:0
msgid "Date sent"
@ -6000,7 +5978,6 @@ msgstr ""
#: view:ir.sequence:0
#: field:ir.ui.menu,sequence:0
#: field:ir.ui.view_sc,sequence:0
#: field:multi_company.default,sequence:0
#: field:res.partner.bank,sequence:0
#: field:wizard.ir.model.menu.create.line,sequence:0
msgid "Sequence"
@ -6066,6 +6043,11 @@ msgstr "表参照"
msgid "Parent"
msgstr "父项"
#. module: base
#: view:multi_company.default:0
msgid "Returning"
msgstr ""
#. module: base
#: field:ir.actions.act_window,res_model:0
#: field:ir.actions.report.custom,model:0
@ -6084,7 +6066,6 @@ msgstr "父项"
#: selection:ir.translation,type:0
#: field:ir.ui.view,model:0
#: field:ir.values,model_id:0
#: field:multi_company.default,object_id:0
#: field:res.request.link,object:0
#: field:wizard.ir.model.menu.create,model_id:0
#: field:workflow.triggers,model:0
@ -6793,6 +6774,17 @@ msgstr ""
msgid "Landscape"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_form
#: model:ir.ui.menu,name:base.menu_base_config_partner
#: model:ir.ui.menu,name:base.menu_base_partner
#: model:ir.ui.menu,name:base.menu_partner_form
#: view:res.partner:0
#: view:res.partner.category:0
#: field:res.partner.category,partner_ids:0
msgid "Partners"
msgstr "父项"
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Administration"
@ -7010,11 +7002,6 @@ msgstr ""
msgid "Second field should be figures"
msgstr ""
#. module: base
#: help:multi_company.default,name:0
msgid "Name it to easily find a record"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_model_grid_security
#: model:ir.ui.menu,name:base.menu_ir_access_grid
@ -7137,11 +7124,6 @@ msgstr ""
msgid "Bank Accounts"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "Default multi company"
msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
@ -7234,12 +7216,6 @@ msgstr ""
msgid "https://translations.launchpad.net/openobject"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_title
#: model:ir.ui.menu,name:base.menu_partner_title
msgid "Titles"
msgstr ""
#. module: base
#: field:ir.actions.todo,start_date:0
msgid "Start Date"
@ -7313,6 +7289,11 @@ msgstr ""
msgid "Delete Permission"
msgstr ""
#. module: base
#: model:ir.model,name:base.model_multi_company_default
msgid "multi_company.default"
msgstr ""
#. module: base
#: selection:workflow.activity,join_mode:0
#: selection:workflow.activity,split_mode:0
@ -7569,6 +7550,11 @@ msgstr ""
msgid "Rwanda"
msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "The VAT doesn't seem to be correct."
msgstr ""
#. module: base
#: selection:ir.report.custom.fields,operation:0
msgid "Calculate Sum"
@ -7713,6 +7699,12 @@ msgstr ""
msgid "ir.actions.server"
msgstr ""
#. module: base
#: model:ir.actions.act_window,name:base.action_rule
#: model:ir.ui.menu,name:base.menu_action_rule
msgid "Record Rules"
msgstr ""
#. module: base
#: view:ir.actions.report.custom:0
msgid "Report custom"
@ -7952,3 +7944,6 @@ msgstr ""
#: selection:module.lang.install,init,lang:0
msgid "Russian / русский язык"
msgstr ""
#~ msgid "Main Company"
#~ msgstr "主要公司"

View File

@ -115,13 +115,12 @@
<field name="padding"/>
<field name="number_increment"/>
<field name="number_next"/>
<field name="weight" />
<field name="condition" colspan="4" />
<field name="weight" />
<separator colspan="4" string="Legend (for prefix, suffix)"/>
<group col="8" colspan="4">
<group>
<label colspan="4" string="Year with century: %%(year)s"/>
<label colspan="4" string="Year without century: %%(y)s"/>
<label colspan="4" string="Current Year with Century: %%(year)s"/>
<label colspan="4" string="Current Year without Century: %%(y)s"/>
<label colspan="4" string="Month: %%(month)s"/>
<label colspan="4" string="Day: %%(day)s"/>
</group>
@ -151,11 +150,11 @@
<field name="name"/>
<field name="code"/>
<field name="company_id"/>
<field name="number_next"/>
<field name="number_increment"/>
<field name="prefix"/>
<field name="padding"/>
<field name="active"/>
<field name="number_next"/>
<field name="number_increment"/>
<field name="prefix"/>
<field name="padding"/>
<field name="active"/>
</tree>
</field>
</record>
@ -341,36 +340,36 @@
<field name="usage"/>
<field name="view_type"/>
<notebook colspan="4">
<page string="General Settings">
<field colspan="4" name="view_ids">
<form string="Views">
<field colspan="4" name="sequence"/>
<field name="view_mode"/>
<field domain="[('type', '=', view_mode)]" name="view_id"/>
</form>
<tree string="Views">
<field name="sequence"/>
<field name="view_mode"/>
<field name="view_id"/>
</tree>
</field>
<field colspan="4" name="default_user_ids"/>
<field colspan="4" name="menus"/>
<field colspan="4" name="domain"/>
<field colspan="4" name="context"/>
<field name="limit"/>
<field name="auto_refresh"/>
<newline/>
<field name="view_mode"/>
<field name="filter"/>
<field name="view_id"/>
<field name="search_view_id"/>
</page>
<page string="Security">
<separator colspan="4" string="Select Groups" />
<field name="groups_id" nolabel="1" colspan="4" />
</page>
</notebook>
<page string="General Settings">
<field colspan="4" name="view_ids">
<form string="Views">
<field colspan="4" name="sequence"/>
<field name="view_mode"/>
<field domain="[('type', '=', view_mode)]" name="view_id"/>
</form>
<tree string="Views">
<field name="sequence"/>
<field name="view_mode"/>
<field name="view_id"/>
</tree>
</field>
<field colspan="4" name="default_user_ids"/>
<field colspan="4" name="menus"/>
<field colspan="4" name="domain"/>
<field colspan="4" name="context"/>
<field name="limit"/>
<field name="auto_refresh"/>
<newline/>
<field name="view_mode"/>
<field name="filter"/>
<field name="view_id"/>
<field name="search_view_id"/>
</page>
<page string="Security">
<separator colspan="4" string="Select Groups" />
<field name="groups_id" nolabel="1" colspan="4" />
</page>
</notebook>
</form>
</field>
</record>
@ -996,7 +995,8 @@
<field name="type">tree</field>
<field eval="8" name="priority"/>
<field name="arch" type="xml">
<tree string="Menu">
<tree string="Menu" editable="top">
<field name="sequence"/>
<field icon="icon" name="complete_name"/>
</tree>
</field>
@ -1203,23 +1203,10 @@
<field model="ir.model" name="model_id" ref="model_ir_property"/>
<field eval="True" name="global"/>
</record>
<record id="property_rule_group2" model="ir.rule.group">
<field name="name">Property multi-company 2</field>
<field model="ir.model" name="model_id" ref="model_ir_property"/>
<field eval="True" name="global"/>
</record>
<record id="property_rule" model="ir.rule">
<field model="ir.model.fields" name="field_id" search="[('model', '=', 'ir.property'), ('name', '=', 'company_id')]"/>
<field name="operator">child_of</field>
<field name="operand">user.company_id.id</field>
<field name="domain_force">['|',('company_id','child_of',user.company_id.id),('company_id','=',False)]</field>
<field name="rule_group" ref="property_rule_group"/>
</record>
<record id="property_rule_bis" model="ir.rule">
<field model="ir.model.fields" name="field_id" search="[('model', '=', 'ir.property'), ('name', '=', 'company_id')]"/>
<field name="operator">=</field>
<field name="operand">False</field>
<field name="rule_group" ref="property_rule_group2"/>
</record>
<!--server action view-->
@ -1229,13 +1216,12 @@
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Server Action">
<group col="6" colspan="4">
<field name="name" select="1"/>
<field name="model_id" select="1"/>
<field name="state" select="1"/>
<field name="sequence" select="2"/>
<field name="condition"/>
</group>
<group col="6" colspan="4">
<field name="name" select="1"/>
<field name="model_id" select="1"/>
<field name="state" select="1"/>
<field name="sequence" select="2"/>
</group>
<notebook colspan="4">
<page string="Python Code" attrs="{'invisible':[('state','!=','code')]}">
<separator colspan="4" string="Python Code"/>
@ -1248,7 +1234,7 @@
<field name="trigger_name" select="2" attrs="{'required':[('state','=','trigger')]}"/>
</page>
<page string="Action to Launch" attrs="{'invisible':[('state','!=','client_action')]}">
<separator colspan="4" string="Client Action Configuration"/>
<separator colspan="4" string="Client Action Configuration"/>
<field name="action_id" select="2" attrs="{'required':[('state','=','client_action')]}"/>
</page>
<page string="Email Configuration" attrs="{'invisible':[('state','!=','email')]}">
@ -1268,7 +1254,7 @@
</page>
<page string="Create / Write" attrs="{'invisible':[('state','!=','object_create'),('state','!=','object_write')]}">
<separator colspan="4" string="Fields Mapping"/>
<field name="srcmodel_id" select="2" attrs="{'required':[('state','!=','dummy'), ('state','!=','sms'), ('state','!=','code'), ('state','!=','loop'),('state','!=','trigger'), ('state','!=','client_action'), ('state','!=','email'), ('state','!=','sms'), ('state','!=','other')]}"/>
<field name="srcmodel_id" select="2" attrs="{'required':[('state','!=','dummy'), ('state','!=','sms'), ('state','!=','code'), ('state','!=','loop'),('state','!=','trigger'), ('state','!=','client_action'), ('state','!=','email'), ('state','!=','sms'), ('state','!=','other')]}"/>
<field name="fields_lines" nolabel="1" select="2" colspan="4">
<tree string="Field Mappings" editable="top">
<field name="col1" domain="[('model_id','=',parent.srcmodel_id or parent.model_id)]"/>
@ -1293,8 +1279,7 @@
<page string="Multi Actions" attrs="{'invisible':[('state','!=','other')]}">
<separator colspan="4" string="Other Actions Configuration"/>
<field name="child_ids" nolabel="1" colspan="4"/>
<label colspan="4" string="Only one client action will be execute, last
clinent action will be consider in case of multiples clients actions" align="0.0"/>
<label colspan="4" string="Only one client action will be executed, last client action will be considered in case of multiple client actions." align="0.0"/>
</page>
</notebook>
<field name="type" readonly="1"/>
@ -1355,11 +1340,10 @@
<field name="type">tree</field>
<field name="arch" type="xml">
<tree editable="bottom" string="Config Wizard Steps">
<field name="name" select="1"/>
<field name="action_id" select="1"/>
<field name="sequence"/>
<field name="action_id" select="1"/>
<field name="state"/>
<field name="active" select="1"/>
<field name="active" select="2"/>
</tree>
</field>
</record>
@ -1369,12 +1353,10 @@
<field name="type">form</field>
<field name="arch" type="xml">
<form editable="bottom" string="Config Wizard Steps">
<field name="name" select="1"/>
<field name="active" select="1"/>
<field name="action_id" select="1"/>
<field name="sequence"/>
<field name="action_id" select="1"/>
<field name="state"/>
<field colspan="4" name="note"/>
<field name="active" select="2"/>
</form>
</field>
</record>
@ -1383,42 +1365,18 @@
<field name="res_model">ir.actions.todo</field>
<field name="view_id" ref="ir_actions_todo_tree"/>
<field name="view_type">form</field>
<field name="domain">[('type','=','configure')]</field>
</record>
<menuitem id="next_id_11" name="Configuration Wizards" parent="base.menu_config" sequence="1"/>
<menuitem action="act_ir_actions_todo_form" id="menu_ir_actions_todo_form" parent="next_id_11"/>
<record id="view_config_wizard_form" model="ir.ui.view">
<field name="name">Main Configuration Wizard</field>
<field name="model">ir.actions.configuration.wizard</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Next Configuration Step">
<image name="gtk-dialog-info"/>
<group>
<separator string="Next Configuration Step" colspan="4"/>
<field name="name" nolabel="1" colspan="4" width="500"/>
<field name="progress" widget="progressbar"/>
<separator colspan="4" string=""/>
<label string="" colspan="2"/>
<group colspan="2" col="2">
<button icon="gtk-cancel" name="button_skip" string="Skip Step" type="object"/>
<button icon="gtk-go-forward" name="button_continue" string="Continue" type="object"/>
</group>
</group>
</form>
</field>
<record id="action_start_configurator" model="ir.actions.server">
<field name="name">Start Configuration</field>
<field name="model_id" ref="model_res_config"/>
<field name="state">code</field>
<field name="code">action = self.next(cr, uid, [])</field>
</record>
<record id="action_config_wizard_form" model="ir.actions.act_window">
<field name="name">Configuration Wizard</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">ir.actions.configuration.wizard</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
<menuitem action="action_config_wizard_form" id="menu_config_module" parent="base.next_id_11"/>
<menuitem action="action_start_configurator" name="Start Configuration"
id="menu_configurator_module" parent="next_id_11"
type="server"/>
</data>
</openerp>

View File

@ -28,7 +28,6 @@ import netsvc
import re
import copy
import sys
from xml import dom
class actions(osv.osv):
@ -344,59 +343,6 @@ class ir_model_fields(osv.osv):
_columns = {
'complete_name': fields.char('Complete Name', size=64, select=1),
}
def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
return super(ir_model_fields, self).name_search(cr, uid, name, args, operator, context, limit)
# def get_fields(cr, uid, field, rel):
# result = []
# mobj = self.pool.get('ir.model')
# id = mobj.search(cr, uid, [('model','=',rel)])
# obj = self.pool.get('ir.model.fields')
# ids = obj.search(cr, uid, [('model_id','in',id)])
# records = obj.read(cr, uid, ids)
# for record in records:
# id = record['id']
# fld = field + '/' + record['name']
# result.append((id, fld))
# return result
# if not args:
# args=[]
# if not context:
# context={}
# return super(ir_model_fields, self).name_search(cr, uid, name, args, operator, context, limit)
# if context.get('key') != 'server_action':
# return super(ir_model_fields, self).name_search(cr, uid, name, args, operator, context, limit)
# result = []
# obj = self.pool.get('ir.model.fields')
# ids = obj.search(cr, uid, args)
# records = obj.read(cr, uid, ids)
# for record in records:
# id = record['id']
# field = record['name']
# if record['ttype'] == 'many2one':
# rel = record['relation']
# res = get_fields(cr, uid, field, record['relation'])
# for rs in res:
# result.append(rs)
# result.append((id, field))
# for rs in result:
# obj.write(cr, uid, [rs[0]], {'complete_name':rs[1]})
# iids = []
# for rs in result:
# iids.append(rs[0])
# result = super(ir_model_fields, self).name_search(cr, uid, name, [('complete_name','ilike',name), ('id','in',iids)], operator, context, limit)
# return result
ir_model_fields()
class server_object_lines(osv.osv):
@ -429,7 +375,7 @@ class actions_server(osv.osv):
result = cr.fetchall() or []
res = []
for rs in result:
if not rs[0] == None and not rs[1] == None:
if rs[0] is not None and rs[1] is not None:
res.append(rs)
return res
@ -577,8 +523,8 @@ class actions_server(osv.osv):
if action.state=='client_action':
if not action.action_id:
raise osv.except_osv(_('Error'), _("Please specify an action to launch !"))
result = self.pool.get(action.action_id.type).read(cr, uid, action.action_id.id, context=context)
return result
return self.pool.get(action.action_id.type)\
.read(cr, uid, action.action_id.id, context=context)
if action.state == 'code':
localdict = {
@ -733,128 +679,29 @@ class act_window_close(osv.osv):
act_window_close()
# This model use to register action services.
# if action type is 'configure', it will be start on configuration wizard.
# if action type is 'service',
# - if start_type= 'at once', it will be start at one time on start date
# - if start_type='auto', it will be start on auto starting from start date, and stop on stop date
# - if start_type="manual", it will start and stop on manually
TODO_STATES = [('open', 'Not Started'),
('done', 'Done'),
('skip','Skipped'),
('cancel','Cancel')]
class ir_actions_todo(osv.osv):
_name = 'ir.actions.todo'
_columns={
'name':fields.char('Name',size=64,required=True, select=True),
'note':fields.text('Text', translate=True),
'start_date': fields.datetime('Start Date'),
'end_date': fields.datetime('End Date'),
'action_id':fields.many2one('ir.actions.act_window', 'Action', select=True,required=True, ondelete='cascade'),
'sequence':fields.integer('Sequence'),
'action_id': fields.many2one(
'ir.actions.act_window', 'Action', select=True, required=True,
ondelete='cascade'),
'sequence': fields.integer('Sequence'),
'active': fields.boolean('Active'),
'type':fields.selection([('configure', 'Configure'),('service', 'Service'),('other','Other')], string='Type', required=True),
'start_on':fields.selection([('at_once', 'At Once'),('auto', 'Auto'),('manual','Manual')], string='Start On'),
'groups_id': fields.many2many('res.groups', 'res_groups_act_todo_rel', 'act_todo_id', 'group_id', 'Groups'),
'users_id': fields.many2many('res.users', 'res_users_act_todo_rel', 'act_todo_id', 'user_id', 'Users'),
'state':fields.selection([('open', 'Not Started'),('done', 'Done'),('skip','Skipped'),('cancel','Cancel')], string='State', required=True)
'state': fields.selection(TODO_STATES, string='State', required=True),
'name':fields.char('Name', size=64),
'note':fields.text('Text', translate=True),
}
_defaults={
'state': lambda *a: 'open',
'sequence': lambda *a: 10,
'active':lambda *a:True,
'type':lambda *a:'configure'
'active': lambda *a: True,
}
_order="sequence"
ir_actions_todo()
# This model to use run all configuration actions
class ir_actions_configuration_wizard(osv.osv_memory):
_name='ir.actions.configuration.wizard'
def next_configuration_action(self,cr,uid,context={}):
item_obj = self.pool.get('ir.actions.todo')
item_ids = item_obj.search(cr, uid, [('type','=','configure'),('state', '=', 'open'),('active','=',True)], limit=1, context=context)
if item_ids and len(item_ids):
item = item_obj.browse(cr, uid, item_ids[0], context=context)
return item
return False
def _get_action_name(self, cr, uid, context={}):
next_action=self.next_configuration_action(cr,uid,context=context)
if next_action:
return next_action.note
else:
return "Your database is now fully configured.\n\nClick 'Continue' and enjoy your OpenERP experience..."
return False
def _get_action(self, cr, uid, context={}):
next_action=self.next_configuration_action(cr,uid,context=context)
if next_action:
return next_action.id
return False
def _progress_get(self,cr,uid, context={}):
total = self.pool.get('ir.actions.todo').search_count(cr, uid, [], context)
todo = self.pool.get('ir.actions.todo').search_count(cr, uid, [('type','=','configure'),('active','=',True),('state','<>','open')], context)
if total > 0.0:
return max(5.0,round(todo*100/total))
else:
return 100.0
_columns = {
'name': fields.text('Next Wizard',readonly=True),
'progress': fields.float('Configuration Progress', readonly=True),
'item_id':fields.many2one('ir.actions.todo', 'Next Configuration Wizard',invisible=True, readonly=True),
}
_defaults={
'progress': _progress_get,
'item_id':_get_action,
'name':_get_action_name,
}
def button_next(self,cr,uid,ids,context=None):
user_action=self.pool.get('res.users').browse(cr,uid,uid)
act_obj=self.pool.get(user_action.menu_id.type)
action_ids=act_obj.search(cr,uid,[('name','=',user_action.menu_id.name)])
action_open=act_obj.browse(cr,uid,action_ids)[0]
if context.get('menu',False):
return{
'view_type': action_open.view_type,
'view_id':action_open.view_id and [action_open.view_id.id] or False,
'res_model': action_open.res_model,
'type': action_open.type,
'domain':action_open.domain
}
return {'type':'ir.actions.act_window_close'}
def button_skip(self,cr,uid,ids,context=None):
item_obj = self.pool.get('ir.actions.todo')
item_id=self.read(cr,uid,ids)[0]['item_id']
if item_id:
item = item_obj.browse(cr, uid, item_id, context=context)
item_obj.write(cr, uid, item.id, {
'state': 'skip',
}, context=context)
return{
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
return self.button_next(cr, uid, ids, context)
def button_continue(self, cr, uid, ids, context=None):
item_obj = self.pool.get('ir.actions.todo')
item_id=self.read(cr,uid,ids)[0]['item_id']
if item_id:
item = item_obj.browse(cr, uid, item_id, context=context)
item_obj.write(cr, uid, item.id, {
'state': 'done',
}, context=context)
return{
'view_mode': item.action_id.view_mode,
'view_type': item.action_id.view_type,
'view_id':item.action_id.view_id and [item.action_id.view_id.id] or False,
'res_model': item.action_id.res_model,
'type': item.action_id.type,
'target':item.action_id.target,
}
return self.button_next(cr, uid, ids, context)
ir_actions_configuration_wizard()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -87,7 +87,7 @@ class ir_model(osv.osv):
if vals.get('state','base')=='manual':
self.instanciate(cr, user, vals['model'], context)
self.pool.get(vals['model']).__init__(self.pool, cr)
self.pool.get(vals['model'])._auto_init(cr,{})
self.pool.get(vals['model'])._auto_init(cr,{'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0')})
#pooler.restart_pool(cr.dbname)
return res
@ -117,10 +117,10 @@ class ir_model_grid(osv.osv):
result = super(osv.osv, self).read(cr, uid, ids, fields, context, load)
allgr = self.pool.get('res.groups').search(cr, uid, [], context=context)
acc_obj = self.pool.get('ir.model.access')
if not isinstance(result,list):
result=[result]
for res in result:
rules = acc_obj.search(cr, uid, [('model_id', '=', res['id'])])
rules_br = acc_obj.browse(cr, uid, rules, context=context)
@ -253,18 +253,19 @@ class ir_model_fields(osv.osv):
vals['model'] = model_data.model
if context and context.get('manual',False):
vals['state'] = 'manual'
res = super(ir_model_fields,self).create(cr, user, vals, context)
res = super(ir_model_fields,self).create(cr, user, vals, context)
if vals.get('state','base') == 'manual':
if not vals['name'].startswith('x_'):
raise except_orm(_('Error'), _("Custom fields must have a name that starts with 'x_' !"))
if 'relation' in vals and not self.pool.get('ir.model').search(cr, user, [('model','=',vals['relation'])]):
raise except_orm(_('Error'), _("Model %s Does not Exist !" % vals['relation']))
if self.pool.get(vals['model']):
self.pool.get(vals['model']).__init__(self.pool, cr)
self.pool.get(vals['model'])._auto_init(cr, {})
#Added context to _auto_init for special treatment to custom field for select_level
self.pool.get(vals['model'])._auto_init(cr, {'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0')})
return res
ir_model_fields()
@ -464,7 +465,7 @@ class ir_model_data(osv.osv):
if (not xml_id) and (not self.doinit):
return False
action_id = False
if xml_id:
cr.execute('select id,res_id from ir_model_data where module=%s and name=%s', (module,xml_id))
results = cr.fetchall()
@ -573,7 +574,7 @@ class ir_model_data(osv.osv):
def _process_end(self, cr, uid, modules):
if not modules:
return True
modules = list(modules)
modules = list(modules)
module_in = ",".join(["%s"] * len(modules))
cr.execute('select id,name,model,res_id,module from ir_model_data where module in (' + module_in + ') and noupdate=%s', modules + [False])
wkf_todo = []
@ -610,38 +611,4 @@ class ir_model_data(osv.osv):
return True
ir_model_data()
class ir_model_config(osv.osv):
_name = 'ir.model.config'
_columns = {
'password': fields.char('Password', size=64),
'password_check': fields.char('Confirmation', size=64),
}
def action_cancel(self, cr, uid, ids, context={}):
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
def action_update_pw(self, cr, uid, ids, context={}):
res = self.read(cr,uid,ids)[0]
root = self.pool.get('res.users').browse(cr, uid, [1])[0]
self.unlink(cr, uid, [res['id']])
if res['password']!=res['password_check']:
raise except_orm(_('Error'), _("Password mismatch !"))
elif not res['password']:
raise except_orm(_('Error'), _("Password empty !"))
self.pool.get('res.users').write(cr, uid, [root.id], {'password':res['password']})
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
ir_model_config()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -110,11 +110,10 @@ class ir_rule(osv.osv):
if rule.domain_force:
res[rule.id] = eval(rule.domain_force, eval_user_data)
else:
if rule.operand.startswith('user.') and rule.operand.count('.') > 1:
if rule.operand and rule.operand.startswith('user.') and rule.operand.count('.') > 1:
#Need to check user.field.field1.field2(if field is False,it will break the chain)
op = rule.operand[5:]
rule.operand = rule.operand[:5+len(op[:op.find('.')])] +' and '+ rule.operand + ' or False'
if rule.operator in ('in', 'child_of'):
dom = eval("[('%s', '%s', [%s])]" % (rule.field_id.name, rule.operator,
eval(rule.operand,eval_user_data)), eval_user_data)
@ -137,10 +136,9 @@ class ir_rule(osv.osv):
if not (field_id or operator or operand):
return {}
def domain_get(self, cr, uid, model_name):
# root user above constraint
def domain_get(self, cr, uid, model_name, context={}):
if uid == 1:
return '', []
return [], [], ['"'+self.pool.get(model_name)._table+'"']
cr.execute("""SELECT r.id FROM
ir_rule r
@ -152,64 +150,11 @@ class ir_rule(osv.osv):
JOIN res_groups_users_rel u_rel ON (g_rel.group_id = u_rel.gid)
WHERE u_rel.uid = %s) OR g.global)""", (model_name, uid))
ids = map(lambda x:x[0], cr.fetchall())
if not ids:
return '', []
obj = self.pool.get(model_name)
add = []
add_str = []
sub = []
sub_str = []
clause={}
clause_global={}
dom = []
for rule in self.browse(cr, uid, ids):
dom = rule.domain
if rule.rule_group['global']:
clause_global.setdefault(rule.rule_group.id, [])
clause_global[rule.rule_group.id].append(obj._where_calc(cr, uid, dom, active_test=False))
else:
clause.setdefault(rule.rule_group.id, [])
clause[rule.rule_group.id].append(obj._where_calc(cr, uid, dom, active_test=False))
def _query(clause, test):
query = ''
val = []
for g in clause.values():
if not g:
continue
if len(query):
query += ' '+test+' '
query += '('
first = True
for c in g:
if not first:
query += ' AND '
first = False
query += '('
first2 = True
for clause in c[0]:
if not first2:
query += ' AND '
first2 = False
query += clause
query += ')'
val += c[1]
query += ')'
return query, val
query, val = _query(clause, 'OR')
query_global, val_global = _query(clause_global, 'OR')
if query_global:
if query:
query = '('+query+') OR '+query_global
val.extend(val_global)
else:
query = query_global
val = val_global
if query:
query = '('+query+')'
return query, val
dom += rule.domain
d1,d2,tables = self.pool.get(model_name)._where_calc(cr, uid, dom, active_test=False)
return d1, d2, tables
domain_get = tools.cache()(domain_get)
def unlink(self, cr, uid, ids, context=None):

View File

@ -1,27 +1,27 @@
# -*- coding: utf-8 -*-
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
# $Id$
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import time
from osv import fields,osv
from tools.safe_eval import safe_eval
import pooler
class ir_sequence_type(osv.osv):
@ -47,17 +47,12 @@ class ir_sequence(osv.osv):
'number_next': fields.integer('Next Number', required=True),
'number_increment': fields.integer('Increment Number', required=True),
'padding' : fields.integer('Number padding', required=True),
'condition': fields.char('Condition', size=250, help="If set, sequence will only be used in case this python expression matches, and will precede other sequences."),
'weight': fields.integer('Weight',required=True, help="If two sequences match, the highest weight will be used."),
'company_id' : fields.many2one('res.company', 'Company'),
}
_defaults = {
'active': lambda *a: True,
'number_increment': lambda *a: 1,
'number_next': lambda *a: 1,
'padding' : lambda *a : 0,
'weight' : lambda *a: 10,
'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'ir.sequence', c)
}
def _process(self, s):
@ -75,30 +70,12 @@ class ir_sequence(osv.osv):
'sec': time.strftime('%S'),
}
def get_id(self, cr, uid, sequence_id, test='id=%s', context=None):
if not context:
context = {}
def get_id(self, cr, uid, sequence_id, test='id', context=None):
try:
cr.execute('SELECT id, number_next, prefix, suffix, padding, condition \
FROM ir_sequence \
WHERE '+test+' AND active=%s ORDER BY weight DESC, length(COALESCE(condition,\'\')) DESC \
FOR UPDATE', (sequence_id, True))
for res in cr.dictfetchall():
if res['condition']:
print "ir_seq: %s has condition:" %res['id'], res['condition'],
try:
bo = safe_eval(res['condition'],context)
if not bo:
print "not matched"
continue
except Exception,e:
# it would be normal to have exceptions, because
# the domain may contain errors
print "Exception.\ne:",e
print "Context:", context
continue
print "Matched!"
assert test in ('code','id')
cr.execute('SELECT id, number_next, prefix, suffix, padding FROM ir_sequence WHERE '+test+'=%s AND active=%s FOR UPDATE', (sequence_id, True))
res = cr.dictfetchone()
if res:
cr.execute('UPDATE ir_sequence SET number_next=number_next+number_increment WHERE id=%s AND active=%s', (res['id'], True))
if res['number_next']:
return self._process(res['prefix']) + '%%0%sd' % res['padding'] % res['number_next'] + self._process(res['suffix'])
@ -108,8 +85,8 @@ class ir_sequence(osv.osv):
cr.commit()
return False
def get(self, cr, uid, code, context = None):
return self.get_id(cr, uid, code, test='code=%s',context=context)
def get(self, cr, uid, code):
return self.get_id(cr, uid, code, test='code')
ir_sequence()

View File

@ -235,7 +235,7 @@ class ir_values(osv.osv):
#ir_del(cr, uid, x[0])
return False
else:
datas = pickle.loads(str(x[2]))
datas = pickle.loads(str(x[2].encode('utf-8')))
if meta:
meta2 = pickle.loads(x[4])
return (x[0],x[1],datas,meta2)

View File

@ -20,6 +20,7 @@
##############################################################################
import module
import module_web
import wizard
import report

View File

@ -196,10 +196,18 @@ class module(osv.osv):
return True
if isinstance(ids, (int, long)):
ids = [ids]
for mod in self.read(cr, uid, ids, ['state'], context):
mod_names = []
for mod in self.read(cr, uid, ids, ['state','name'], context):
if mod['state'] in ('installed', 'to upgrade', 'to remove', 'to install'):
raise orm.except_orm(_('Error'),
_('You try to remove a module that is installed or will be installed'))
mod_names.append(mod['name'])
#Removing the entry from ir_model_data
ids_meta = self.pool.get('ir.model.data').search(cr, uid, [('name', '=', 'module_meta_information'), ('module', 'in', mod_names)])
if ids_meta:
self.pool.get('ir.model.data').unlink(cr, uid, ids_meta, context)
return super(module, self).unlink(cr, uid, ids, context=context)
def state_update(self, cr, uid, ids, newstate, states_to_update, context={}, level=100):

View File

@ -113,7 +113,7 @@
<field name="model">ir.module.module</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree colors="blue:state=='to upgrade' or state=='to install';red:state=='uninstalled';grey:state=='uninstallable'" string="Modules">
<tree colors="blue:state=='to upgrade' or state=='to install';red:state=='uninstalled';grey:state=='uninstallable';black:state=='installed'" string="Modules">
<field name="name"/>
<field name="shortdesc"/>
<field name="author"/>

View File

@ -0,0 +1,46 @@
from osv import fields, osv, orm
class module_web(osv.osv):
_name = "ir.module.web"
_description = "Web Module"
_columns = {
'name': fields.char("Name", size=128, readonly=True, required=True),
'module': fields.char("Module", size=128, readonly=True, required=True),
'description': fields.text("Description", readonly=True, translate=True),
'author': fields.char("Author", size=128, readonly=True),
'website': fields.char("Website", size=256, readonly=True),
'state': fields.selection([
('uninstallable','Uninstallable'),
('uninstalled','Not Installed'),
('installed','Installed')
], string='State', readonly=True)
}
_defaults = {
'state': lambda *a: 'uninstalled',
}
_order = 'name'
_sql_constraints = [
('name_uniq', 'unique (name)', 'The name of the module must be unique !'),
]
def update_module_list(self, cr, uid, modules, context={}):
for module in modules:
mod_name = module['name']
ids = self.search(cr, uid, [('name','=',mod_name)])
if ids:
self.write(cr, uid, ids, module)
else:
self.create(cr, uid, module)
def button_install(self, cr, uid, ids, context={}):
return self.write(cr, uid, ids, {'state': 'installed'}, context)
def button_uninstall(self, cr, uid, ids, context={}):
return self.write(cr, uid, ids, {'state': 'uninstalled'}, context)
module_web()

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="module_web_tree" model="ir.ui.view">
<field name="name">ir.module.web.tree</field>
<field name="model">ir.module.web</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="module"/>
<field name="description"/>
<field name="author"/>
<field name="state"/>
<button name="button_install" string="Install" type="object" states="uninstalled" context="{'reload': 1}"/>
<button name="button_uninstall" string="Uninstall" type="object" states="installed" context="{'reload': 1}"/>
</tree>
</field>
</record>
<record id="open_module_web_list" model="ir.actions.url">
<field name="name">web_module_list</field>
<field name="url">/modules</field>
</record>
<menuitem name="Web Modules" action="open_module_web_list" id="open_module_web_list_url" type="url" parent="base.menu_management"/>
</data>
</openerp>

View File

@ -92,13 +92,8 @@ class wizard_info_get(wizard.interface):
return {}
def _config(self, cr, uid, data, context=None):
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
return pooler.get_pool(cr.dbname).get('res.config')\
.next(cr, uid, [], context=context)
states = {
'init': {
@ -183,13 +178,8 @@ class wizard_info_get_simple(wizard.interface):
return {}
def _config(self, cr, uid, data, context=None):
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
return pooler.get_pool(cr.dbname).get('res.config')\
.next(cr, uid, [], context=context)
states = {
'init': {

View File

@ -25,6 +25,7 @@ import country
import bank
import res_lang
import partner
import res_config
import res_currency
import res_company
import res_user

View File

@ -25,17 +25,6 @@ from osv import osv,fields
# Properties
# -------------------------------------------------------------------------
def _models_get2(self, cr, uid, context={}):
obj = self.pool.get('ir.model.fields')
ids = obj.search(cr, uid, [('view_load','=',1)])
res = []
done = {}
for o in obj.browse(cr, uid, ids, context=context):
if o.relation not in done:
res.append( [o.relation, o.relation])
done[o.relation] = True
return res
def _models_get(self, cr, uid, context={}):
obj = self.pool.get('ir.model.fields')
ids = obj.search(cr, uid, [('view_load','=',1)])
@ -51,7 +40,7 @@ class ir_property(osv.osv):
_name = 'ir.property'
_columns = {
'name': fields.char('Name', size=128),
'value': fields.reference('Value', selection=_models_get2, size=128),
'value': fields.char('Value', size=128),
'res_id': fields.reference('Resource', selection=_models_get, size=128),
'company_id': fields.many2one('res.company', 'Company'),
'fields_id': fields.many2one('ir.model.fields', 'Fields', ondelete='cascade', required=True)

View File

@ -115,7 +115,7 @@ def _partner_title_get(self, cr, uid, context={}):
obj = self.pool.get('res.partner.title')
ids = obj.search(cr, uid, [('domain', '=', 'partner')])
res = obj.read(cr, uid, ids, ['shortcut','name'], context)
return [(r['shortcut'], r['name']) for r in res]
return [(r['shortcut'], r['name']) for r in res] + [('','')]
def _lang_get(self, cr, uid, context={}):
obj = self.pool.get('res.lang')
@ -151,7 +151,7 @@ class res_partner(osv.osv):
'supplier': fields.boolean('Supplier', help="Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order."),
'city':fields.related('address','city',type='char', string='City'),
'country':fields.related('address','country_id',type='many2one', relation='res.country', string='Country'),
'company_id': fields.many2one('res.company', 'Company'),
'company_id': fields.many2one('res.company', 'Company',select=1),
}
def _default_category(self, cr, uid, context={}):
@ -163,7 +163,7 @@ class res_partner(osv.osv):
'active': lambda *a: 1,
'customer': lambda *a: 1,
'category_id': _default_category,
'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'res.partner', c),
'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'res.partner', context=c),
}
def copy(self, cr, uid, id, default={}, context={}):
name = self.read(cr, uid, [id], ['name'])[0]['name']
@ -271,19 +271,26 @@ class res_partner(osv.osv):
if (not context.get('category_id', False)):
return False
return _('Partners: ')+self.pool.get('res.partner.category').browse(cr, uid, context['category_id'], context).name
def main_partner(self, cr, uid):
''' Return the id of the main partner
'''
model_data = self.pool.get('ir.model.data')
return model_data.browse(
cr, uid,
model_data.search(cr, uid, [('module','=','base'),
('name','=','main_partner')])[0],
).res_id
res_partner()
class res_partner_address(osv.osv):
_description ='Partner Addresses'
_name = 'res.partner.address'
_order = 'id'
_columns = {
'partner_id': fields.many2one('res.partner', 'Partner', ondelete='set null', select=True, help="Keep empty for a private address, not related to partner."),
'type': fields.selection( [ ('default','Default'),('invoice','Invoice'), ('delivery','Delivery'), ('contact','Contact'), ('other','Other') ],'Address Type', help="Used to select automatically the right address according to the context in sales and purchases documents."),
'function': fields.many2one('res.partner.function', 'Function'),
'title': fields.selection(_contact_title_get, 'Title', size=32),
'name': fields.char('Contact Name', size=64),
'name': fields.char('Contact Name', size=64, select=1),
'street': fields.char('Street', size=128),
'street2': fields.char('Street2', size=128),
'zip': fields.char('Zip', change_default=True, size=24),
@ -296,7 +303,8 @@ class res_partner_address(osv.osv):
'mobile': fields.char('Mobile', size=64),
'birthdate': fields.char('Birthdate', size=64),
'active': fields.boolean('Active', help="Uncheck the active field to hide the contact."),
'company_id': fields.related('partner_id','company_id',type='many2one',relation='res.company',string='Company'),
# 'company_id': fields.related('partner_id','company_id',type='many2one',relation='res.company',string='Company', store=True),
'company_id': fields.many2one('res.company', 'Company',select=1),
}
_defaults = {
'active': lambda *a: 1,

View File

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<menuitem icon="terp-partner" id="menu_base_partner" name="Partners" sequence="0"/>
<menuitem id="menu_base_config" name="Configuration" parent="menu_base_partner" sequence="1"
<menuitem icon="terp-partner" id="menu_base_partner" name="Sales" sequence="0"/>
<menuitem id="menu_address_book" name="Address Book" parent="menu_base_partner" sequence="2"/>
<menuitem id="menu_base_config" name="Configuration" parent="menu_base_partner" sequence="9"
groups="group_system"/>
<menuitem id="menu_base_config_partner" name="Partners" parent="menu_base_config" sequence="10" />
@ -96,6 +97,7 @@
<field name="name" select="1"/>
<field domain="[('domain', '=', 'contact')]" name="title" />
<field name="function"/>
<field name="company_id" groups="base.group_multi_company" widget="selection"/>
<newline/>
<group string="Postal Address" colspan="2" col="2">
<field name="street" select="2"/>
@ -134,7 +136,7 @@
<field name="view_id" ref="view_partner_address_form1"/>
<field name="act_window_id" ref="action_partner_address_form"/>
</record>
<menuitem action="action_partner_address_form" id="menu_partner_address_form" parent="base.menu_base_partner"/>
<menuitem action="action_partner_address_form" id="menu_partner_address_form" parent="base.menu_base_config_partner" sequence="30"/>
<!--
=========================================
@ -153,6 +155,7 @@
<field name="street2"/>
<field name="type" select="2"/>
<field name="function"/>
<field name="company_id" groups="base.group_multi_company" widget="selection"/>
<newline/>
<field name="zip" select="2"/>
<field name="city" select="2"/>
@ -360,7 +363,7 @@
<menuitem
action="action_partner_form"
id="menu_partner_form"
parent="base.menu_base_partner"
parent="base.menu_address_book"
sequence="2"/>
<record id="action_partner_customer_form" model="ir.actions.act_window">
@ -565,7 +568,7 @@
<field name="view_id" ref="view_partner_category_tree"/>
<field name="domain">[('parent_id','=',False)]</field>
</record>
<menuitem action="action_partner_category" id="menu_partner_category_main" parent="base.menu_base_partner" sequence="1"/>
<!-- <menuitem action="action_partner_category" id="menu_partner_category_main" parent="base.menu_base_partner" sequence="1"/>-->
<record id="action_partner_by_category" model="ir.actions.act_window">
<field name="name">Partner Categories</field>

View File

@ -36,15 +36,16 @@ class multi_company_default(osv.osv):
_columns = {
'sequence': fields.integer('Sequence'),
'name': fields.char('Name', size=32, required=True, help='Name it to easily find a record'),
'name': fields.char('Name', size=256, required=True, help='Name it to easily find a record'),
'company_id': fields.many2one('res.company', 'Main Company', required=True,
help='Company where the user is connected'),
'company_dest_id': fields.many2one('res.company', 'Default Company', required=True,
help='Company to store the current record'),
'object_id': fields.many2one('ir.model', 'Object', required=True,
help='Object affect by this rules'),
'expression': fields.char('Expression', size=32, required=True,
help='Expression, must be True to match'),
'expression': fields.char('Expression', size=256, required=True,
help='Expression, must be True to match\nuse context.get or user (browse)'),
'field_id': fields.many2one('ir.model.fields', 'Field', help='Select field property'),
}
_defaults = {
@ -88,19 +89,27 @@ class res_company(osv.osv):
}
def _company_default_get(self, cr, uid, object=False, context=None):
def _company_default_get(self, cr, uid, object=False, field=False, context=None):
"""
Check if the object for this company have a default value
"""
if not context:
context = {}
proxy = self.pool.get('multi_company.default')
ids = proxy.search(cr, uid, [('object_id.model', '=', object)])
args = [
('object_id.model', '=', object),
]
if field:
args.append(('field_id.name','=',field))
else:
args.append(('field_id','=',False))
ids = proxy.search(cr, uid, args, context=context)
for rule in proxy.browse(cr, uid, ids, context):
user = self.pool.get('res.users').browse(cr, uid, uid)
if eval(rule.expression, {'context': context, 'user': user}):
return rule.company_dest_id.id
return self.pool.get('res.users').browse(cr, uid, uid).company_id.id
user_company_id = self.pool.get('res.users').browse(cr, uid, uid).company_id.id
return user_company_id
def _get_child_ids(self, cr, uid, uid2, context={}):
company = self.pool.get('res.users').company_get(cr, uid, uid2)

View File

@ -11,6 +11,7 @@
<tree string="Multi Company">
<field name="company_id" groups="base.group_multi_company"/>
<field name="object_id"/>
<field name="field_id"/>
<field name="expression" />
<field name="sequence"/>
<field name="company_dest_id"/>
@ -30,10 +31,12 @@
<separator string="Matching" colspan="6"/>
<field name="company_id" groups="base.group_multi_company"/>
<field name="object_id"/>
<field name="company_dest_id"/>
<field name="field_id" domain="[('model_id','=',object_id)]"/>
<separator string="Condition" colspan="6"/>
<field name="expression" colspan="4"/>
<field name="sequence"/>
<separator string="Returning" colspan="6"/>
<field name="company_dest_id"/>
</group>
</form>
</field>

View File

@ -0,0 +1,196 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from osv import osv, fields
import netsvc
import pooler
class res_config_configurable(osv.osv_memory):
''' Base classes for new-style configuration items
Configuration items should inherit from this class, implement
the execute method (and optionally the cancel one) and have
their view inherit from the related res_config_view_base view.
'''
_name = 'res.config'
logger = netsvc.Logger()
def _progress(self, cr, uid, context=None):
total = self.pool.get('ir.actions.todo')\
.search_count(cr, uid, [], context)
open = self.pool.get('ir.actions.todo')\
.search_count(cr, uid, [('active','=',True),
('state','<>','open')],
context)
if total:
return round(open*100./total)
return 100.
_columns = dict(
progress=fields.float('Configuration Progress', readonly=True),
)
_defaults = dict(
progress=_progress
)
def _next_action(self, cr, uid):
todos = self.pool.get('ir.actions.todo')
self.logger.notifyChannel('actions', netsvc.LOG_INFO,
'getting next %s' % todos)
active_todos = todos.search(cr, uid, [('state','=','open'),
('active','=',True)],
limit=1, context=None)
if active_todos:
return todos.browse(cr, uid, active_todos[0], context=None)
return None
def _next(self, cr, uid):
self.logger.notifyChannel('actions', netsvc.LOG_INFO,
'getting next operation')
next = self._next_action(cr, uid)
self.logger.notifyChannel('actions', netsvc.LOG_INFO,
'next action is %s' % next)
if next:
self.pool.get('ir.actions.todo').write(cr, uid, next.id, {
'state':'done',
}, context=None)
action = next.action_id
return {
'view_mode': action.view_mode,
'view_type': action.view_type,
'view_id': action.view_id and [action.view_id.id] or False,
'res_model': action.res_model,
'type': action.type,
'target': action.target,
}
self.logger.notifyChannel(
'actions', netsvc.LOG_INFO,
'all configuration actions have been executed')
current_user_menu = self.pool.get('res.users')\
.browse(cr, uid, uid).menu_id
# return the action associated with the menu
return self.pool.get(current_user_menu.type)\
.read(cr, uid, current_user_menu.id)
def next(self, cr, uid, ids, context=None):
return self._next(cr, uid)
def execute(self, cr, uid, ids, context=None):
raise NotImplementedError(
'Configuration items need to implement execute')
def cancel(self, cr, uid, ids, context=None):
pass
def action_next(self, cr, uid, ids, context=None):
next = self.execute(cr, uid, ids, context=None)
if next: return next
return self.next(cr, uid, ids, context=context)
def action_skip(self, cr, uid, ids, context=None):
next = self.cancel(cr, uid, ids, context=None)
if next: return next
return self.next(cr, uid, ids, context=context)
res_config_configurable()
class res_config_installer(osv.osv_memory):
''' New-style configuration base specialized for modules selection
and installation.
'''
_name = 'res.config.installer'
_inherit = 'res.config'
_install_if = {}
def _modules_to_install(self, cr, uid, ids, context=None):
base = set(module_name
for installer in self.read(cr, uid, ids, context=context)
for module_name, to_install in installer.iteritems()
if module_name != 'id'
if type(self._columns[module_name]) is fields.boolean
if to_install)
hooks_results = set()
for module in base:
hook = getattr(self, '_if_%s'%(module), None)
if hook:
hooks_results.update(hook(cr, uid, ids, context=None) or set())
additionals = set(
module for requirements, consequences \
in self._install_if.iteritems()
if base.issuperset(requirements)
for module in consequences)
return base | hooks_results | additionals
def execute(self, cr, uid, ids, context=None):
modules = self.pool.get('ir.module.module')
to_install = list(self._modules_to_install(
cr, uid, ids, context=context))
self.logger.notifyChannel(
'installer', netsvc.LOG_INFO,
'Selecting addons %s to install'%to_install)
modules.state_update(
cr, uid,
modules.search(cr, uid, [('name','in',to_install)]),
'to install', ['uninstalled'], context=context)
cr.commit()
pooler.restart_pool(cr.dbname, update_module=True)
res_config_installer()
DEPRECATION_MESSAGE = 'You are using an addon using old-style configuration '\
'wizards (ir.actions.configuration.wizard). Old-style configuration '\
'wizards have been deprecated.\n'\
'The addon should be migrated to res.config objects.'
class ir_actions_configuration_wizard(osv.osv_memory):
''' Compatibility configuration wizard
The old configuration wizard has been replaced by res.config, but in order
not to break existing but not-yet-migrated addons, the old wizard was
reintegrated and gutted.
'''
_name='ir.actions.configuration.wizard'
_inherit = 'res.config'
def _next_action_note(self, cr, uid, ids, context=None):
next = self._next_action(cr, uid)
if next:
# if the next one is also an old-style extension, you never know...
if next.note:
return next.note
return "Click 'Continue' to configure the next addon..."
return "Your database is now fully configured.\n\n"\
"Click 'Continue' and enjoy your OpenERP experience..."
_columns = {
'note': fields.text('Next Wizard', readonly=True),
}
_defaults = {
'note': _next_action_note,
}
def execute(self, cr, uid, ids, context=None):
self.logger.notifyChannel(
'configuration', netsvc.LOG_WARNING, DEPRECATION_MESSAGE)
ir_actions_configuration_wizard()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,51 @@
<openerp>
<data>
<record id="res_config_view_base" model="ir.ui.view">
<field name="name">res.config.view.base</field>
<field name="model">res.config</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form>
<group string="res_config_contents">
</group>
<separator string="" colspan="4"/>
<group colspan="4" col="8">
<field name="progress" widget="progressbar"/>
<label string="" colspan="3"/>
<group colspan="1" col="2">
<button name="action_skip" icon="gtk-goto-last" special="cancel"
type="object" string="Skip"/>
</group>
<group colspan="1" col="2">
<button name="action_next" icon="gtk-go-forward"
type="object" string="Next"/>
</group>
</group>
</form>
</field>
</record>
<record id="view_config_wizard_form" model="ir.ui.view">
<field name="name">Compabitiliby configuration wizard</field>
<field name="model">ir.actions.configuration.wizard</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Next Configuration Step">
<image name="gtk-dialog-info"/>
<group>
<field name="note" nolabel="1" colspan="4" width="500"/>
<group colspan="4" col="8">
<field name="progress" widget="progressbar"/>
<label string="" colspan="4"/>
<group colspan="1" col="2">
<button name="action_next" icon="gtk-go-forward"
type="object" string="Continue"/>
</group>
</group>
</group>
</form>
</field>
</record>
</data>
</openerp>

View File

@ -60,7 +60,7 @@ class res_currency(osv.osv):
}
_defaults = {
'active': lambda *a: 1,
'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'res.currency', c)
'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'res.currency', context=c)
}
_order = "code"
@ -79,7 +79,7 @@ class res_currency(osv.osv):
if currency.rounding == 0:
return 0.0
else:
return round(amount / currency.rounding) * currency.rounding
return round(amount / currency.rounding,6) * currency.rounding
def is_zero(self, cr, uid, currency, amount):
return abs(self.round(cr, uid, currency, amount)) < currency.rounding

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
@ -15,7 +15,7 @@
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
@ -23,7 +23,9 @@ from osv import fields,osv
from osv.orm import except_orm
import tools
import pytz
import pooler
from tools.translate import _
from service import security
class groups(osv.osv):
_name = "res.groups"
@ -60,7 +62,7 @@ class groups(osv.osv):
if vals['name'].startswith('-'):
raise osv.except_osv(_('Error'),
_('The name of the group can not start with "-"'))
gid = super(groups, self).create(cr, uid, vals, context=context)
gid = super(groups, self).create(cr, uid, vals, context=context)
if context and context.get('noadmin', False):
pass
else:
@ -119,19 +121,21 @@ def _companies_get(self,cr, uid, context={}):
class users(osv.osv):
__admin_ids = {}
_uid_cache = {}
_name = "res.users"
#_log_access = False
def get_current_company(self, cr, uid):
res=[]
cr.execute('select company_id, res_company.name from res_users left join res_company on res_company.id = company_id where res_users.id=%s' %uid)
res = cr.fetchall()
return res
return res
_columns = {
'name': fields.char('Name', size=64, required=True, select=True),
'login': fields.char('Login', size=64, required=True),
'password': fields.char('Password', size=64, invisible=True, help="Keep empty if you don't want the user to be able to connect on the system."),
'email': fields.char('E-mail', size=64, help='If an email is provided'\
', the user will be sent a message welcoming him'),
'signature': fields.text('Signature', size=64),
'address_id': fields.many2one('res.partner.address', 'Address'),
'active': fields.boolean('Active'),
@ -144,7 +148,7 @@ class users(osv.osv):
'company_ids':fields.many2many('res.company','res_company_users_rel','user_id','cid','Accepted Companies'),
'context_lang': fields.selection(_lang_get, 'Language', required=True),
'context_tz': fields.selection(_tz_get, 'Timezone', size=64),
'company': fields.selection(_companies_get, 'Company', size=64),
'company': fields.selection(_companies_get, 'Company', size=64),
}
def read(self,cr, uid, ids, fields=None, context=None, load='_classic_read'):
def override_password(o):
@ -188,13 +192,14 @@ class users(osv.osv):
return ids or False
_defaults = {
'password' : lambda obj,cr,uid,context={} : '',
'password' : lambda *a : '',
'context_lang': lambda *args: 'en_US',
'active' : lambda obj,cr,uid,context={} : True,
'active' : lambda *a: True,
'menu_id': _get_menu,
'action_id': _get_menu,
'company_id': _get_company,
'groups_id': _get_group,
'address_id': False,
}
def company_get(self, cr, uid, uid2):
company_id = self.pool.get('res.users').browse(cr, uid, uid2).company_id.id
@ -205,7 +210,7 @@ class users(osv.osv):
if (ids == [uid]):
ok = True
for k in values.keys():
if k not in ('password','signature','action_id', 'context_lang', 'context_tz'):
if k not in ('password','signature','action_id', 'context_lang', 'context_tz','company_id'):
ok=False
if ok:
uid = 1
@ -246,37 +251,6 @@ class users(osv.osv):
result[k[8:]] = getattr(user,k)
return result
def action_get(self, cr, uid, context={}):
dataobj = self.pool.get('ir.model.data')
data_id = dataobj._get_id(cr, 1, 'base', 'action_res_users_my')
return dataobj.browse(cr, uid, data_id, context).res_id
def action_next(self,cr,uid,ids,context=None):
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
def action_continue(self,cr,uid,ids,context={}):
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
def action_new(self,cr,uid,ids,context={}):
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'res.users',
'view_id':self.pool.get('ir.ui.view').search(cr,uid,[('name','=','res.users.confirm.form')]),
'type': 'ir.actions.act_window',
'target':'new',
}
def _check_company(self, cursor, user, ids):
for user in self.browse(cursor, user, ids):
@ -284,11 +258,109 @@ class users(osv.osv):
return False
return True
def action_get(self, cr, uid, context={}):
dataobj = self.pool.get('ir.model.data')
data_id = dataobj._get_id(cr, 1, 'base', 'action_res_users_my')
return dataobj.browse(cr, uid, data_id, context).res_id
def login(self, db, login, password):
if not password:
return False
cr = pooler.get_db(db).cursor()
cr.execute('select id from res_users where login=%s and password=%s and active', (tools.ustr(login), tools.ustr(password)))
res = cr.fetchone()
cr.close()
if res:
return res[0]
else:
return False
def check_super(self, passwd):
if passwd == tools.config['admin_passwd']:
return True
else:
raise security.ExceptionNoTb('AccessDenied')
def check(self, db, uid, passwd):
if not passwd:
return False
cached_pass = self._uid_cache.get(db, {}).get(uid)
if (cached_pass is not None) and cached_pass == passwd:
return True
cr = pooler.get_db(db).cursor()
cr.execute('select count(1) from res_users where id=%s and password=%s and active=%s', (int(uid), passwd, True))
res = cr.fetchone()[0]
cr.close()
if not bool(res):
raise security.ExceptionNoTb('AccessDenied')
if res:
if self._uid_cache.has_key(db):
ulist = self._uid_cache[db]
ulist[uid] = passwd
else:
self._uid_cache[db] = {uid:passwd}
return bool(res)
def access(self, db, uid, passwd, sec_level, ids):
if not passwd:
return False
cr = pooler.get_db(db).cursor()
cr.execute('select id from res_users where id=%s and password=%s', (uid, passwd))
res = cr.fetchone()
cr.close()
if not res:
raise security.ExceptionNoTb('Bad username or password')
return res[0]
_constraints = [
(_check_company, 'This user can not connect using this company !', ['company_id']),
]
users()
class config_users(osv.osv_memory):
_name = 'res.config.users'
_inherit = ['res.users', 'res.config']
def _generate_signature(self, cr, name, email, context=None):
return _('--\n%(name)s %(email)s\n') % {
'name': name or '',
'email': email and ' <'+email+'>' or '',
}
def create_user(self, cr, uid, new_id, context=None):
''' create a new res.user instance from the data stored
in the current res.config.users
'''
base_data = self.read(cr, uid, new_id, context=context)
partner_id = self.pool.get('res.partner').main_partner(cr, uid)
address = self.pool.get('res.partner.address').create(
cr, uid, {'name': base_data['name'],
'email': base_data['email'],
'partner_id': partner_id,},
context)
user_data = dict(
base_data,
signature=self._generate_signature(
cr, base_data['name'], base_data['email'], context=context),
address_id=address,
)
self.pool.get('res.users').create(
cr, uid, user_data, context)
def execute(self, cr, uid, ids, context=None):
self.create_user(cr, uid, ids[0], context=context)
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'res.config.users',
'view_id':self.pool.get('ir.ui.view')\
.search(cr,uid,[('name','=','res.config.users.confirm.form')]),
'type': 'ir.actions.act_window',
'target':'new',
}
config_users()
class groups2(osv.osv): ##FIXME: Is there a reason to inherit this object ?
_inherit = 'res.groups'
_columns = {
@ -296,26 +368,20 @@ class groups2(osv.osv): ##FIXME: Is there a reason to inherit this object ?
}
groups2()
class res_config_view(osv.osv_memory):
_name='res.config.view'
_name = 'res.config.view'
_inherit = 'res.config'
_columns = {
'name':fields.char('Name', size=64),
'view': fields.selection([('simple','Simplified Interface'),('extended','Extended Interface')], 'View Mode', required=True ),
'view': fields.selection([('simple','Simplified'),
('extended','Extended')],
'Interface', required=True ),
}
_defaults={
'view':lambda *args: 'simple',
}
def action_cancel(self,cr,uid,ids,conect=None):
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
def action_set(self, cr, uid, ids, context=None):
def execute(self, cr, uid, ids, context=None):
res=self.read(cr,uid,ids)[0]
users_obj = self.pool.get('res.users')
group_obj=self.pool.get('res.groups')
@ -325,14 +391,6 @@ class res_config_view(osv.osv_memory):
users_obj.write(cr, uid, [uid],{
'groups_id':[(4,group_ids[0])]
}, context=context)
return {
'view_type': 'form',
"view_mode": 'form',
'res_model': 'ir.actions.configuration.wizard',
'type': 'ir.actions.act_window',
'target':'new',
}
res_config_view()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -344,6 +344,7 @@
<rng:ref name="group"/>
<rng:ref name="graph"/>
<rng:ref name="filter"/>
<rng:ref name="notebook"/>
<rng:element name="newline"><rng:empty/></rng:element>
</rng:choice>
</rng:zeroOrMore>

View File

@ -8,13 +8,11 @@
"access_ir_model_group_erp_manager","ir_model group_erp_manager","model_ir_model","group_erp_manager",1,1,1,1
"access_ir_model_access_group_erp_manager","ir_model_access_group_erp_manager","model_ir_model_access","group_erp_manager",1,1,1,1
"access_ir_model_grid_group_erp_manager","ir_model_access_grid_group_erp_manager","model_ir_model_grid","group_erp_manager",1,1,1,1
"access_ir_model_config_group_erp_manager","ir_model_config group_erp_manager","model_ir_model_config","group_erp_manager",1,1,1,1
"access_ir_model_data_group_erp_manager","ir_model_data group_erp_manager","model_ir_model_data","group_erp_manager",1,1,1,1
"access_ir_model_fields_group_erp_manager","ir_model_fields group_erp_manager","model_ir_model_fields","group_erp_manager",1,1,1,1
"access_ir_model_all","ir_model_all","model_ir_model",,1,0,0,0
"access_ir_model_access_all","ir_model_access_all","model_ir_model_access",,1,0,0,0
"access_ir_model_grid_all","ir_model_access_grid_all","model_ir_model_grid",,0,0,0,0
"access_ir_model_config_all","ir_model_config_all","model_ir_model_config",,1,0,0,0
"access_ir_model_data_all","ir_model_data all","model_ir_model_data",,1,0,0,0
"access_ir_model_fields_all","ir_model_fields all","model_ir_model_fields",,1,0,0,0
"access_ir_module_category_group_user","ir_module_category group_user","model_ir_module_category","group_system",1,0,0,0
@ -46,6 +44,8 @@
"access_wizard_module_lang_export_group_system","wizard_module_lang_export group_system","model_wizard_module_lang_export","group_system",1,1,1,1
"access_res_company_group_erp_manager","res_company group_erp_manager","model_res_company","group_erp_manager",1,1,1,1
"access_res_company_group_user","res_company group_user","model_res_company",,1,0,0,0
"access_res_config_all","res_config all","model_res_config",,1,0,0,0
"access_res_config_users_all","res_config_users all","model_res_config_users",,1,0,0,0
"access_res_country_group_all","res_country group_user_all","model_res_country",,1,0,0,0
"access_res_country_state_group_all","res_country_state group_user_all","model_res_country_state",,1,0,0,0
"access_res_country_group_user","res_country group_user","model_res_country","group_partner_manager",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
8 access_ir_model_group_erp_manager ir_model group_erp_manager model_ir_model group_erp_manager 1 1 1 1
9 access_ir_model_access_group_erp_manager ir_model_access_group_erp_manager model_ir_model_access group_erp_manager 1 1 1 1
10 access_ir_model_grid_group_erp_manager ir_model_access_grid_group_erp_manager model_ir_model_grid group_erp_manager 1 1 1 1
access_ir_model_config_group_erp_manager ir_model_config group_erp_manager model_ir_model_config group_erp_manager 1 1 1 1
11 access_ir_model_data_group_erp_manager ir_model_data group_erp_manager model_ir_model_data group_erp_manager 1 1 1 1
12 access_ir_model_fields_group_erp_manager ir_model_fields group_erp_manager model_ir_model_fields group_erp_manager 1 1 1 1
13 access_ir_model_all ir_model_all model_ir_model 1 0 0 0
14 access_ir_model_access_all ir_model_access_all model_ir_model_access 1 0 0 0
15 access_ir_model_grid_all ir_model_access_grid_all model_ir_model_grid 0 0 0 0
access_ir_model_config_all ir_model_config_all model_ir_model_config 1 0 0 0
16 access_ir_model_data_all ir_model_data all model_ir_model_data 1 0 0 0
17 access_ir_model_fields_all ir_model_fields all model_ir_model_fields 1 0 0 0
18 access_ir_module_category_group_user ir_module_category group_user model_ir_module_category group_system 1 0 0 0
44 access_wizard_module_lang_export_group_system wizard_module_lang_export group_system model_wizard_module_lang_export group_system 1 1 1 1
45 access_res_company_group_erp_manager res_company group_erp_manager model_res_company group_erp_manager 1 1 1 1
46 access_res_company_group_user res_company group_user model_res_company 1 0 0 0
47 access_res_config_all res_config all model_res_config 1 0 0 0
48 access_res_config_users_all res_config_users all model_res_config_users 1 0 0 0
49 access_res_country_group_all res_country group_user_all model_res_country 1 0 0 0
50 access_res_country_state_group_all res_country_state group_user_all model_res_country_state 1 0 0 0
51 access_res_country_group_user res_country group_user model_res_country group_partner_manager 1 1 1 1

View File

@ -171,9 +171,10 @@ def create_db(uri, dbname, user='admin', pwd='admin', lang='en_US'):
wiz_conn = xmlrpclib.ServerProxy(uri + '/xmlrpc/wizard')
login_conn = xmlrpclib.ServerProxy(uri + '/xmlrpc/common')
db_list = execute(conn, 'list')
if dbname not in db_list:
id = execute(conn,'create',admin_passwd, dbname, True, lang)
wait(id,uri)
if dbname in db_list:
drop_db(uri, dbname)
id = execute(conn,'create',admin_passwd, dbname, True, lang)
wait(id,uri)
uid = login_conn.login(dbname, user, pwd)
wiz_id = execute(wiz_conn,'create', dbname, uid, user, 'base_setup.base_setup')

View File

@ -1,3 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
##############################################################################
#
@ -37,8 +38,8 @@ import xmlrpclib
import release
class Service(object):
""" Base class for *Local* services
""" Base class for *Local* services
Functionality here is trusted, no authentication.
"""
_services = {}
@ -51,8 +52,14 @@ class Service(object):
raise Exception("No group for local services")
#GROUPS.setdefault(name, {})[self.__name] = self
def service_exist(self,name):
return Service._services.has_key(name)
@classmethod
def exists(cls, name):
return name in cls._services
@classmethod
def remove(cls, name):
if cls.exists(name):
cls._services.pop(name)
def exportMethod(self, method):
if callable(method):
@ -364,10 +371,7 @@ class OpenERPDispatcher:
self.log('service', service_name)
self.log('method', method)
self.log('params', params)
if hasattr(self,'auth_provider'):
auth = self.auth_provider
else:
auth = None
auth = getattr(self, 'auth_provider', None)
result = ExportService.getService(service_name).dispatch(method, auth, params)
self.log('result', result)
# We shouldn't marshall None,
@ -376,10 +380,7 @@ class OpenERPDispatcher:
return result
except Exception, e:
self.log('exception', tools.exception_to_unicode(e))
if hasattr(e, 'traceback'):
tb = e.traceback
else:
tb = sys.exc_info()
tb = getattr(e, 'traceback', sys.exc_info())
tb_s = "".join(traceback.format_exception(*tb))
if tools.config['debug_mode']:
import pdb

View File

@ -115,14 +115,14 @@ class expression(object):
main_table = table
fargs = left.split('.', 1)
index = i
if left in table._inherit_fields:
if fargs[0] in table._inherit_fields:
while True:
field = main_table._columns.get(fargs[0], False)
if field:
working_table = main_table
self.__tables[i] = working_table
break
working_table = main_table.pool.get(main_table._inherit_fields[left][0])
working_table = main_table.pool.get(main_table._inherit_fields[fargs[0]][0])
if working_table not in self.__tables.values():
self.__joins.append(('%s.%s=%s.%s' % (working_table._table, 'id', main_table._table, main_table._inherits[working_table._name]), working_table._table))
self.__tables[index] = working_table
@ -145,34 +145,31 @@ class expression(object):
if field._type in ['many2many','one2many']:
right = field_obj.search(cr, uid, [(fargs[1], operator, right)], context=context)
right1 = table.search(cr, uid, [(fargs[0],'in', right)], context=context)
self.__exp[i] = ('id', 'in', right1)
self.__exp[i] = ('id', 'in', right1)
continue
if field._properties:
if field._properties and not field.store:
# this is a function field
if not field.store:
if not field._fnct_search:
# the function field doesn't provide a search function and doesn't store
# values in the database, so we must ignore it : we generate a dummy leaf
self.__exp[i] = self.__DUMMY_LEAF
else:
subexp = field.search(cr, uid, table, left, [self.__exp[i]])
# we assume that the expression is valid
# we create a dummy leaf for forcing the parsing of the resulting expression
self.__exp[i] = '&'
self.__exp.insert(i + 1, self.__DUMMY_LEAF)
for j, se in enumerate(subexp):
self.__exp.insert(i + 2 + j, se)
# else, the value of the field is store in the database, so we search on it
if not field._fnct_search:
# the function field doesn't provide a search function and doesn't store
# values in the database, so we must ignore it : we generate a dummy leaf
self.__exp[i] = self.__DUMMY_LEAF
else:
subexp = field.search(cr, uid, table, left, [self.__exp[i]], context=context)
# we assume that the expression is valid
# we create a dummy leaf for forcing the parsing of the resulting expression
self.__exp[i] = '&'
self.__exp.insert(i + 1, self.__DUMMY_LEAF)
for j, se in enumerate(subexp):
self.__exp.insert(i + 2 + j, se)
# else, the value of the field is store in the database, so we search on it
elif field._type == 'one2many':
# Applying recursivity on field(one2many)
if operator == 'child_of':
if isinstance(right, basestring):
ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], 'like', limit=None)]
ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], 'like', context=context, limit=None)]
else:
ids2 = list(right)
if field._obj != working_table._name:
@ -186,7 +183,7 @@ class expression(object):
if right:
if isinstance(right, basestring):
ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], operator, limit=None)]
ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], operator, context=context, limit=None)]
operator = 'in'
else:
if not isinstance(right,list):
@ -213,7 +210,7 @@ class expression(object):
#FIXME
if operator == 'child_of':
if isinstance(right, basestring):
ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], 'like', limit=None)]
ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], 'like', context=context, limit=None)]
else:
ids2 = list(right)
@ -229,7 +226,7 @@ class expression(object):
call_null_m2m = True
if right:
if isinstance(right, basestring):
res_ids = [x[0] for x in field_obj.name_search(cr, uid, right, [], operator)]
res_ids = [x[0] for x in field_obj.name_search(cr, uid, right, [], operator, context=context)]
operator = 'in'
else:
if not isinstance(right, list):
@ -335,7 +332,7 @@ class expression(object):
query = '(%s.%s in (%s))' % (table._table, left, right[0])
params = right[1]
elif operator in ['in', 'not in']:
params = right[:]
params = right and right[:] or []
len_before = len(params)
for i in range(len_before)[::-1]:
if params[i] == False:
@ -344,14 +341,19 @@ class expression(object):
len_after = len(params)
check_nulls = len_after != len_before
query = '(1=0)'
if len_after:
if left == 'id':
instr = ','.join(['%s'] * len_after)
else:
instr = ','.join([table._columns[left]._symbol_set[0]] * len_after)
query = '(%s.%s %s (%s))' % (table._table, left, operator, instr)
else:
# the case for [field, 'in', []] or [left, 'not in', []]
if operator == 'in':
query = '(%s.%s IS NULL)' % (table._table, left)
else:
query = '(%s.%s IS NOT NULL)' % (table._table, left)
if check_nulls:
query = '(%s OR %s.%s IS NULL)' % (query, table._table, left)
else:

View File

@ -99,9 +99,9 @@ class _column(object):
def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
raise Exception(_('undefined get method !'))
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None):
ids = obj.search(cr, uid, args+self._domain+[(name, 'ilike', value)], offset, limit)
res = obj.read(cr, uid, ids, [name])
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
ids = obj.search(cr, uid, args+self._domain+[(name, 'ilike', value)], offset, limit, context=context)
res = obj.read(cr, uid, ids, [name], context=context)
return [x[name] for x in res]
def search_memory(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
@ -267,8 +267,8 @@ class one2one(_column):
id = cr.fetchone()[0]
obj.write(cr, user, [id], act[1], context=context)
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None):
return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit)
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit, context=context)
class many2one(_column):
@ -304,6 +304,7 @@ class many2one(_column):
for id in ids:
res.setdefault(id, '')
obj = obj.pool.get(self._obj)
# build a dictionary of the form {'id_of_distant_resource': name_of_distant_resource}
from orm import except_orm
try:
@ -313,7 +314,6 @@ class many2one(_column):
iids = filter(None, res.values())
for iiid in iids:
names[iiid] = '// Access Denied //'
for r in res.keys():
if res[r] and res[r] in names:
res[r] = (res[r], names[res[r]])
@ -345,8 +345,8 @@ class many2one(_column):
else:
cr.execute('update '+obj_src._table+' set '+field+'=null where id=%s', (id,))
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None):
return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit)
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit, context=context)
class one2many(_column):
@ -463,8 +463,8 @@ class one2many(_column):
obj.write(cr, user, ids3, {self._fields_id:False}, context=context or {})
return result
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like'):
return obj.pool.get(self._obj).name_search(cr, uid, value, self._domain, offset, limit)
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like', context=None):
return obj.pool.get(self._obj).name_search(cr, uid, value, self._domain, operator, context=context,limit=limit)
#
@ -506,12 +506,13 @@ class many2many(_column):
limit_str = self._limit is not None and ' limit %d' % self._limit or ''
obj = obj.pool.get(self._obj)
d1, d2 = obj.pool.get('ir.rule').domain_get(cr, user, obj._name)
d1, d2, tables = obj.pool.get('ir.rule').domain_get(cr, user, obj._name, context=context)
if d1:
d1 = ' and ' + d1
d1 = ' and ' + ' and '.join(d1)
else: d1 = ''
cr.execute('SELECT '+self._rel+'.'+self._id2+','+self._rel+'.'+self._id1+' \
FROM '+self._rel+' , '+obj._table+' \
FROM '+self._rel+' , '+(','.join(tables))+' \
WHERE '+self._rel+'.'+self._id1+' = ANY (%s) \
AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+d1
+limit_str+' order by '+obj._table+'.'+obj._order+' offset %s',
@ -544,10 +545,12 @@ class many2many(_column):
cr.execute('update '+self._rel+' set '+self._id2+'=null where '+self._id2+'=%s', (id,))
elif act[0] == 6:
d1, d2 = obj.pool.get('ir.rule').domain_get(cr, user, obj._name)
d1, d2,tables = obj.pool.get('ir.rule').domain_get(cr, user, obj._name, context=context)
if d1:
d1 = ' and ' + d1
cr.execute('delete from '+self._rel+' where '+self._id1+'=%s AND '+self._id2+' IN (SELECT '+self._rel+'.'+self._id2+' FROM '+self._rel+', '+obj._table+' WHERE '+self._rel+'.'+self._id1+'=%s AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+ d1 +')', [id, id]+d2)
d1 = ' and ' + ' and '.join(d1)
else:
d1 = ''
cr.execute('delete from '+self._rel+' where '+self._id1+'=%s AND '+self._id2+' IN (SELECT '+self._rel+'.'+self._id2+' FROM '+self._rel+', '+','.join(tables)+' WHERE '+self._rel+'.'+self._id1+'=%s AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+ d1 +')', [id, id]+d2)
for act_nbr in act[2]:
cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s, %s)', (id, act_nbr))
@ -555,8 +558,8 @@ class many2many(_column):
#
# TODO: use a name_search
#
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like'):
return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', operator, value)], offset, limit)
def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like', context=None):
return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', operator, value)], offset, limit, context=context)
def get_memory(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
result = {}
@ -645,11 +648,11 @@ class function(_column):
self._symbol_f = float._symbol_f
self._symbol_set = float._symbol_set
def search(self, cr, uid, obj, name, args):
def search(self, cr, uid, obj, name, args, context=None):
if not self._fnct_search:
#CHECKME: should raise an exception
return []
return self._fnct_search(obj, cr, uid, obj, name, args)
return self._fnct_search(obj, cr, uid, obj, name, args, context=context)
def get(self, cr, obj, ids, name, user=None, context=None, values=None):
if not context:
@ -676,6 +679,10 @@ class function(_column):
if self._type == 'binary' and context.get('bin_size', False):
# convert the data returned by the function with the size of that data...
res = dict(map( get_nice_size, res.items()))
if self._type == "integer":
for r in res.keys():
# Converting value into string so that it does not affect XML-RPC Limits
res[r] = str(res[r])
return res
get_memory = get
@ -741,7 +748,8 @@ class related(function):
if not ids: return {}
relation = obj._name
res = {}.fromkeys(ids, False)
objlst = obj.browse(cr, uid, ids)
objlst = obj.browse(cr, uid, ids, context=context)
for data in objlst:
if not data:
continue
@ -778,7 +786,6 @@ class related(function):
if res[r]:
res[r] = [x.id for x in res[r]]
return res
def __init__(self, *arg, **args):
@ -856,9 +863,12 @@ class property(function):
if nid:
default_val = property.browse(cr, uid, nid[0], context).value
company_id = obj.pool.get('res.users').company_get(cr, uid, uid)
company_id = obj.pool.get('res.company')._company_default_get(cr, uid, obj._name, prop, context=context)
res = False
newval = (id_val and obj_dest+','+str(id_val)) or False
if val[0]:
newval = (id_val and obj_dest+','+str(id_val)) or False
else:
newval = id_val or False
if (newval != default_val) and newval:
propdef = obj.pool.get('ir.model.fields').browse(cr, uid,
definition_id, context=context)
@ -892,27 +902,28 @@ class property(function):
for id in ids:
res[id] = default_val
for prop in property.browse(cr, uid, nids):
res[int(prop.res_id.split(',')[1])] = (prop.value and \
int(prop.value.split(',')[1])) or False
obj = obj.pool.get(self._obj)
to_check = res.values()
if default_val and default_val not in to_check:
to_check += [default_val]
existing_ids = obj.search(cr, uid, [('id', 'in', to_check)])
for id, res_id in res.items():
if res_id not in existing_ids:
cr.execute('DELETE FROM ir_property WHERE value=%s', ((obj._name+','+str(res_id)),))
res[id] = default_val
names = dict(obj.name_get(cr, uid, existing_ids, context))
for r in res.keys():
if res[r] and res[r] in names:
res[r] = (res[r], names[res[r]])
if prop.value.find(',') >= 0:
res[int(prop.res_id.split(',')[1])] = (prop.value and \
int(prop.value.split(',')[1])) or False
else:
res[r] = False
res[int(prop.res_id.split(',')[1])] = prop.value or ''
if self._obj:
obj = obj.pool.get(self._obj)
to_check = res.values()
if default_val and default_val not in to_check:
to_check += [default_val]
existing_ids = obj.search(cr, uid, [('id', 'in', to_check)])
for id, res_id in res.items():
if res_id not in existing_ids:
cr.execute('DELETE FROM ir_property WHERE value=%s', ((obj._name+','+str(res_id)),))
res[id] = default_val
names = dict(obj.name_get(cr, uid, existing_ids, context))
for r in res.keys():
if res[r] and res[r] in names:
res[r] = (res[r], names[res[r]])
else:
res[r] = False
return res
def _field_get(self, cr, uid, model_name, prop):

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
@ -15,7 +15,7 @@
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
@ -38,39 +38,28 @@
#
#
import time
import datetime
import calendar
import types
import string
import netsvc
import re
import copy
import datetime
import pickle
import random
import re
import string
import sys
import time
import traceback
import types
from lxml import etree
import fields
import netsvc
import tools
from tools.translate import _
import copy
import sys
import copy
try:
from lxml import etree
except ImportError:
sys.stderr.write("ERROR: Import lxml module\n")
sys.stderr.write("ERROR: Try to install the python-lxml package\n")
sys.exit(2)
from tools.config import config
from tools.translate import _
regex_order = re.compile('^([a-z0-9_]+( *desc| *asc)?( *, *|))+$', re.I)
def last_day_of_current_month():
import datetime
import calendar
today = datetime.date.today()
last_day = str(calendar.monthrange(today.year, today.month)[1])
return time.strftime('%Y-%m-' + last_day)
@ -126,6 +115,8 @@ class browse_record_list(list):
class browse_record(object):
logger = netsvc.Logger()
def __init__(self, cr, uid, id, table, cache, context=None, list_class = None, fields_process={}):
'''
table : the object (inherited from orm)
@ -172,9 +163,11 @@ class browse_record(object):
else:
return getattr(self._table, name)
else:
logger = netsvc.Logger()
logger.notifyChannel('orm', netsvc.LOG_ERROR, "Programming error: field '%s' does not exist in object '%s' !" % (name, self._table._name))
return None
self.logger.notifyChannel("browse_record", netsvc.LOG_WARNING,
"Field '%s' does not exist in object '%s': \n%s" % (
name, self, ''.join(traceback.format_trace())))
raise KeyError("Field '%s' does not exist in object '%s'" % (
name, self))
# if the field is a classic one or a many2one, we'll fetch all classic and many2one fields
if col._prefetch:
@ -207,12 +200,15 @@ class browse_record(object):
if not datas:
# Where did those ids come from? Perhaps old entries in ir_model_data?
raise except_orm('NoDataError', 'Field %s in %s%s'%(name,self._table_name,str(ids)))
# Where did those ids come from? Perhaps old entries in ir_model_dat?
self.logger.notifyChannel("browse_record", netsvc.LOG_WARNING,
"No datas found for ids %s in %s \n%s" % (
ids, self, ''.join(traceback.format_trace())))
raise KeyError('Field %s not found in %s'%(name,self))
# create browse records for 'remote' objects
for data in datas:
if len(str(data['id']).split('-')) > 1:
data['id'] = int(str(data['id']).split('-')[0])
data['id'] = int(str(data['id']).split('-')[0])
for n, f in ffields:
if f._type in ('many2one', 'one2one'):
if data[n]:
@ -233,15 +229,18 @@ class browse_record(object):
self._data[data['id']].update(data)
if not name in self._data[self._id]:
#how did this happen?
logger = netsvc.Logger()
logger.notifyChannel("browse_record", netsvc.LOG_ERROR,"Ffields: %s, datas: %s"%(str(fffields),str(datas)))
logger.notifyChannel("browse_record", netsvc.LOG_ERROR,"Data: %s, Table: %s"%(str(self._data[self._id]),str(self._table)))
raise AttributeError(_('Unknown attribute %s in %s ') % (str(name),self._table_name))
self.logger.notifyChannel("browse_record", netsvc.LOG_ERROR,
"Ffields: %s, datas: %s"%(fffields, datas))
self.logger.notifyChannel("browse_record", netsvc.LOG_ERROR,
"Data: %s, Table: %s"%(self._data[self._id], self._table))
raise KeyError(_('Unknown attribute %s in %s ') % (name, self))
return self._data[self._id][name]
def __getattr__(self, name):
# raise an AttributeError exception.
return self[name]
try:
return self[name]
except KeyError, e:
raise AttributeError(e)
def __contains__(self, name):
return (name in self._table._columns) or (name in self._table._inherit_fields) or hasattr(self._table, name)
@ -304,7 +303,7 @@ def get_pg_type(f):
elif isinstance(f.selection, list) and isinstance(f.selection[0][0], int):
f_size = -1
else:
f_size = (hasattr(f, 'size') and f.size) or 16
f_size = getattr(f, 'size', None) or 16
if f_size == -1:
f_type = ('int4', 'INTEGER')
@ -348,6 +347,9 @@ class orm_template(object):
CONCURRENCY_CHECK_FIELD = '__last_update'
def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None):
raise _('The read_group method is not implemented on this object !')
def _field_create(self, cr, context={}):
cr.execute("SELECT id FROM ir_model WHERE model=%s", (self._name,))
if not cr.rowcount:
@ -380,11 +382,19 @@ class orm_template(object):
'ttype': f._type,
'relation': f._obj or 'NULL',
'view_load': (f.view_load and 1) or 0,
'select_level': str(f.select or 0),
'select_level': tools.ustr(f.select or 0),
'readonly':(f.readonly and 1) or 0,
'required':(f.required and 1) or 0,
'selectable' : (f.selectable and 1) or 0,
}
# When its a custom field,it does not contain f.select
if context.get('field_state','base') == 'manual':
if context.get('field_name','') == k:
vals['select_level'] = context.get('select','0')
#setting value to let the problem NOT occur next time
else:
vals['select_level'] = cols[k]['select_level']
if k not in cols:
cr.execute('select nextval(%s)', ('ir_model_fields_id_seq',))
id = cr.fetchone()[0]
@ -465,7 +475,7 @@ class orm_template(object):
elif field_type == 'boolean':
return False
return ''
def selection_field(in_field):
col_obj = self.pool.get(in_field.keys()[0])
if f[i] in col_obj._columns.keys():
@ -473,8 +483,8 @@ class orm_template(object):
elif f[i] in col_obj._inherits.keys():
selection_field(col_obj._inherits)
else:
return False
return False
lines = []
data = map(lambda x: '', range(len(fields)))
@ -501,7 +511,7 @@ class orm_template(object):
else:
r = r[f[i]]
# To display external name of selection field when its exported
if not context.get('import_comp',False):# Allow external name only if its not import compatible
if not context.get('import_comp',False):# Allow external name only if its not import compatible
cols = False
if f[i] in self._columns.keys():
cols = self._columns[f[i]]
@ -862,6 +872,7 @@ class orm_template(object):
except Exception, e:
import psycopg2
import osv
cr.rollback()
if isinstance(e,psycopg2.IntegrityError):
msg= _('Insertion Failed! ')
for key in self.pool._sql_error.keys():
@ -967,8 +978,7 @@ class orm_template(object):
res[f]['readonly'] = True
res[f]['states'] = {}
for arg in ('digits', 'invisible','filters'):
if hasattr(self._columns[f], arg) \
and getattr(self._columns[f], arg):
if getattr(self._columns[f], arg, None):
res[f][arg] = getattr(self._columns[f], arg)
#TODO: optimize
@ -1130,7 +1140,7 @@ class orm_template(object):
# running -> done = signal_next (role Z)
# running -> cancel = signal_cancel (role Z)
# As we don't know the object state, in this scenario,
# As we don't know the object state, in this scenario,
# the button "signal_cancel" will be always shown as there is no restriction to cancel in draft
# the button "signal_next" will be show if the user has any of the roles (X Y or Z)
# The verification will be made later in workflow process...
@ -1206,23 +1216,23 @@ class orm_template(object):
return arch
def __get_default_search_view(self, cr, uid, context={}):
def encode(s):
if isinstance(s, unicode):
return s.encode('utf8')
return s
view = self.fields_view_get(cr, uid, False, 'form', context)
root = etree.fromstring(encode(view['arch']))
res = etree.XML("<search string='%s'></search>" % root.get("string", ""))
node = etree.Element("group")
res.append(node)
fields = root.xpath("//field[@select=1]")
for field in fields:
node.append(field)
return etree.tostring(res, encoding="utf-8").replace('\t', '')
#
@ -1346,7 +1356,7 @@ class orm_template(object):
if not sql_res:
break
ok = sql_res[5]
view_id = ok or sql_res[3]
model = False
@ -1372,7 +1382,7 @@ class orm_template(object):
result['name'] = sql_res[1]
result['field_parent'] = sql_res[2] or False
else:
# otherwise, build some kind of default view
if view_type == 'form':
res = self.fields_get(cr, user, context=context)
@ -1384,7 +1394,7 @@ class orm_template(object):
if res[x]['type'] == 'text':
xml += "<newline/>"
xml += "</form>"
elif view_type == 'tree':
_rec_name = self._rec_name
if _rec_name not in self._columns:
@ -1392,16 +1402,16 @@ class orm_template(object):
xml = '<?xml version="1.0" encoding="utf-8"?>' \
'<tree string="%s"><field name="%s"/></tree>' \
% (self._description, self._rec_name)
elif view_type == 'calendar':
xml = self.__get_default_calendar_view()
elif view_type == 'search':
xml = self.__get_default_search_view(cr, user, context)
else:
xml = '<?xml version="1.0"?>' # what happens here, graph case?
# raise except_orm(_('Invalid Architecture!'),_("There is no view of type '%s' defined for the structure!") % view_type)
raise except_orm(_('Invalid Architecture!'),_("There is no view of type '%s' defined for the structure!") % view_type)
result['arch'] = etree.fromstring(encode(xml))
result['name'] = 'default'
result['field_parent'] = False
@ -1418,7 +1428,7 @@ class orm_template(object):
act_id = int(data_menu.split(',')[1])
if act_id:
data_action = self.pool.get('ir.actions.act_window').browse(cr, user, [act_id], context)[0]
result['submenu'] = hasattr(data_action,'menus') and data_action.menus or False
result['submenu'] = getattr(data_action,'menus', False)
if toolbar:
def clean(x):
x = x[2]
@ -1785,6 +1795,65 @@ class orm(orm_template):
_table = None
_protected = ['read','write','create','default_get','perm_read','unlink','fields_get','fields_view_get','search','name_get','distinct_field_get','name_search','copy','import_data','search_count', 'exists']
def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None):
context = context or {}
self.pool.get('ir.model.access').check(cr, uid, self._name, 'read', context=context)
if not fields:
fields = self._columns.keys()
(qu1, qu2, tables) = self._where_calc(cr, uid, domain, context=context)
dom = self.pool.get('ir.rule').domain_get(cr, uid, self._name, context=context)
qu1 = qu1 + dom[0]
qu2 = qu2 + dom[1]
for t in dom[2]:
if t not in tables:
tables.append(t)
if len(qu1):
qu1 = ' where '+string.join(qu1, ' and ')
else:
qu1 = ''
limit_str = limit and ' limit %d' % limit or ''
offset_str = offset and ' offset %d' % offset or ''
fget = self.fields_get(cr, uid, fields)
float_int_fields = filter(lambda x: fget[x]['type'] in ('float','integer'), fields)
sum = {}
flist = groupby
fields_pre = [f for f in float_int_fields if
f == self.CONCURRENCY_CHECK_FIELD
or (f in self._columns and getattr(self._columns[f], '_classic_write'))]
for f in fields_pre:
if f not in ['id','sequence']:
flist += ',sum('+f+') as '+f
cr.execute('select min(id) as id,'+flist+' from ' + self._table +qu1+' group by '+ groupby + limit_str + offset_str,qu2)
alldata = {}
for r in cr.dictfetchall():
alldata[r['id']] = r
del r['id']
today = ''
if fget.has_key(groupby) and fget[groupby]['type'] in ('date','datetime'):
today = datetime.date.today()
yesterday = (today - datetime.timedelta(days=1)).strftime('%Y-%m-%d')
data = self.read(cr, uid, alldata.keys(), [groupby], context=context)
for d in data:
if fget.has_key(groupby):
if fget[groupby]['type'] == 'many2one':
d[groupby] = d[groupby] and d[groupby][1] or ''
if today:
if d[groupby][:10] == str(today):
d[groupby] = 'Today'
elif d[groupby][:10] == yesterday:
d[groupby] = 'Yesterday'
else:
d[groupby] = 'Old'
d['__domain'] = [(groupby,'=',alldata[d['id']][groupby] or False)] + domain
del alldata[d['id']][groupby]
d.update(alldata[d['id']])
del d['id']
return data
def _parent_store_compute(self, cr):
logger = netsvc.Logger()
logger.notifyChannel('orm', netsvc.LOG_INFO, 'Computing parent left and right for table %s...' % (self._table, ))
@ -1857,10 +1926,11 @@ class orm(orm_template):
create = False
todo_end = []
self._field_create(cr, context=context)
if not hasattr(self, "_auto") or self._auto:
if getattr(self, '_auto', True):
cr.execute("SELECT relname FROM pg_class WHERE relkind in ('r','v') AND relname='%s'" % self._table)
if not cr.rowcount:
cr.execute("CREATE TABLE \"%s\" (id SERIAL NOT NULL, PRIMARY KEY(id)) WITH OIDS" % self._table)
cr.execute("CREATE TABLE \"%s\" (id SERIAL NOT NULL, PRIMARY KEY(id)) WITHOUT OIDS" % self._table)
cr.execute("COMMENT ON TABLE \"%s\" IS '%s'" % (self._table, self._description.replace("'","''")))
create = True
cr.commit()
if self._parent_store:
@ -1917,14 +1987,14 @@ class orm(orm_template):
elif isinstance(f, fields.many2many):
cr.execute("SELECT relname FROM pg_class WHERE relkind in ('r','v') AND relname=%s", (f._rel,))
if not cr.dictfetchall():
#FIXME: Remove this try/except
try:
ref = self.pool.get(f._obj)._table
except AttributeError:
ref = f._obj.replace('.', '_')
if not self.pool.get(f._obj):
raise except_orm('Programming Error', ('There is no reference available for %s') % (f._obj,))
ref = self.pool.get(f._obj)._table
# ref = f._obj.replace('.', '_')
cr.execute('CREATE TABLE "%s" ("%s" INTEGER NOT NULL REFERENCES "%s" ON DELETE CASCADE, "%s" INTEGER NOT NULL REFERENCES "%s" ON DELETE CASCADE) WITH OIDS' % (f._rel, f._id1, self._table, f._id2, ref))
cr.execute('CREATE INDEX "%s_%s_index" ON "%s" ("%s")' % (f._rel, f._id1, f._rel, f._id1))
cr.execute('CREATE INDEX "%s_%s_index" ON "%s" ("%s")' % (f._rel, f._id2, f._rel, f._id2))
cr.execute("COMMENT ON TABLE \"%s\" IS 'RELATION BETWEEN %s AND %s'" % (f._rel, self._table, ref))
cr.commit()
else:
cr.execute("SELECT c.relname,a.attname,a.attlen,a.atttypmod,a.attnotnull,a.atthasdef,t.typname,CASE WHEN a.attlen=-1 THEN a.atttypmod-4 ELSE a.attlen END as size " \
@ -1947,12 +2017,13 @@ class orm(orm_template):
cr.execute('ALTER TABLE "%s" RENAME "%s" TO "%s"' % ( self._table,f.oldname, k))
res = res_old
res[0]['attname'] = k
if not res:
if not isinstance(f, fields.function) or f.store:
# add the missing field
cr.execute('ALTER TABLE "%s" ADD COLUMN "%s" %s' % (self._table, k, get_pg_type(f)[1]))
cr.execute("COMMENT ON COLUMN %s.%s IS '%s'" % (self._table, k, f.string.replace("'","''")))
# initialize it
if not create and k in self._defaults:
@ -1977,11 +2048,10 @@ class orm(orm_template):
# and add constraints if needed
if isinstance(f, fields.many2one):
#FIXME: Remove this try/except
try:
ref = self.pool.get(f._obj)._table
except AttributeError:
ref = f._obj.replace('.', '_')
if not self.pool.get(f._obj):
raise except_orm('Programming Error', ('There is no reference available for %s') % (f._obj,))
ref = self.pool.get(f._obj)._table
# ref = f._obj.replace('.', '_')
# ir_actions is inherited so foreign key doesn't work on it
if ref != 'ir_actions':
cr.execute('ALTER TABLE "%s" ADD FOREIGN KEY ("%s") REFERENCES "%s" ON DELETE %s' % (self._table, k, ref, f.ondelete))
@ -1999,7 +2069,8 @@ class orm(orm_template):
f_pg_type = f_pg_def['typname']
f_pg_size = f_pg_def['size']
f_pg_notnull = f_pg_def['attnotnull']
if isinstance(f, fields.function) and not f.store and (not hasattr(f,'nodrop') or not f.nodrop):
if isinstance(f, fields.function) and not f.store and\
not getattr(f, 'nodrop', False):
logger.notifyChannel('orm', netsvc.LOG_INFO, 'column %s (%s) in table %s removed: converted to a function !\n' % (k, f.string, self._table))
cr.execute('ALTER TABLE "%s" DROP COLUMN "%s"'% (self._table, k))
cr.commit()
@ -2035,7 +2106,7 @@ class orm(orm_template):
field_size = (65535 * f.digits[0]) + f.digits[0] + f.digits[1]
if field_size != f_pg_size:
field_size_change = True
if f_pg_type != f_obj_type or field_size_change:
if f_pg_type != f_obj_type:
logger.notifyChannel('orm', netsvc.LOG_INFO, "column '%s' in table '%s' changed type to %s." % (k, self._table, c[1]))
@ -2152,7 +2223,7 @@ class orm(orm_template):
if not hasattr(self, '_log_access'):
# if not access is not specify, it is the same value as _auto
self._log_access = not hasattr(self, "_auto") or self._auto
self._log_access = getattr(self, "_auto", True)
self._columns = self._columns.copy()
for store_field in self._columns:
@ -2215,7 +2286,6 @@ class orm(orm_template):
elif field['ttype'] == 'one2many':
self._columns[field['name']] = getattr(fields, field['ttype'])(field['relation'], field['relation_field'], **attrs)
elif field['ttype'] == 'many2many':
import random
_rel1 = field['relation'].replace('.', '_')
_rel2 = field['model'].replace('.', '_')
_rel_name = 'x_%s_%s_%s_rel' %(_rel1, _rel2, field['name'])
@ -2337,10 +2407,8 @@ class orm(orm_template):
select = [ids]
else:
select = ids
select = map(lambda x: isinstance(x,dict) and x['id'] or x, select)
result = self._read_flat(cr, user, select, fields, context, load)
for r in result:
for key, v in r.items():
if v == None:
@ -2358,8 +2426,7 @@ class orm(orm_template):
id_exist = cr.fetchone()
if not id_exist:
cr.execute('update "'+self._table+'" set "'+key+'"=NULL where "%s"=%s' %(key,''.join("'"+str(v)+"'")))
r[key] = ''
r[key] = ''
if isinstance(ids, (int, long, dict)):
return result and result[0] or False
return result
@ -2367,14 +2434,14 @@ class orm(orm_template):
def _read_flat(self, cr, user, ids, fields_to_read, context=None, load='_classic_read'):
if not context:
context = {}
#ids = map(lambda x:int(x), ids)
if not ids:
return []
ids = map(lambda x:int(x), ids)
if fields_to_read == None:
fields_to_read = self._columns.keys()
# construct a clause for the rules :
d1, d2 = self.pool.get('ir.rule').domain_get(cr, user, self._name)
d1, d2, tables = self.pool.get('ir.rule').domain_get(cr, user, self._name, context=context)
# all inherited fields + all non inherited fields for which the attribute whose name is in load is True
fields_pre = [f for f in fields_to_read if
@ -2389,25 +2456,26 @@ class orm(orm_template):
return "date_trunc('second', %s) as %s" % (f, f)
if f == self.CONCURRENCY_CHECK_FIELD:
if self._log_access:
return "COALESCE(write_date, create_date, now())::timestamp AS %s" % (f,)
return "COALESCE(%s.write_date, %s.create_date, now())::timestamp AS %s" % (self._table, self._table, f,)
return "now()::timestamp AS %s" % (f,)
if isinstance(self._columns[f], fields.binary) and context.get('bin_size', False):
return 'length("%s") as "%s"' % (f, f)
return '"%s"' % (f,)
fields_pre2 = map(convert_field, fields_pre)
order_by = self._parent_order or self._order
for i in range(0, len(ids), cr.IN_MAX):
sub_ids = ids[i:i+cr.IN_MAX]
if d1:
cr.execute('SELECT %s FROM \"%s\" WHERE id = ANY (%%s) AND %s ORDER BY %s' % \
(','.join(fields_pre2 + ['id']), self._table, d1,
self._order),[sub_ids,]+d2)
cr.execute('SELECT %s FROM %s WHERE %s.id = ANY (%%s) AND %s ORDER BY %s' % \
(','.join(fields_pre2 + [self._table + '.id']), ','.join(tables), self._table, ' and '.join(d1),
order_by),[sub_ids,]+d2)
if not cr.rowcount == len({}.fromkeys(sub_ids)):
raise except_orm(_('AccessError'),
_('You try to bypass an access rule (Document type: %s).') % self._description)
_('You try to bypass an access rule while reading (Document type: %s).') % self._description)
else:
cr.execute('SELECT %s FROM \"%s\" WHERE id = ANY (%%s) ORDER BY %s' % \
(','.join(fields_pre2 + ['id']), self._table,
self._order), (sub_ids,))
cr.execute('SELECT %s FROM \"%s\" WHERE id = ANY (%%s) ORDER BY %s' %
(','.join(fields_pre2 + ['id']), self._table,
order_by), (sub_ids,))
res.extend(cr.dictfetchall())
else:
res = map(lambda x: {'id': x}, ids)
@ -2462,6 +2530,7 @@ class orm(orm_template):
res2 = self._columns[val[0]].get(cr, self, ids, val, user, context=context, values=res)
for pos in val:
for record in res:
if isinstance(res2[record['id']], str):res2[record['id']] = eval(res2[record['id']]) #TOCHECK : why got string instend of dict in python2.6
record[pos] = res2[record['id']][pos]
else:
for f in val:
@ -2585,27 +2654,23 @@ class orm(orm_template):
# ids2 = [x[self._inherits[key]] for x in res]
# self.pool.get(key).unlink(cr, uid, ids2)
d1, d2 = self.pool.get('ir.rule').domain_get(cr, uid, self._name)
d1, d2,tables = self.pool.get('ir.rule').domain_get(cr, uid, self._name, context=context)
if d1:
d1 = ' AND '+d1
d1 = ' AND '+' and '.join(d1)
for i in range(0, len(ids), cr.IN_MAX):
sub_ids = ids[i:i+cr.IN_MAX]
str_d = string.join(('%s',)*len(sub_ids), ',')
if d1:
cr.execute('SELECT id FROM "'+self._table+'" ' \
'WHERE id IN ('+str_d+')'+d1, sub_ids+d2)
cr.execute('SELECT '+self._table+'.id FROM '+','.join(tables)+' ' \
'WHERE '+self._table+'.id IN ('+str_d+')'+d1, sub_ids+d2)
if not cr.rowcount == len(sub_ids):
raise except_orm(_('AccessError'),
_('You try to bypass an access rule (Document type: %s).') % \
self._description)
if d1:
cr.execute('delete from "'+self._table+'" ' \
'where id in ('+str_d+')'+d1, sub_ids+d2)
else:
cr.execute('delete from "'+self._table+'" ' \
'where id in ('+str_d+')', sub_ids)
cr.execute('delete from '+self._table+' ' \
'where id in ('+str_d+')', sub_ids)
for order, object, store_ids, fields in result_store:
if object<>self._name:
@ -2705,19 +2770,19 @@ class orm(orm_template):
if len(upd0):
d1, d2 = self.pool.get('ir.rule').domain_get(cr, user, self._name)
d1, d2,tables = self.pool.get('ir.rule').domain_get(cr, user, self._name, context=context)
if d1:
d1 = ' and '+d1
d1 = ' and '+' and '.join(d1)
for i in range(0, len(ids), cr.IN_MAX):
sub_ids = ids[i:i+cr.IN_MAX]
ids_str = string.join(map(str, sub_ids), ',')
if d1:
cr.execute('SELECT id FROM "'+self._table+'" ' \
'WHERE id IN ('+ids_str+')'+d1, d2)
cr.execute('SELECT '+self._table+'.id FROM '+','.join(tables)+' ' \
'WHERE '+self._table+'.id IN ('+ids_str+')'+d1, d2)
if not cr.rowcount == len({}.fromkeys(sub_ids)):
raise except_orm(_('AccessError'),
_('You try to bypass an access rule (Document type: %s).') % \
_('You try to bypass an access rule while writing (Document type: %s).') % \
self._description)
else:
cr.execute('SELECT id FROM "'+self._table+'" WHERE id IN ('+ids_str+')')
@ -2725,19 +2790,19 @@ class orm(orm_template):
raise except_orm(_('AccessError'),
_('You try to write on an record that doesn\'t exist ' \
'(Document type: %s).') % self._description)
if d1:
cr.execute('update "'+self._table+'" set '+string.join(upd0, ',')+' ' \
'where id in ('+ids_str+')'+d1, upd1+ d2)
else:
cr.execute('update "'+self._table+'" set '+string.join(upd0, ',')+' ' \
'where id in ('+ids_str+')', upd1)
cr.execute('update '+self._table+' set '+string.join(upd0, ',')+' ' \
'where id in ('+ids_str+')', upd1)
if totranslate:
# TODO: optimize
for f in direct:
if self._columns[f].translate:
src_trans = self.pool.get(self._name).read(cr,user,ids,[f])
self.pool.get('ir.translation')._set_ids(cr, user, self._name+','+f, 'model', context['lang'], ids, vals[f], src_trans[0][f])
src_trans = self.pool.get(self._name).read(cr,user,ids,[f])[0][f]
if not src_trans:
src_trans = vals[f]
# Inserting value to DB
self.write(cr, user, ids, {f:vals[f]})
self.pool.get('ir.translation')._set_ids(cr, user, self._name+','+f, 'model', context['lang'], ids, vals[f], src_trans)
# call the 'set' method of fields which are not classic_write
@ -3023,7 +3088,9 @@ class orm(orm_template):
continue
result.setdefault(fncts[fnct][0], {})
ids2 = fncts[fnct][2](self,cr, uid, ids, context)
# uid == 1 for accessing objects having rules defined on store fields
ids2 = fncts[fnct][2](self,cr, 1, ids, context)
for id in filter(None, ids2):
result[fncts[fnct][0]].setdefault(id, [])
result[fncts[fnct][0]][id].append(fnct)
@ -3072,7 +3139,8 @@ class orm(orm_template):
for key in keys:
val = todo[key]
if key:
result = self._columns[val[0]].get(cr, self, ids, val, uid, context=context)
# uid == 1 for accessing objects having rules defined on store fields
result = self._columns[val[0]].get(cr, self, ids, val, 1, context=context)
for id,value in result.items():
if field_flag:
for f in value.keys():
@ -3096,7 +3164,8 @@ class orm(orm_template):
else:
for f in val:
result = self._columns[f].get(cr, self, ids, f, uid, context=context)
# uid == 1 for accessing objects having rules defined on store fields
result = self._columns[f].get(cr, self, ids, f, 1, context=context)
for r in result.keys():
if field_flag:
if r in field_dict.keys():
@ -3159,33 +3228,35 @@ class orm(orm_template):
context = {}
# compute the where, order by, limit and offset clauses
(qu1, qu2, tables) = self._where_calc(cr, user, args, context=context)
dom = self.pool.get('ir.rule').domain_get(cr, user, self._name, context=context)
qu1 = qu1 + dom[0]
qu2 = qu2 + dom[1]
for t in dom[2]:
if t not in tables:
tables.append(t)
if len(qu1):
qu1 = ' where '+string.join(qu1, ' and ')
else:
qu1 = ''
order_by = self._order
if order:
self._check_qorder(order)
order_by = order or self._order
o = order.split(' ')[0]
if (o in self._columns) and getattr(self._columns[o], '_classic_write'):
order_by = order
limit_str = limit and ' limit %d' % limit or ''
offset_str = offset and ' offset %d' % offset or ''
# construct a clause for the rules :
d1, d2 = self.pool.get('ir.rule').domain_get(cr, user, self._name)
if d1:
qu1 = qu1 and qu1+' and '+d1 or ' where '+d1
qu2 += d2
if count:
cr.execute('select count(%s.id) from ' % self._table +
','.join(tables) +qu1 + limit_str + offset_str, qu2)
res = cr.fetchall()
return res[0][0]
# execute the "main" query to fetch the ids we were searching for
cr.execute('select %s.id from ' % self._table + ','.join(tables) +qu1+' order by '+order_by+limit_str+offset_str, qu2)
res = cr.fetchall()
return [x[0] for x in res]

View File

@ -195,9 +195,16 @@ class osv_memory(osv_base, orm.orm_memory):
# put objects in the pool var
#
def createInstance(cls, pool, module, cr):
name = hasattr(cls, '_name') and cls._name or cls._inherit
parent_names = hasattr(cls, '_inherit') and cls._inherit
parent_names = getattr(cls, '_inherit', None)
if parent_names:
if isinstance(parent_names, (str, unicode)):
name = cls._name or parent_names
parent_names = [parent_names]
else:
name = cls._name
if not name:
raise TypeError('_name is mandatory in case of multiple inheritance')
for parent_name in ((type(parent_names)==list) and parent_names or [parent_names]):
parent_class = pool.get(parent_name).__class__
assert pool.get(parent_name), "parent class %s does not exist in module %s !" % (parent_name, module)
@ -209,7 +216,6 @@ class osv_memory(osv_base, orm.orm_memory):
else:
new.extend(cls.__dict__.get(s, []))
nattr[s] = new
name = hasattr(cls, '_name') and cls._name or cls._inherit
cls = type(name, (cls, parent_class), nattr)
obj = object.__new__(cls)
@ -223,8 +229,16 @@ class osv(osv_base, orm.orm):
# put objects in the pool var
#
def createInstance(cls, pool, module, cr):
parent_names = hasattr(cls, '_inherit') and cls._inherit
parent_names = getattr(cls, '_inherit', None)
if parent_names:
if isinstance(parent_names, (str, unicode)):
name = cls._name or parent_names
parent_names = [parent_names]
else:
name = cls._name
if not name:
raise TypeError('_name is mandatory in case of multiple inheritance')
for parent_name in ((type(parent_names)==list) and parent_names or [parent_names]):
parent_class = pool.get(parent_name).__class__
assert pool.get(parent_name), "parent class %s does not exist in module %s !" % (parent_name, module)
@ -247,7 +261,6 @@ class osv(osv_base, orm.orm):
else:
new.extend(cls.__dict__.get(s, []))
nattr[s] = new
name = hasattr(cls, '_name') and cls._name or cls._inherit
cls = type(name, (cls, parent_class), nattr)
obj = object.__new__(cls)
obj.__init__(pool, cr)

View File

@ -21,7 +21,7 @@
##############################################################################
name = 'openerp-server'
version = '5.0.6'
version = '5.0.7'
major_version = '5.0'
description = 'OpenERP Server'
long_desc = '''\

View File

@ -290,7 +290,7 @@ class report_custom(report_int):
def _append_node(name, text):
n = etree.SubElement(config, name)
t.text = text
n.text = text
_append_node('date', time.strftime('%d/%m/%Y'))
_append_node('PageFormat', '%s' % report['print_format'])

View File

@ -46,7 +46,7 @@ def toxml(val):
class report_int(netsvc.Service):
def __init__(self, name, audience='*'):
assert not self.service_exist(name), 'The report "%s" already exist!' % name
assert not self.exists(name), 'The report "%s" already exists!' % name
super(report_int, self).__init__(name, audience)
if name[0:7]<>'report.':
raise Exception, 'ConceptionError, bad report name, should start with "report."'

View File

@ -19,4 +19,6 @@
#
##############################################################################
from odt2odt import parseNode
from odt2odt import parseNode
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -85,7 +85,7 @@ class _float_format(float, _format):
def __str__(self):
digits = 2
if hasattr(self,'_field') and hasattr(self._field, 'digits') and self._field.digits:
if hasattr(self,'_field') and getattr(self._field, 'digits', None):
digits = self._field.digits[1]
if hasattr(self, 'lang_obj'):
return self.lang_obj.format('%.' + str(digits) + 'f', self.name, True)
@ -108,7 +108,7 @@ class _date_format(str, _format):
def __str__(self):
if self.val:
if hasattr(self,'name') and (self.name):
if getattr(self,'name', None):
date = datetime.strptime(self.name, DT_FORMAT)
return date.strftime(self.lang_obj.date_format)
return self.val
@ -120,8 +120,13 @@ class _dttime_format(str, _format):
def __str__(self):
if self.val:
<<<<<<< TREE
if hasattr(self,'name') and self.name:
datetime = datetime.strptime(self.name, DHM_FORMAT)
=======
if getattr(self,'name', None):
datetime = mx.DateTime.strptime(self.name,DHM_FORMAT)
>>>>>>> MERGE-SOURCE
return datetime.strftime(self.lang_obj.date_format+ " " + self.lang_obj.time_format)
return self.val
@ -255,10 +260,10 @@ class rml_parse(object):
parse_format = DHM_FORMAT
# filtering time.strftime('%Y-%m-%d')
if type(value) == type(''):
parse_format = DHM_FORMAT
if (not date_time):
return str(value)
# if type(value) == type(''):
# parse_format = DHM_FORMAT
# if (not date_time):
# return str(value)
if not isinstance(value, time.struct_time):
try:
@ -361,8 +366,11 @@ class report_sxw(report_rml, preprocess.report):
elif report_type=='mako2html':
fnct = self.create_source_mako2html
else:
raise Exception('Unknown Report Type: '+report_type)
return fnct(cr, uid, ids, data, report_xml, context)
raise 'Unknown Report Type'
fnct_ret = fnct(cr, uid, ids, data, report_xml, context)
if not fnct_ret:
return (False,False)
return fnct_ret
def create_source_odt(self, cr, uid, ids, data, report_xml, context=None):
return self.create_single_odt(cr, uid, ids, data, report_xml, context or {})
@ -394,6 +402,8 @@ class report_sxw(report_rml, preprocess.report):
results.append((d,'pdf'))
continue
result = self.create_single_pdf(cr, uid, [obj.id], data, report_xml, context)
if not result:
return False
try:
if aname:
name = aname+'.'+result[1]
@ -431,6 +441,9 @@ class report_sxw(report_rml, preprocess.report):
context = context.copy()
title = report_xml.name
rml = report_xml.report_rml_content
# if no rml file is found
if not rml:
return False
rml_parser = self.parser(cr, uid, self.name2, context=context)
objs = self.getObjects(cr, uid, ids, context)
rml_parser.set_context(objs, data, ids, report_xml.report_type)

View File

@ -137,7 +137,7 @@ class BaseHttpDaemon(threading.Thread, netsvc.Server):
if os.name != 'nt':
try:
self.server.socket.shutdown(
hasattr(socket, 'SHUT_RDWR') and socket.SHUT_RDWR or 2)
getattr(socket, 'SHUT_RDWR', 2))
except socket.error, e:
if e.errno != 57: raise
# OSX, socket shutdowns both sides if any side closes it
@ -161,11 +161,11 @@ class HttpDaemon(BaseHttpDaemon):
super(HttpDaemon, self).__init__(interface, port,
handler=MultiHandler2)
class HttpSDaemon(threading.Thread, netsvc.Server):
class HttpSDaemon(BaseHttpDaemon):
def __init__(self, interface, port):
try:
super(HttpDaemon, self).__init__(interface, port,
handler=SecureMultiHandler2)
super(HttpSDaemon, self).__init__(interface, port,
handler=SecureMultiHandler2)
except SSLError, e:
netsvc.Logger().notifyChannel(
'httpd-ssl', netsvc.LOG_CRITICAL,

View File

@ -42,10 +42,8 @@ class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher):
def __del__(self):
if self.sock:
try:
if hasattr(socket, 'SHUT_RDWR'):
self.socket.shutdown(socket.SHUT_RDWR)
else:
self.socket.shutdown(2)
self.socket.shutdown(
getattr(socket, 'SHUT_RDWR', 2))
except: pass
# That should garbage-collect and close it, too
self.sock = None
@ -131,10 +129,8 @@ class TinySocketServerThread(threading.Thread,netsvc.Server):
for t in self.threads:
t.stop()
try:
if hasattr(socket, 'SHUT_RDWR'):
self.socket.shutdown(socket.SHUT_RDWR)
else:
self.socket.shutdown(2)
self.socket.shutdown(
getattr(socket, 'SHUT_RDWR', 2))
self.socket.close()
except:
return False

View File

@ -22,8 +22,6 @@
import pooler
import tools
_uid_cache = {}
# When rejecting a password, we need to give as little info as possible
class ExceptionNoTb(Exception):
def __init__(self, msg ):
@ -32,17 +30,9 @@ class ExceptionNoTb(Exception):
self.args = (msg, '')
def login(db, login, password):
cr = pooler.get_db(db).cursor()
if password:
cr.execute('select id from res_users where login=%s and password=%s and active', (tools.ustr(login), tools.ustr(password)))
else:
cr.execute('select id from res_users where login=%s and password is null and active', (tools.ustr(login),))
res = cr.fetchone()
cr.close()
if res:
return res[0]
else:
return False
pool = pooler.get_pool(db)
user_obj = pool.get('res.users')
return user_obj.login(db, login, password)
def check_super(passwd):
if passwd == tools.config['admin_passwd']:
@ -51,38 +41,6 @@ def check_super(passwd):
raise ExceptionNoTb('AccessDenied')
def check(db, uid, passwd):
cached_pass = _uid_cache.get(db, {}).get(uid)
if (cached_pass is not None) and cached_pass == passwd:
return True
cr = pooler.get_db(db).cursor()
if passwd:
cr.execute('select count(1) from res_users where id=%s and password=%s and active=%s', (int(uid), passwd, True))
else:
cr.execute('select count(1) from res_users where id=%s and password is null and active=%s', (int(uid), True))
res = cr.fetchone()[0]
cr.close()
if not bool(res):
raise ExceptionNoTb('AccessDenied')
if res:
if _uid_cache.has_key(db):
ulist = _uid_cache[db]
ulist[uid] = passwd
else:
_uid_cache[db] = {uid:passwd}
return bool(res)
def access(db, uid, passwd, sec_level, ids):
cr = pooler.get_db(db).cursor()
if passwd:
cr.execute('select id from res_users where id=%s and password=%s', (uid, passwd))
else:
cr.execute('select id from res_users where id=%s and password is null', (uid,))
res = cr.fetchone()
cr.close()
if not res:
raise ExceptionNoTb('Bad username or password')
return res[0]
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
pool = pooler.get_pool(db)
user_obj = pool.get('res.users')
return user_obj.check(db, uid, passwd)

View File

@ -78,13 +78,16 @@ class db(netsvc.ExportService):
self.actions[id] = {'clean': False}
db = sql_db.db_connect('template1')
cr = db.cursor()
db.lock()
try:
cr.autocommit(True) # avoid transaction block
cr.execute('CREATE DATABASE "%s" ENCODING \'unicode\'' % db_name)
cr = db.cursor()
try:
cr.autocommit(True) # avoid transaction block
cr.execute('CREATE DATABASE "%s" ENCODING \'unicode\'' % db_name)
finally:
cr.close()
finally:
cr.close()
del db
db.release()
class DBInitialize(object):
def __call__(self, serv, id, db_name, demo, lang, user_password='admin'):
@ -158,20 +161,24 @@ class db(netsvc.ExportService):
logger = netsvc.Logger()
db = sql_db.db_connect('template1')
cr = db.cursor()
cr.autocommit(True) # avoid transaction block
db.lock()
try:
cr = db.cursor()
cr.autocommit(True) # avoid transaction block
try:
cr.execute('DROP DATABASE "%s"' % db_name)
except Exception, e:
logger.notifyChannel("web-services", netsvc.LOG_ERROR,
'DROP DB: %s failed:\n%s' % (db_name, e))
raise Exception("Couldn't drop database %s: %s" % (db_name, e))
else:
logger.notifyChannel("web-services", netsvc.LOG_INFO,
'DROP DB: %s' % (db_name))
try:
cr.execute('DROP DATABASE "%s"' % db_name)
except Exception, e:
logger.notifyChannel("web-services", netsvc.LOG_ERROR,
'DROP DB: %s failed:\n%s' % (db_name, e))
raise Exception("Couldn't drop database %s: %s" % (db_name, e))
else:
logger.notifyChannel("web-services", netsvc.LOG_INFO,
'DROP DB: %s' % (db_name))
finally:
cr.close()
finally:
cr.close()
db.release()
return True
def _set_pg_psw_env_var(self):
@ -223,13 +230,16 @@ class db(netsvc.ExportService):
raise Exception, "Database already exists"
db = sql_db.db_connect('template1')
cr = db.cursor()
cr.autocommit(True) # avoid transaction block
db.lock()
try:
cr.execute("""CREATE DATABASE "%s" ENCODING 'unicode' TEMPLATE "template0" """ % db_name)
cr = db.cursor()
cr.autocommit(True) # avoid transaction block
try:
cr.execute("""CREATE DATABASE "%s" ENCODING 'unicode' TEMPLATE "template0" """ % db_name)
finally:
cr.close()
finally:
cr.close()
del db
db.release()
cmd = ['pg_restore', '--no-owner']
if tools.config['db_user']:
@ -267,23 +277,27 @@ class db(netsvc.ExportService):
logger = netsvc.Logger()
db = sql_db.db_connect('template1')
cr = db.cursor()
db.lock()
try:
cr = db.cursor()
try:
cr.execute('ALTER DATABASE "%s" RENAME TO "%s"' % (old_name, new_name))
except Exception, e:
logger.notifyChannel("web-services", netsvc.LOG_ERROR,
'RENAME DB: %s -> %s failed:\n%s' % (old_name, new_name, e))
raise Exception("Couldn't rename database %s to %s: %s" % (old_name, new_name, e))
else:
fs = os.path.join(tools.config['root_path'], 'filestore')
if os.path.exists(os.path.join(fs, old_name)):
os.rename(os.path.join(fs, old_name), os.path.join(fs, new_name))
try:
cr.execute('ALTER DATABASE "%s" RENAME TO "%s"' % (old_name, new_name))
except Exception, e:
logger.notifyChannel("web-services", netsvc.LOG_ERROR,
'RENAME DB: %s -> %s failed:\n%s' % (old_name, new_name, e))
raise Exception("Couldn't rename database %s to %s: %s" % (old_name, new_name, e))
else:
fs = os.path.join(tools.config['root_path'], 'filestore')
if os.path.exists(os.path.join(fs, old_name)):
os.rename(os.path.join(fs, old_name), os.path.join(fs, new_name))
logger.notifyChannel("web-services", netsvc.LOG_INFO,
'RENAME DB: %s -> %s' % (old_name, new_name))
logger.notifyChannel("web-services", netsvc.LOG_INFO,
'RENAME DB: %s -> %s' % (old_name, new_name))
finally:
cr.close()
finally:
cr.close()
db.release()
return True
def exp_db_exist(self, db_name):
@ -291,30 +305,34 @@ class db(netsvc.ExportService):
return bool(sql_db.db_connect(db_name))
def exp_list(self):
if not tools.config['list_db']:
raise Exception('AccessDenied')
db = sql_db.db_connect('template1')
cr = db.cursor()
db.lock()
try:
list_db = tools.config["list_db"]
if list_db == 'False':
return []
cr = db.cursor()
try:
db_user = tools.config["db_user"]
if not db_user and os.name == 'posix':
import pwd
db_user = pwd.getpwuid(os.getuid())[0]
if not db_user:
cr.execute("select decode(usename, 'escape') from pg_user where usesysid=(select datdba from pg_database where datname=%s)", (tools.config["db_name"],))
res = cr.fetchone()
db_user = res and str(res[0])
if db_user:
cr.execute("select decode(datname, 'escape') from pg_database where datdba=(select usesysid from pg_user where usename=%s) and datname not in ('template0', 'template1', 'postgres') order by datname", (db_user,))
else:
cr.execute("select decode(datname, 'escape') from pg_database where datname not in('template0', 'template1','postgres') order by datname")
res = [str(name) for (name,) in cr.fetchall()]
except:
res = []
try:
db_user = tools.config["db_user"]
if not db_user and os.name == 'posix':
import pwd
db_user = pwd.getpwuid(os.getuid())[0]
if not db_user:
cr.execute("select decode(usename, 'escape') from pg_user where usesysid=(select datdba from pg_database where datname=%s)", (tools.config["db_name"],))
res = cr.fetchone()
db_user = res and str(res[0])
if db_user:
cr.execute("select decode(datname, 'escape') from pg_database where datdba=(select usesysid from pg_user where usename=%s) and datname not in ('template0', 'template1', 'postgres') order by datname", (db_user,))
else:
cr.execute("select decode(datname, 'escape') from pg_database where datname not in('template0', 'template1','postgres') order by datname")
res = [str(name) for (name,) in cr.fetchall()]
except:
res = []
finally:
cr.close()
finally:
cr.close()
db.release()
res.sort()
return res
@ -443,7 +461,10 @@ GNU Public Licence.
return info
def exp_timezone_get(self, db, login, password):
return time.tzname[0]
#timezone detection is safe in multithread, so lazy init is ok here
if (not tools.config['timezone']):
tools.config['timezone'] = tools.misc.detect_server_timezone()
return tools.config['timezone']
def exp_get_available_updates(self, contract_id, contract_password):
@ -706,15 +727,19 @@ class report_spool(netsvc.ExportService):
def go(id, uid, ids, datas, context):
cr = pooler.get_db(db).cursor()
import traceback
import sys
try:
obj = netsvc.LocalService('report.'+object)
(result, format) = obj.create(cr, uid, ids, datas, context)
if not result:
tb = sys.exc_info()
self._reports[id]['exception'] = ExceptionWithTraceback('RML is not available at specified location or not enough data to print!', tb)
self._reports[id]['result'] = result
self._reports[id]['format'] = format
self._reports[id]['state'] = True
except Exception, exception:
import traceback
import sys
tb = sys.exc_info()
tb_s = "".join(traceback.format_exception(*tb))
logger = netsvc.Logger()

View File

@ -82,7 +82,6 @@ class Cursor(object):
self.sql_into_log = {}
self.sql_log = False
self.sql_log_count = 0
self.__closed = True # avoid the call of close() (by __del__) if an exception
# is raised by any of the following initialisations
self._pool = pool
@ -300,17 +299,31 @@ class Connection(object):
self.dbname = dbname
self._pool = pool
self._unique = unique
if unique:
if dbname not in self.__LOCKS:
self.__LOCKS[dbname] = threading.Lock()
self.__LOCKS[dbname].acquire()
def __del__(self):
def __enter__(self):
if self._unique:
close_db(self.dbname)
self.__LOCKS[self.dbname].release()
self.lock()
return self
def __exit__(self, exc_type, exc_value, traceback):
if self._unique:
self.release()
def lock(self):
if self.dbname not in self.__LOCKS:
self.__LOCKS[self.dbname] = threading.Lock()
self.__LOCKS[self.dbname].acquire()
def release(self):
close_db(self.dbname)
self.__LOCKS[self.dbname].release()
def cursor(self, serialized=False):
if self._unique:
lock = self.__LOCKS.get(self.dbname, None)
if not (lock and lock.locked()):
netsvc.Logger().notifyChannel('Connection', netsvc.LOG_WARNING, 'Unprotected connection to %s' % (self.dbname,))
return Cursor(self._pool, self.dbname, serialized=serialized)
def serialized_cursor(self):

View File

@ -77,10 +77,11 @@ class configmanager(object):
'secure' : False,
'syslog' : False,
'log_level': logging.INFO,
'assert_exit_level': logging.WARNING, # level above which a failed assert will be raise
'assert_exit_level': logging.WARNING, # level above which a failed assert will be raised
'cache_timeout': 100000,
'login_message': False,
'list_db' : True,
'timezone' : False, # to override the default TZ
}
self.misc = {}
@ -111,6 +112,7 @@ class configmanager(object):
help="update a module (use \"all\" for all modules)")
parser.add_option("--cache-timeout", dest="cache_timeout",
help="set the timeout for the cache system", default=100000, type="int")
parser.add_option("-t", "--timezone", dest="timezone", help="specify reference timezone for the server (e.g. Europe/Brussels")
# stops the server from launching after initialization
parser.add_option("--stop-after-init", action="store_true", dest="stop_after_init", default=False,
@ -119,6 +121,8 @@ class configmanager(object):
parser.add_option("--assert-exit-level", dest='assert_exit_level', type="choice", choices=self._LOGLEVELS.keys(),
help="specify the level at which a failed assertion will stop the server. Accepted values: %s" % (self._LOGLEVELS.keys(),))
parser.add_option('--price_accuracy', dest='price_accuracy', default='2', help='specify the price accuracy')
parser.add_option('--no-database-list', action="store_false", dest='list_db', default=True, help="disable the ability to return the list of databases")
if hasSSL:
group = optparse.OptionGroup(parser, "SSL Configuration")
group.add_option("-S", "--secure", dest="secure",
@ -162,7 +166,6 @@ class configmanager(object):
group.add_option("--db_port", dest="db_port", help="specify the database port", type="int")
group.add_option("--db_maxconn", dest="db_maxconn", default='64',
help="specify the the maximum number of physical connections to posgresql")
group.add_option("--list_db", dest="list_db", default=False, help="This option hides Database list for security purpose:\n \'False\' value disables listing of Databases")
group.add_option("-P", "--import-partial", dest="import_partial",
help="Use this for big data importation, if it crashes you will be able to continue at the current state. Provide a filename to store intermediate importation states.", default=False)
parser.add_option_group(group)
@ -227,7 +230,7 @@ class configmanager(object):
'db_port', 'list_db', 'logfile', 'pidfile', 'smtp_port', 'cache_timeout',
'email_from', 'smtp_server', 'smtp_user', 'smtp_password', 'price_accuracy',
'netinterface', 'netport', 'db_maxconn', 'import_partial', 'addons_path',
'netrpc', 'xmlrpc', 'syslog', 'without_demo']
'netrpc', 'xmlrpc', 'syslog', 'without_demo', 'timezone',]
if hasSSL:
keys.extend(['smtp_ssl', 'secure_cert_file', 'secure_pkey_file'])
@ -238,7 +241,10 @@ class configmanager(object):
self.options[arg] = getattr(opt, arg)
keys = ['language', 'translate_out', 'translate_in', 'debug_mode',
'stop_after_init', 'logrotate']
'stop_after_init', 'logrotate', 'without_demo', 'netrpc', 'xmlrpc', 'syslog', 'list_db']
if hasSSL and not self.options['secure']:
keys.append('secure')
for arg in keys:
if getattr(opt, arg) is not None:
@ -266,6 +272,17 @@ class configmanager(object):
self.options['translate_modules'] = opt.translate_modules and map(lambda m: m.strip(), opt.translate_modules.split(',')) or ['all']
self.options['translate_modules'].sort()
if self.options['timezone']:
# If an explicit TZ was provided in the config, make sure it is known
try:
import pytz
tz = pytz.timezone(self.options['timezone'])
except pytz.UnknownTimeZoneError:
die(True, "The specified timezone (%s) is invalid" % self.options['timezone'])
except:
# If pytz is missing, don't check the provided TZ, it will be ignored anyway.
pass
if opt.pg_path:
self.options['pg_path'] = opt.pg_path
@ -330,6 +347,18 @@ class configmanager(object):
res = os.path.abspath(os.path.expanduser(value))
if not os.path.exists(res):
raise optparse.OptionValueError("option %s: no such directory: %r" % (opt, value))
contains_addons = False
for f in os.listdir(res):
modpath = os.path.join(res, f)
if os.path.isdir(modpath) and os.path.exists(os.path.join(modpath, '__init__.py')) and \
os.path.exists(os.path.join(modpath, '__terp__.py')):
contains_addons = True
break
if not contains_addons:
raise optparse.OptionValueError("option %s: The addons-path %r does not seem to a be a valid Addons Directory!" % (opt, value))
setattr(parser.values, option.dest, res)
def load(self):

View File

@ -31,6 +31,7 @@ from config import config
import zipfile
import release
import socket
import re
if sys.version_info[:2] < (2, 4):
from threadinglocal import local
@ -302,8 +303,103 @@ def reverse_enumerate(l):
#----------------------------------------------------------
# Emails
#----------------------------------------------------------
email_re = re.compile(r"""
([a-zA-Z][\w\.-]*[a-zA-Z0-9] # username part
@ # mandatory @ sign
[a-zA-Z0-9][\w\.-]* # domain must start with a letter ... Ged> why do we include a 0-9 then?
\.
[a-z]{2,3} # TLD
)
""", re.VERBOSE)
res_re = re.compile(r"\[([0-9]+)\]", re.UNICODE)
command_re = re.compile("^Set-([a-z]+) *: *(.+)$", re.I + re.UNICODE)
reference_re = re.compile("<.*-openobject-(\\d+)@(.*)>", re.UNICODE)
priorities = {
'1': '1 (Highest)',
'2': '2 (High)',
'3': '3 (Normal)',
'4': '4 (Low)',
'5': '5 (Lowest)',
}
def html2plaintext(html, body_id=None, encoding='utf-8'):
## (c) Fry-IT, www.fry-it.com, 2007
## <peter@fry-it.com>
## download here: http://www.peterbe.com/plog/html2plaintext
""" from an HTML text, convert the HTML to plain text.
If @body_id is provided then this is the tag where the
body (not necessarily <body>) starts.
"""
try:
from BeautifulSoup import BeautifulSoup, SoupStrainer, Comment
except:
return html
urls = []
if body_id is not None:
strainer = SoupStrainer(id=body_id)
else:
strainer = SoupStrainer('body')
soup = BeautifulSoup(html, parseOnlyThese=strainer, fromEncoding=encoding)
for link in soup.findAll('a'):
title = link.renderContents()
for url in [x[1] for x in link.attrs if x[0]=='href']:
urls.append(dict(url=url, tag=str(link), title=title))
html = soup.__str__()
url_index = []
i = 0
for d in urls:
if d['title'] == d['url'] or 'http://'+d['title'] == d['url']:
html = html.replace(d['tag'], d['url'])
else:
i += 1
html = html.replace(d['tag'], '%s [%s]' % (d['title'], i))
url_index.append(d['url'])
html = html.replace('<strong>','*').replace('</strong>','*')
html = html.replace('<b>','*').replace('</b>','*')
html = html.replace('<h3>','*').replace('</h3>','*')
html = html.replace('<h2>','**').replace('</h2>','**')
html = html.replace('<h1>','**').replace('</h1>','**')
html = html.replace('<em>','/').replace('</em>','/')
# the only line breaks we respect is those of ending tags and
# breaks
html = html.replace('\n',' ')
html = html.replace('<br>', '\n')
html = html.replace('<tr>', '\n')
html = html.replace('</p>', '\n\n')
html = re.sub('<br\s*/>', '\n', html)
html = html.replace(' ' * 2, ' ')
# for all other tags we failed to clean up, just remove then and
# complain about them on the stderr
def desperate_fixer(g):
#print >>sys.stderr, "failed to clean up %s" % str(g.group())
return ' '
html = re.sub('<.*?>', desperate_fixer, html)
# lstrip all lines
html = '\n'.join([x.lstrip() for x in html.splitlines()])
for i, url in enumerate(url_index):
if i == 0:
html += '\n\n'
html += '[%s] %s\n' % (i+1, url)
return html
def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=None, reply_to=False,
attach=None, tinycrm=False, ssl=False, debug=False, subtype='plain', x_headers=None):
attach=None, openobject_id=False, ssl=False, debug=False, subtype='plain', x_headers=None, priority='3'):
"""Send an email."""
import smtplib
@ -314,7 +410,7 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non
from email.Utils import formatdate, COMMASPACE
from email.Utils import formatdate, COMMASPACE
from email import Encoders
import netsvc
import netsvc
if x_headers is None:
x_headers = {}
@ -325,6 +421,9 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non
if not email_from and not config['email_from']:
raise Exception("No Email sender by default, see config file")
if not email_from:
email_from = config.get('email_from', False)
if not email_cc:
email_cc = []
if not email_bcc:
@ -356,13 +455,15 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non
msg['X-Generated-By'] = 'OpenERP (http://www.openerp.com)'
msg['X-OpenERP-Server-Host'] = socket.gethostname()
msg['X-OpenERP-Server-Version'] = release.version
if priority:
msg['X-Priority'] = priorities.get(priority, '3 (Normal)')
# Add dynamic X Header
for key, value in x_headers.items():
msg['X-OpenERP-%s' % key] = str(value)
if tinycrm:
msg['Message-Id'] = "<%s-tinycrm-%s@%s>" % (time.time(), tinycrm, socket.gethostname())
if openobject_id:
msg['Message-Id'] = "<%s-openobject-%s@%s>" % (time.time(), openobject_id, socket.gethostname())
if attach:
try:
@ -393,12 +494,11 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non
return True
except Exception,e:
netsvc.Logger().notifyChannel('email_send (maildir)', netsvc.LOG_ERROR, e)
return False
return False
try:
oldstderr = smtplib.stderr
s = smtplib.SMTP()
try:
# in case of debug, the messages are printed to stderr.
if debug:
@ -412,13 +512,11 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non
s.ehlo()
if config['smtp_user'] or config['smtp_password']:
s.login(config['smtp_user'], config['smtp_password'])
s.login(config['smtp_user'], config['smtp_password'])
s.sendmail(email_from,
flatten([email_to, email_cc, email_bcc]),
msg.as_string()
)
finally:
s.quit()
if debug:
@ -538,9 +636,6 @@ class UpdateableDict(local):
def __ge__(self, y):
return self.dict.__ge__(y)
def __getitem__(self, y):
return self.dict.__getitem__(y)
def __gt__(self, y):
return self.dict.__gt__(y)
@ -1076,6 +1171,89 @@ def detect_ip_addr():
ip_addr = 'localhost'
return ip_addr
# RATIONALE BEHIND TIMESTAMP CALCULATIONS AND TIMEZONE MANAGEMENT:
# The server side never does any timestamp calculation, always
# sends them in a naive (timezone agnostic) format supposed to be
# expressed within the server timezone, and expects the clients to
# provide timestamps in the server timezone as well.
# It stores all timestamps in the database in naive format as well,
# which also expresses the time in the server timezone.
# For this reason the server makes its timezone name available via the
# common/timezone_get() rpc method, which clients need to read
# to know the appropriate time offset to use when reading/writing
# times.
def get_win32_timezone():
"""Attempt to return the "standard name" of the current timezone on a win32 system.
@return: the standard name of the current win32 timezone, or False if it cannot be found.
"""
res = False
if (sys.platform == "win32"):
try:
import _winreg
hklm = _winreg.ConnectRegistry(None,_winreg.HKEY_LOCAL_MACHINE)
current_tz_key = _winreg.OpenKey(hklm, r"SYSTEM\CurrentControlSet\Control\TimeZoneInformation", 0,_winreg.KEY_ALL_ACCESS)
res = str(_winreg.QueryValueEx(current_tz_key,"StandardName")[0]) # [0] is value, [1] is type code
_winreg.CloseKey(current_tz_key)
_winreg.CloseKey(hklm)
except:
pass
return res
def detect_server_timezone():
"""Attempt to detect the timezone to use on the server side.
Defaults to UTC if no working timezone can be found.
@return: the timezone identifier as expected by pytz.timezone.
"""
import time
import netsvc
try:
import pytz
except:
netsvc.Logger().notifyChannel("detect_server_timezone", netsvc.LOG_WARNING,
"Python pytz module is not available. Timezone will be set to UTC by default.")
return 'UTC'
# Option 1: the configuration option (did not exist before, so no backwards compatibility issue)
# Option 2: to be backwards compatible with 5.0 or earlier, the value from time.tzname[0], but only if it is known to pytz
# Option 3: the environment variable TZ
sources = [ (config['timezone'], 'OpenERP configuration'),
(time.tzname[0], 'time.tzname'),
(os.environ.get('TZ',False),'TZ environment variable'), ]
# Option 4: OS-specific: /etc/timezone on Unix
if (os.path.exists("/etc/timezone")):
tz_value = False
try:
f = open("/etc/timezone")
tz_value = f.read(128).strip()
except:
pass
finally:
f.close()
sources.append((tz_value,"/etc/timezone file"))
# Option 5: timezone info from registry on Win32
if (sys.platform == "win32"):
# Timezone info is stored in windows registry.
# However this is not likely to work very well as the standard name
# of timezones in windows is rarely something that is known to pytz.
# But that's ok, it is always possible to use a config option to set
# it explicitly.
sources.append((get_win32_timezone(),"Windows Registry"))
for (value,source) in sources:
if value:
try:
tz = pytz.timezone(value)
netsvc.Logger().notifyChannel("detect_server_timezone", netsvc.LOG_INFO,
"Using timezone %s obtained from %s." % (tz.zone,source))
return value
except pytz.UnknownTimeZoneError:
netsvc.Logger().notifyChannel("detect_server_timezone", netsvc.LOG_WARNING,
"The timezone specified in %s (%s) is invalid, ignoring it." % (source,value))
netsvc.Logger().notifyChannel("detect_server_timezone", netsvc.LOG_WARNING,
"No valid timezone could be detected, using default UTC timezone. You can specify it explicitly with option 'timezone' in the server configuration.")
return 'UTC'
if __name__ == '__main__':
import doctest

View File

@ -155,8 +155,12 @@ _ = GettextAlias()
# class to handle po files
class TinyPoFile(object):
def __init__(self, buffer):
self.logger = netsvc.Logger()
self.buffer = buffer
def warn(self, msg):
self.logger.notifyChannel("i18n", netsvc.LOG_WARNING, msg)
def __iter__(self):
self.buffer.seek(0)
self.lines = self._get_lines()
@ -219,7 +223,6 @@ class TinyPoFile(object):
# This has been a deprecated entry, don't return anything
return self.next()
if not line.startswith('msgid'):
raise Exception("malformed file: bad line: %s" % line)
source = unquote(line[6:])
@ -251,8 +254,9 @@ class TinyPoFile(object):
self.tnrs.append((t, n, r, source, trad))
self.first = False
if name == None:
if name is None:
self.warn('Missing "#:" formated comment for the following source:\n\t%s' % (source,))
return self.next()
return type, name, res_id, source, trad

Some files were not shown because too many files have changed in this diff Show More