(13)odoo翻译

zh_CN.po
-------------------------
视图中文字翻译
#. module: sale_commission
#: view:sale.commission.make.invoice:sale_commission.sale_commission_make_invoice_form
msgid "(keep empty for invoicing all the settlements)"
msgstr "(保持所有的结算发票为空)"
------
第一行 #. module: sale_commission 格式为 #. module: 模块的目录名
第二行 #: view:sale.commission.make.invoice:sale_commission.sale_commission_make_invoice_form
格式为 #: view:模型名:模块的目录名.视图的id名
第三行 msgid "(keep empty for invoicing all the settlements)" 把视图对应要翻译的那段复制过来

视图对应代码如下
<record id="sale_commission_make_invoice_form" model="ir.ui.view">
<field name="name">Make invoices</field>
<field name="model">sale.commission.make.invoice</field>
<field name="arch" type="xml">
<form string="Make invoices">
<group>
<field name="journal" />
<field name="product" />
<field name="date" />
</group>
<group string="Settlements"
attrs="{‘invisible‘: [(‘from_settlement‘, ‘=‘, True)]}">
<p colspan="4">(keep empty for invoicing all the settlements)</p>
<field name="from_settlement" invisible="1"/>
<field name="settlements" nolabel="1" widget="many2many_list"/>
</group>
<footer>
<button name="button_create"
string="Create invoices"
type="object"
class="oe_highlight" />
or
<button special="cancel"
string="_Cancel"
class="oe_link" />
</footer>
</form>
</field>
</record>
可以看到模型名 在视图代码 <field name="model">sale.commission.make.invoice</field> model关键词指明了
可以看到视图的id名 在视图代码 <record id="sale_commission_make_invoice_form" model="ir.ui.view">
对应的翻译 在视图代码 <p colspan="4">(keep empty for invoicing all the settlements)</p>

------
-------------------------
字段的翻译
#. module: sale_commission
#: field:sale.commission.make.invoice,from_settlement:0
msgid "From settlement"
msgstr "结算开始时间"

第一行 #. module: sale_commission 格式为 #. module: 模块的目录名
第二行 #: field:sale.commission.make.invoice,from_settlement:0
格式为 #: field:模型名:要翻译的字段名:0
第三行 msgid "From settlement" 这个一般是要翻译的字段的英文

-------
<record id="sale_commission_make_invoice_form" model="ir.ui.view">
<field name="name">Make invoices</field>
<field name="model">sale.commission.make.invoice</field>
<field name="arch" type="xml">
<form string="Make invoices">
<group>
<field name="journal" />
<field name="product" />
<field name="date" />
</group>
<group string="Settlements"
attrs="{‘invisible‘: [(‘from_settlement‘, ‘=‘, True)]}">
<p colspan="4">(keep empty for invoicing all the settlements)</p>
<field name="from_settlement" invisible="1"/>
<field name="settlements" nolabel="1" widget="many2many_list"/>
</group>
<footer>
<button name="button_create"
string="Create invoices"
type="object"
class="oe_highlight" />
or
<button special="cancel"
string="_Cancel"
class="oe_link" />
</footer>
</form>
</field>
</record>
-------
可以看到模型名 在视图代码 <field name="model">sale.commission.make.invoice</field> model关键词指明了
对应的翻译 在视图代码 <field name="from_settlement" invisible="1"/>
-------------------------
py代码中的字符翻译
#. module: sale_commission
#: code:addons/sale_commission/models/settlement.py:78
#, python-format
msgid "Make invoice"
msgstr "制作发票"

第一行 #. module: sale_commission 格式为 #. module: 模块的目录名
第二行 #: code:addons/sale_commission/models/settlement.py:78
格式为 #: code:python代码相对跟目录的文件名:第几行 注意一下code:addons... 一般第三方代码不会放在addons下
一般新建一个目录 addonscustom ,这时这里要相应的更改
第三行 #, python-format 是python代码,这个照写就可以
-----
def action_invoice(self):
return {
‘type‘: ‘ir.actions.act_window‘,
‘name‘: _(‘Make invoice‘),
‘res_model‘: ‘sale.commission.make.invoice‘,
‘view_type‘: ‘form‘,
‘target‘: ‘new‘,
‘view_mode‘: ‘form‘,
‘context‘: {‘settlement_ids‘: self.ids}
}
-------
可以看到要翻译的字符 在视图代码 ‘name‘: _(‘Make invoice‘),
我这里没有行号,用编辑打开源代码就可以看到左边有行号,这个行号也不是要太准,差不多就可以
---------------------------
选择内容
#. module: sale_commission
#: selection:res.partner,settlement:0
msgid "Monthly"
msgstr "月度"

第一行 #. module: sale_commission 格式为 #. module: 模块的目录名
第二行 #: selection:res.partner,settlement:0
格式为 #:selection:模型名,字段名
模型名

----
class ResPartner(models.Model):
"""Add some fields related to commissions"""
_inherit = "res.partner"

agents = fields.Many2many(
comodel_name="res.partner", relation="partner_agent_rel",
column1="partner_id", column2="agent_id",
domain="[(‘agent‘, ‘=‘, True)]")
# Fields for the partner when it acts as an agent
agent = fields.Boolean(
string="Creditor/Agent",
help="Check this field if the partner is a creditor or an agent.")
agent_type = fields.Selection(
selection=[("agent", "External agent")], string="Type", required=True,
default="agent")
commission = fields.Many2one(
string="Commission", comodel_name="sale.commission",
help="This is the default commission used in the sales where this "
"agent is assigned. It can be changed on each operation if "
"needed.")
settlement = fields.Selection(
selection=[("monthly", "Monthly"),
("quaterly", "Quarterly"),
("semi", "Semi-annual"),
("annual", "Annual")],
string="Settlement period", default="monthly", required=True)
settlements = fields.One2many(
comodel_name="sale.commission.settlement", inverse_name="agent",
readonly=True)

@api.onchange(‘agent_type‘)
def onchange_agent_type(self):
if self.agent_type == ‘agent‘:
self.supplier = True

---
可以看到模型名 在代码 _inherit = "res.partner"
对应的翻译字段对应要翻译的值 在代码 settlement = fields.Selection(
selection=[("monthly", "Monthly"),
("quaterly", "Quarterly"),
("semi", "Semi-annual"),
("annual", "Annual")],

-----------------------------------------
帮助
#. module: sale_commission
#: help:res.partner,commission:0
msgid "This is the default commission used in the sales where this agent is assigned. It can be changed on each operation if needed."
msgstr "这是分配给代理的默认提成类型,若你需要可以在每个操作改变它"

第一行 #. module: sale_commission 格式为 #. module: 模块的目录名
第二行 #: help:res.partner,commission:0
格式为 #: help:模型名,字段名
----------
commission = fields.Many2one(
string="Commission", comodel_name="sale.commission",
help="This is the default commission used in the sales where this "
"agent is assigned. It can be changed on each operation if "
"needed.")
可以看到字段名 在代码 commission = fields.Many2one(
-----------
这个和选择内容相似
-----------------------------------------
菜单
#. module: sale_commission
#: model:ir.ui.menu,name:sale_commission.menu_agents_settlement
msgid "Settle commissions"
msgstr "提成结算"

第一行 #. module: sale_commission 格式为 #. module: 模块的目录名
第二行 #: model:ir.ui.menu,name:sale_commission.menu_agents_settlement
格式为 #: model:ir.ui.menu,name:模块的目录名.id名

----------
<menuitem id="menu_agents_settlement"
parent="menu_sale_commissions_conf"
action="action_agents_settlement" />

可以看到id名 在代码 <menuitem id="menu_agents_settlement"
---------

针对菜单,还改用户的首选项,重新保存一次就可以
-----------------------------------------
窗户动作响应
#. module: sale_commission
#: model:ir.actions.act_window,name:sale_commission.action_agents_settlement
msgid "Settle commissions"
msgstr "提成结算"
第一行 #. module: sale_commission 格式为 #. module: 模块的目录名
第二行 #: model:ir.actions.act_window,name:sale_commission.action_agents_settlement
格式为 #: model:ir.actions.act_window,name:模块的目录名.id名

--------------
<act_window id="action_agents_settlement"
name="Settle commissions"
res_model="sale.commission.make.settle"
view_mode="form"
view_type="form"
target="new" />

可以看到id名 在代码 <act_window id="action_agents_settlement"
--------------
-----------------------------------------

#. module: account
#: model:account.payment.term,name:account.account_payment_term_15days
#: model:account.payment.term,note:account.account_payment_term_15days
msgid "15 Days"
msgstr "15 天"

第一行 #. module: account 格式为 #. module: 模块的目录名
第二行 #: model:account.payment.term,name:account.account_payment_term_15days
格式为 #: model:模型名,name:模块的目录名.id名 或 note:模块的目录名.id名
id名为当xml结构一组的标识
换句话说就是id名下面结构下,为name=‘name‘ 包含的字符值,要翻译
--------------
<record id="account_payment_term_15days" model="account.payment.term">
<field name="name">15 Days</field>
<field name="note">15 Days</field>
</record>

可以看到模型名 在代码 model="account.payment.term">
可以看到id名 在代码 <record id="account_payment_term_15days"
--------------

注:总是翻译无效时,可以搜索旁边的 翻译,从而参照 写翻译条

时间: 2024-12-28 23:56:49

(13)odoo翻译的相关文章

ODOO翻译导出窗口修正

当你辛苦修正odoo的翻译,想把它导出到其它系统的时候, 你会发现导出向导窗口无法显示下拉列表. 下面的方法修正此问题: 1.打开"开发者模式". 2.去到翻译导出向导:设置 - 翻译 - 导入/导出 - 导出翻译 3.在"调试视图#"中,打开"编辑from视图" 4.在视图中加入" <group  states="choose"><div><p><br/><br

如何翻译word文件中的英文

现如今的不论是学生还是职员,都喜欢在网络上查找自己需要的文件资料,然后下载保存到电脑中进行浏览使用.可是有时却发现,下载的文件资料内容全是英文.可是奈何自己的英语水平不是很好,无法阅读浏览文件资料的意思.而网上很多翻译工具翻译出来的中文意思又不准确.为了帮助大家解决这个难题,浏览word文件当中的英文内容.今天小编就将教给大家如何翻译word文件中的英文. 1.双击打开电脑当中的浏览器,在浏览器内的搜索框中输入关键词word文档在线翻译.然后使用鼠标点击进入搜索到得相关页面内. 2.选择Word

图标字体化浅谈[转]

在做手机端Web App项目中,经常会遇到小图标在手机上显示比较模糊的问题,经过实践发现了一种比较好的解决方案,图标字体化.在微社区项目中,有很多小的Icon(图标),如分享.回复.赞.返回.话题.访问.箭头等,这些Icon(图标)一般都是纯色的.开始制作时考虑用双倍大小的Sprite图,通过CSS样式设置只显示二分之一尺寸,这样在Retina屏上显示的大小是正常的,一旦放大屏幕后图标又变得模糊不清,测试的效果不是很理想,后来又考虑多套图标适配方案.SVG矢量图等,都因为种种原因放弃掉了(如多套

python 各模块

01 关于本书 02 代码约定 03 关于例子 04 如何联系我们 1 核心模块 11 介绍 111 内建函数和异常 112 操作系统接口模块 113 类型支持模块 114 正则表达式 115 语言支持模块 12 _ _builtin_ _ 模块 121 使用元组或字典中的参数调用函数 1211 Example 1-1 使用 apply 函数 1212 Example 1-2 使用 apply 函数传递关键字参数 1213 Example 1-3 使用 apply 函数调用基类的构造函数 122

Java9: REPL环境与编程

副标题: Java 9开始提供 REPL环境 -- JShell 有可能会改变程序员Java的使用和学习方式 译者注: 推荐一个在线的REPL演示环境: Java WEB控制台 http://www.javarepl.com/console.html 你可以在里面试着执行一些简单的Java代码,比如: System.out.println("See See REPL") System.getProperty("user.name") 2 + 2 * 5 有个段子说:

转:Python标准库(非常经典的各种模块介绍)

Python Standard Library 翻译: Python 江湖群 10/06/07 20:10:08 编译 0.1. 关于本书 0.2. 代码约定 0.3. 关于例子 0.4. 如何联系我们 核心模块 1.1. 介绍 1.2. _ _builtin_ _ 模块 1.3. exceptions 模块 1.4. os 模块 1.5. os.path 模块 1.6. stat 模块 1.7. string 模块 1.8. re 模块 1.9. math 模块 1.10. cmath 模块

257. Binary Tree Paths [easy] (Python)

题目链接 https://leetcode.com/problems/binary-tree-paths/ 题目原文 Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: 1 / 2 3 5 All root-to-leaf paths are: ["1->2->5", "1->3"] 题目翻译 给定一个二叉

图标字体化浅谈

在做手机端Web App项目中,经常会遇到小图标在手机上显示比较模糊的问题,经过实践发现了一种比较好的解决方案,图标字体化.在微社区项目中,有很多小的Icon(图标),如分享.回复.赞.返回.话题.访问.箭头等,这些Icon(图标)一般都是纯色的.开始制作时考虑用双倍大小的Sprite图,通过CSS样式设置只显示二分之一尺寸,这样在Retina屏上显示的大小是正常的,一旦放大屏幕后图标又变得模糊不清,测试的效果不是很理想,后来又考虑多套图标适配方案.SVG矢量图等,都因为种种原因放弃掉了(如多套

poj1979 Red and Black【搜索】

点击打开题目 Red and Black Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 23194   Accepted: 12513 Description There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile.