From 43c02a656152f92f19389bf6b3b38bd95e93dc8f Mon Sep 17 00:00:00 2001 From: Odoo Translation Bot Date: Sun, 4 Oct 2020 02:30:35 +0200 Subject: [PATCH 1/5] [I18N] Update translation terms from Transifex --- locale/da/LC_MESSAGES/iot.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/locale/da/LC_MESSAGES/iot.po b/locale/da/LC_MESSAGES/iot.po index 1fe45b9e4..44aeddf98 100644 --- a/locale/da/LC_MESSAGES/iot.po +++ b/locale/da/LC_MESSAGES/iot.po @@ -3,6 +3,9 @@ # This file is distributed under the same license as the Odoo package. # FIRST AUTHOR , YEAR. # +# Translators: +# Mads Søndergaard , 2020 +# #, fuzzy msgid "" msgstr "" @@ -10,6 +13,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-16 15:50+0200\n" "PO-Revision-Date: 2018-10-19 08:15+0000\n" +"Last-Translator: Mads Søndergaard , 2020\n" "Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +23,7 @@ msgstr "" #: ../../iot.rst:5 msgid "Internet of Things (IoT)" -msgstr "" +msgstr "Internet of Things (IoT)" #: ../../iot/connect.rst:3 msgid "Connect an IoT Box to your database" From b78c6405e17baf3921517ea549cade6a8f0553a6 Mon Sep 17 00:00:00 2001 From: Fabien Meghazi Date: Thu, 8 Oct 2020 15:33:09 +0200 Subject: [PATCH 2/5] [IMP] odoo.sh: align user doc and Odoo.sh FAQ for dependencies requests --- odoo_sh/advanced/containers.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/odoo_sh/advanced/containers.rst b/odoo_sh/advanced/containers.rst index f43e199f7..d25457c9c 100644 --- a/odoo_sh/advanced/containers.rst +++ b/odoo_sh/advanced/containers.rst @@ -12,9 +12,11 @@ Each build is isolated within its own container (Linux namespaced container). The base is an Ubuntu 16.04 system, where all of Odoo's required dependencies, as well as common useful packages, are installed. -The Odoo.sh team is open to install any system packages -as long as they are distributed in the official Ubuntu repositories. -`Leave us a feedback `_ if you would like a package not yet installed. +The Odoo.sh team is open to install system packages as long as they are +distributed in the official Ubuntu repositories and meets the platform's +`dependency requirements `_. +You can use `the feedback form `_ in order to +submit a package request to the Odoo.sh team. If your project requires additional Python dependencies, or more recent releases, you can define a :file:`requirements.txt` file in the root of your branches listing them. From 70c734769e350df0cd26cddbfb541093996bd3e9 Mon Sep 17 00:00:00 2001 From: Stanislas Sobieski Date: Thu, 8 Oct 2020 10:28:22 +0200 Subject: [PATCH 3/5] [IMP] odoo_sh: branch settings - test tags have been added - modules settings have been moved from global settings to branch settings --- odoo_sh/getting_started/branches.rst | 24 +++++++++++++++++++++++- odoo_sh/getting_started/settings.rst | 18 ------------------ 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/odoo_sh/getting_started/branches.rst b/odoo_sh/getting_started/branches.rst index d8649ae91..4ef346818 100644 --- a/odoo_sh/getting_started/branches.rst +++ b/odoo_sh/getting_started/branches.rst @@ -94,7 +94,8 @@ When you push a new commit in one of these branches, a new server is started, with a database created from scratch and the new revision of the branch. The demo data is loaded, and the unit tests are performed by default. This verifies your changes do not break any of the features tested by them. If you wish, you can -disable the tests in the :ref:`branch's settings `. +disable the tests or allow specific tests to be run with custom tags in the :ref:`branch's settings +`. Similar to staging branches, the emails are not sent but are intercepted by a mailcatcher and scheduled actions are not triggered as often is the database is not in use. @@ -275,9 +276,30 @@ to manually set it up again on every commit. If you choose new build for a stagi make a fresh copy from the production build every time a commit is pushed. A branch that is put back from staging to development will automatically be set to 'Do nothing'. +**Modules installation** + +Choose the modules to install automatically for your development builds. + +.. image:: ./media/interface-settings-modulesinstallation.png + :align: center + +* *Install only my modules* will install the modules of the branch only. This is the default option. + The :ref:`submodules ` are excluded. +* *Full installation (all modules)* will install the modules of the branch, the modules included in the submodules + and all standard modules of Odoo. When running the full installation, the test suite is disabled. +* *Install a list of modules* will install the modules specified in the input just below this option. + The names are the technical name of the modules, and they must be comma-separated. + +If the tests are enabled, the standard Odoo modules suite can take up to 1 hour. +This setting applies to development builds only. +Staging builds duplicate the production build and the production build only installs base. + + **Test suite** For development branches, you can choose to enable or disable the test suite. It's enabled by default. +When the test suite is enabled, you can restrict them by specifying test tags `test tags +`_. **Odoo Version** diff --git a/odoo_sh/getting_started/settings.rst b/odoo_sh/getting_started/settings.rst index ccf4fe9db..2511a6533 100644 --- a/odoo_sh/getting_started/settings.rst +++ b/odoo_sh/getting_started/settings.rst @@ -97,24 +97,6 @@ Production and staging builds are excluded, visitors can only see their status. .. _odoosh-gettingstarted-settings-modules-installation: -Modules installation -==================== - -Choose the modules to install automatically for your development builds. - -.. image:: ./media/interface-settings-modulesinstallation.png - :align: center - -* *Install only my modules* will install the modules of the branch only. - The :ref:`submodules ` are excluded. -* *Full installation (all modules)* will install the modules of the branch, the modules included in the submodules - and all standard modules of Odoo. -* *Install a list of modules* will install the modules specified in the input just below this option. - The names are the technical name of the modules, and they must be comma-separated. - -If the tests are enabled, the standard Odoo modules suite can take up to 1 hour. -This setting applies to development builds only. -Staging builds duplicate the production build and the production build only installs base. Custom domains ============== From 74903d5c9ff7af5a28a257e2b70eb58e5a86fa77 Mon Sep 17 00:00:00 2001 From: Odoo Translation Bot Date: Sun, 11 Oct 2020 02:30:30 +0200 Subject: [PATCH 4/5] [I18N] Update translation terms from Transifex --- locale/da/LC_MESSAGES/accounting.po | 7 ++++--- locale/da/LC_MESSAGES/inventory.po | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/locale/da/LC_MESSAGES/accounting.po b/locale/da/LC_MESSAGES/accounting.po index d86c97dd9..45176b260 100644 --- a/locale/da/LC_MESSAGES/accounting.po +++ b/locale/da/LC_MESSAGES/accounting.po @@ -16,8 +16,9 @@ # Pernille Kristensen , 2019 # Ejner Sønniksen , 2019 # Sanne Kristensen , 2020 -# Walther Barnett , 2020 +# walther_b , 2020 # Mads Søndergaard, 2020 +# Mads Søndergaard , 2020 # #, fuzzy msgid "" @@ -26,7 +27,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-10-03 11:34+0200\n" "PO-Revision-Date: 2018-10-19 08:14+0000\n" -"Last-Translator: Mads Søndergaard, 2020\n" +"Last-Translator: Mads Søndergaard , 2020\n" "Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -6728,7 +6729,7 @@ msgstr "" #: ../../accounting/others/inventory/avg_price_valuation.rst:148 #: ../../accounting/others/inventory/avg_price_valuation.rst:150 msgid "$80" -msgstr "" +msgstr "$80" #: ../../accounting/others/inventory/avg_price_valuation.rst:52 #: ../../accounting/others/inventory/avg_price_valuation.rst:148 diff --git a/locale/da/LC_MESSAGES/inventory.po b/locale/da/LC_MESSAGES/inventory.po index 9634ac982..a5b2df88b 100644 --- a/locale/da/LC_MESSAGES/inventory.po +++ b/locale/da/LC_MESSAGES/inventory.po @@ -12,6 +12,7 @@ # Martin Trigaux, 2019 # lhmflexerp , 2019 # Mads Søndergaard, 2020 +# Mads Søndergaard , 2020 # #, fuzzy msgid "" @@ -20,7 +21,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-10-03 11:34+0200\n" "PO-Revision-Date: 2018-10-19 08:15+0000\n" -"Last-Translator: Mads Søndergaard, 2020\n" +"Last-Translator: Mads Søndergaard , 2020\n" "Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3246,7 +3247,7 @@ msgstr "" #: ../../inventory/management/reporting/valuation_methods_anglo_saxon.rst:142 #: ../../inventory/management/reporting/valuation_methods_anglo_saxon.rst:195 msgid "$80" -msgstr "" +msgstr "$80" #: ../../inventory/management/reporting/valuation_methods_anglo_saxon.rst:43 #: ../../inventory/management/reporting/valuation_methods_anglo_saxon.rst:88 From d5edc4566e2365c6085c22af85d8ece634874eba Mon Sep 17 00:00:00 2001 From: jeroen-vet Date: Sat, 10 Oct 2020 17:57:19 +0800 Subject: [PATCH 5/5] [FIX] accounting: Correct theoretical amount in note --- accounting/others/adviser/budget.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounting/others/adviser/budget.rst b/accounting/others/adviser/budget.rst index bd7ed6ae9..26c168aa5 100644 --- a/accounting/others/adviser/budget.rst +++ b/accounting/others/adviser/budget.rst @@ -156,6 +156,6 @@ purchase lines booked in the accounts and will display them in the The theoretical amount represents the amount of money you theoretically could have spend / should have received in function of the date. When your budget is 1200 for 12 months (january to december), and today is 31 of january, the - theoretical amount will be 1000, since this is the actual amount that could + theoretical amount will be 100, since this is the actual amount that could have been realised.