Merge lp:~vauxoo/addons-vauxoo/7.0-lang_conf-dev_luis into lp:addons-vauxoo/7.0

Proposed by Luis Torres - http://www.vauxoo.com
Status: Merged
Approved by: Moisés López - http://www.vauxoo.com
Approved revision: 1075
Merged at revision: 1075
Proposed branch: lp:~vauxoo/addons-vauxoo/7.0-lang_conf-dev_luis
Merge into: lp:addons-vauxoo/7.0
Diff against target: 97 lines (+81/-0)
3 files modified
lang_conf/__init__.py (+25/-0)
lang_conf/__openerp__.py (+44/-0)
lang_conf/data/lang_data.xml (+12/-0)
To merge this branch: bzr merge lp:~vauxoo/addons-vauxoo/7.0-lang_conf-dev_luis
Reviewer Review Type Date Requested Status
Moisés López - http://www.vauxoo.com Pending
Review via email: mp+226186@code.launchpad.net

Description of the change

Se agrego data para colocar formato separador a [1,1,1,1,1,1,1,1,1,1,-2] en el idioma Ingles

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'lang_conf'
2=== added file 'lang_conf/__init__.py'
3--- lang_conf/__init__.py 1970-01-01 00:00:00 +0000
4+++ lang_conf/__init__.py 2014-07-09 18:12:19 +0000
5@@ -0,0 +1,25 @@
6+# -*- encoding: utf-8 -*-
7+###########################################################################
8+# Module Writen to OpenERP, Open Source Management Solution
9+#
10+# Copyright (c) 2014 Vauxoo - http://www.vauxoo.com/
11+# All Rights Reserved.
12+# info Vauxoo (info@vauxoo.com)
13+############################################################################
14+# Coded by: Luis Torres (luis_t@vauxoo.com)
15+############################################################################
16+#
17+# This program is free software: you can redistribute it and/or modify
18+# it under the terms of the GNU Affero General Public License as
19+# published by the Free Software Foundation, either version 3 of the
20+# License, or (at your option) any later version.
21+#
22+# This program is distributed in the hope that it will be useful,
23+# but WITHOUT ANY WARRANTY; without even the implied warranty of
24+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25+# GNU Affero General Public License for more details.
26+#
27+# You should have received a copy of the GNU Affero General Public License
28+# along with this program. If not, see <http://www.gnu.org/licenses/>.
29+#
30+##############################################################################
31
32=== added file 'lang_conf/__openerp__.py'
33--- lang_conf/__openerp__.py 1970-01-01 00:00:00 +0000
34+++ lang_conf/__openerp__.py 2014-07-09 18:12:19 +0000
35@@ -0,0 +1,44 @@
36+# -*- encoding: utf-8 -*-
37+###########################################################################
38+# Module Writen to OpenERP, Open Source Management Solution
39+#
40+# Copyright (c) 2014 Vauxoo - http://www.vauxoo.com/
41+# All Rights Reserved.
42+# info Vauxoo (info@vauxoo.com)
43+############################################################################
44+# Coded by: Luis Torres (luis_t@vauxoo.com)
45+############################################################################
46+#
47+# This program is free software: you can redistribute it and/or modify
48+# it under the terms of the GNU Affero General Public License as
49+# published by the Free Software Foundation, either version 3 of the
50+# License, or (at your option) any later version.
51+#
52+# This program is distributed in the hope that it will be useful,
53+# but WITHOUT ANY WARRANTY; without even the implied warranty of
54+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
55+# GNU Affero General Public License for more details.
56+#
57+# You should have received a copy of the GNU Affero General Public License
58+# along with this program. If not, see <http://www.gnu.org/licenses/>.
59+#
60+##############################################################################
61+{
62+ "name" : "Complete data from lang english",
63+ "version" : "1.0",
64+ "author" : "Vauxoo",
65+ "category" : "Generics Modules",
66+ "description" : """
67+ This module complete the Separator Format, Decimal Separator, Thousands Separator in
68+ data of lang english
69+ """,
70+ "website" : "http://www.vauxoo.com/",
71+ "license" : "AGPL-3",
72+ "depends" : ["base",],
73+ "demo" : [],
74+ "data" : [
75+ "data/lang_data.xml",
76+ ],
77+ "installable" : True,
78+ "active" : False,
79+}
80
81=== added directory 'lang_conf/data'
82=== added file 'lang_conf/data/lang_data.xml'
83--- lang_conf/data/lang_data.xml 1970-01-01 00:00:00 +0000
84+++ lang_conf/data/lang_data.xml 2014-07-09 18:12:19 +0000
85@@ -0,0 +1,12 @@
86+<?xml version="1.0" encoding="utf-8"?>
87+<openerp>
88+ <data noupdate="1">
89+
90+ <record id="base.lang_en" model="res.lang">
91+ <field name="grouping">[1,1,1,1,1,1,1,1,1,1,-2]</field>
92+ <field name="decimal_point">.</field>
93+ <field name="thousands_sep">,</field>
94+ </record>
95+
96+ </data>
97+</openerp>