From 712606af37fd6bd47e7947d65089b92bb08b4ab0 Mon Sep 17 00:00:00 2001 From: Simone Rubino Date: Mon, 25 May 2026 11:39:26 +0200 Subject: [PATCH 01/92] Updated from template --- .copier-answers.yml | 3 +-- .github/workflows/pre-commit.yml | 4 +++- .pre-commit-config.yaml | 7 ++++++- README.md | 1 + checklog-odoo.cfg | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index 2053f2ee6670..fb0e4fe0bde2 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,8 +1,7 @@ # Do NOT update manually; changes here will be overwritten by Copier -_commit: v1.36 +_commit: v1.42 _src_path: git+https://github.com/OCA/oca-addons-repo-template additional_ruff_rules: [] -ci: GitHub convert_readme_fragments_to_markdown: true enable_checklog_odoo: true generate_requirements_txt: true diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 852a07469b2e..72aac6e1e373 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -1,3 +1,4 @@ + name: pre-commit on: @@ -16,8 +17,9 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" cache: 'pip' + cache-dependency-path: '.pre-commit-config.yaml' - name: Get python version run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - uses: actions/cache@v4 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3054c9f3f23e..749a12fee67f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,7 +21,7 @@ exclude: | # You don't usually want a bot to modify your legal texts (LICENSE.*|COPYING.*) default_language_version: - python: python3 + python: python3.12 node: "22.9.0" repos: - repo: local @@ -38,6 +38,11 @@ repos: entry: found a en.po file language: fail files: '[a-zA-Z0-9_]*/i18n/en\.po$' + - id: obsolete dotfiles + name: obsolete dotfiles + entry: found obsolete files; remove them + files: '^(\.travis\.yml|\.t2d\.yml|CONTRIBUTING\.md|\.prettierrc\.yml|\.eslintrc\.yml)$' + language: fail - repo: https://github.com/sbidoul/whool rev: v1.3 hooks: diff --git a/README.md b/README.md index 1641bc6c13d9..6fa332325c9c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + [![Support the OCA](https://odoo-community.org/readme-banner-image)](https://odoo-community.org/get-involved?utm_source=repo-readme) # web diff --git a/checklog-odoo.cfg b/checklog-odoo.cfg index ae8394eb9f1e..58d43aa6662b 100644 --- a/checklog-odoo.cfg +++ b/checklog-odoo.cfg @@ -2,4 +2,4 @@ ignore= WARNING.* 0 failed, 0 error\(s\).* WARNING .* Killing chrome descendants-or-self .* - Missing widget: res_partner_many2one for field of type many2one + WARNING.* Missing widget: res_partner_many2one for field of type many2one.* From 53a19fee74a8f83726ca14cd98dc6b74fc26bd93 Mon Sep 17 00:00:00 2001 From: Simone Rubino Date: Mon, 25 May 2026 11:46:49 +0200 Subject: [PATCH 02/92] Copier configuration for rebel modules --- .copier-answers.yml | 3 ++- .github/workflows/test.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index fb0e4fe0bde2..80cdbc8a5c2a 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -16,7 +16,8 @@ odoo_test_flavor: Both odoo_version: 18.0 org_name: Odoo Community Association (OCA) org_slug: OCA -rebel_module_groups: [] +rebel_module_groups: +- web_responsive repo_description: web repo_name: web repo_slug: web diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5df33daee45e..6ccdbc5f9922 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,18 +36,18 @@ jobs: matrix: include: - container: ghcr.io/oca/oca-ci/py3.10-odoo18.0:latest - exclude: "web_responsive" + include: "web_responsive" name: test with Odoo - container: ghcr.io/oca/oca-ci/py3.10-ocb18.0:latest - exclude: "web_responsive" + include: "web_responsive" name: test with OCB makepot: "true" - container: ghcr.io/oca/oca-ci/py3.10-odoo18.0:latest - include: "web_responsive" - name: test with Odoo (rebel modules) + exclude: "web_responsive" + name: test with Odoo - container: ghcr.io/oca/oca-ci/py3.10-ocb18.0:latest - include: "web_responsive" - name: test with OCB (rebel modules) + exclude: "web_responsive" + name: test with OCB makepot: "true" services: postgres: From 72a97e398077ce6d27975807cbfc49978d68dfe7 Mon Sep 17 00:00:00 2001 From: MarwanBHL Date: Sun, 31 May 2026 23:08:38 +0200 Subject: [PATCH 03/92] [FIX] web_company_color: load webp plugin to handle webp logos --- web_company_color/readme/CONTRIBUTORS.md | 1 + web_company_color/utils.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/web_company_color/readme/CONTRIBUTORS.md b/web_company_color/readme/CONTRIBUTORS.md index e074b858bf02..d6e92913ce18 100644 --- a/web_company_color/readme/CONTRIBUTORS.md +++ b/web_company_color/readme/CONTRIBUTORS.md @@ -10,3 +10,4 @@ - Carlos Roca - [PyTech](https://www.pytech.it): - Simone Rubino \<\> +- Marwan Behillil \<> diff --git a/web_company_color/utils.py b/web_company_color/utils.py index 2028a4c4b892..78f1ab6cc7d8 100644 --- a/web_company_color/utils.py +++ b/web_company_color/utils.py @@ -4,7 +4,10 @@ import math from io import BytesIO -from PIL import Image +from PIL import ( + Image, + WebPImagePlugin, # noqa: F401 - force WebP opener registration +) def n_rgb_to_hex(_r, _g, _b): From e6b987eaa3d7092dc0955a37678e4f0f17ac0311 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:31:13 +0000 Subject: [PATCH 04/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (2 of 2 strings) Translation: web-18.0/web-18.0-web_m2x_options Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_m2x_options/sl/ --- web_m2x_options/i18n/sl.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/web_m2x_options/i18n/sl.po b/web_m2x_options/i18n/sl.po index 8429ebc3ee6b..157042e70c88 100644 --- a/web_m2x_options/i18n/sl.po +++ b/web_m2x_options/i18n/sl.po @@ -9,25 +9,26 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-01-03 03:50+0000\n" -"PO-Revision-Date: 2018-01-03 03:50+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2026-06-06 11:35+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_m2x_options #: model:ir.model,name:web_m2x_options.model_ir_http msgid "HTTP Routing" -msgstr "" +msgstr "HTTP usmerjanje" #. module: web_m2x_options #: model:ir.model,name:web_m2x_options.model_ir_config_parameter msgid "System Parameter" -msgstr "" +msgstr "Sistemski parameter" #, python-format #~ msgid "Search More..." From 4d6398d6ae8069b1c7ae72fe2b401f8cd258aa3a Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:34:57 +0000 Subject: [PATCH 05/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (8 of 8 strings) Translation: web-18.0/web-18.0-web_widget_x2many_2d_matrix Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_x2many_2d_matrix/sl/ --- web_widget_x2many_2d_matrix/i18n/sl.po | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/web_widget_x2many_2d_matrix/i18n/sl.po b/web_widget_x2many_2d_matrix/i18n/sl.po index 4da3bbbf4675..61b868344cfc 100644 --- a/web_widget_x2many_2d_matrix/i18n/sl.po +++ b/web_widget_x2many_2d_matrix/i18n/sl.po @@ -8,58 +8,61 @@ msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-08 05:48+0000\n" -"Last-Translator: Matjaž Mozetič \n" +"PO-Revision-Date: 2026-06-06 11:35+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/" "sl/)\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_x2many_2d_matrix #: model_terms:ir.ui.view,arch_db:web_widget_x2many_2d_matrix.view_groups_form msgid "Boolean field as value" -msgstr "" +msgstr "Boolean polje kot vrednost" #. module: web_widget_x2many_2d_matrix #: model_terms:ir.ui.view,arch_db:web_widget_x2many_2d_matrix.view_groups_form msgid "Char field as value, clickable X axis" -msgstr "" +msgstr "Polje Char kot vrednost, os X, na katero se lahko klikne" #. module: web_widget_x2many_2d_matrix #: model_terms:ir.ui.view,arch_db:web_widget_x2many_2d_matrix.view_groups_form msgid "Float field as value" -msgstr "" +msgstr "Polje Float kot vrednost" #. module: web_widget_x2many_2d_matrix #: model_terms:ir.ui.view,arch_db:web_widget_x2many_2d_matrix.view_groups_form msgid "Float field as value with float_time widget" -msgstr "" +msgstr "Polje 'Float' kot vrednost z widgetom float_time" #. module: web_widget_x2many_2d_matrix #: model_terms:ir.ui.view,arch_db:web_widget_x2many_2d_matrix.view_groups_form msgid "" "Many2one field as value and y axis, options and domain set on value field" msgstr "" +"Polje Many2one kot vrednost in os y, možnosti in domena nastavljene v polju " +"vrednosti" #. module: web_widget_x2many_2d_matrix #: model_terms:ir.ui.view,arch_db:web_widget_x2many_2d_matrix.view_groups_form msgid "Matrix widget" -msgstr "" +msgstr "Matrix widget" #. module: web_widget_x2many_2d_matrix #. odoo-javascript #: code:addons/web_widget_x2many_2d_matrix/static/src/components/x2many_2d_matrix_renderer/x2many_2d_matrix_renderer.xml:0 msgid "Nothing to display." -msgstr "" +msgstr "Ni ničesar za prikaz." #. module: web_widget_x2many_2d_matrix #: model_terms:ir.ui.view,arch_db:web_widget_x2many_2d_matrix.view_groups_form msgid "Selection field as value" -msgstr "" +msgstr "Polje 'Selection' kot vrednost" #, fuzzy, python-format #~ msgid "Sum Total" From 538be59f29c5dd42771ec0addca5b88b78cadc75 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:30:45 +0000 Subject: [PATCH 06/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (1 of 1 strings) Translation: web-18.0/web-18.0-web_environment_ribbon Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_environment_ribbon/sl/ --- web_environment_ribbon/i18n/sl.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/web_environment_ribbon/i18n/sl.po b/web_environment_ribbon/i18n/sl.po index 5b5182d3540c..534ca2fb26a5 100644 --- a/web_environment_ribbon/i18n/sl.po +++ b/web_environment_ribbon/i18n/sl.po @@ -9,20 +9,21 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-07-13 16:06+0000\n" -"PO-Revision-Date: 2017-07-13 16:06+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2026-06-06 11:35+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_environment_ribbon #: model:ir.model,name:web_environment_ribbon.model_web_environment_ribbon_backend msgid "Web Environment Ribbon Backend" -msgstr "" +msgstr "Spletno okolje – trak z orodji – ozadje" #~ msgid "ID" #~ msgstr "ID" From f18b5833fb9ff861795f7bdc0f56f5724f92928c Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:35:28 +0000 Subject: [PATCH 07/92] Added translation using Weblate (Slovenian) --- web_widget_numeric_step/i18n/sl.po | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 web_widget_numeric_step/i18n/sl.po diff --git a/web_widget_numeric_step/i18n/sl.po b/web_widget_numeric_step/i18n/sl.po new file mode 100644 index 000000000000..3f9829582f46 --- /dev/null +++ b/web_widget_numeric_step/i18n/sl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_numeric_step +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_numeric_step +#. odoo-javascript +#: code:addons/web_widget_numeric_step/static/src/numeric_step.xml:0 +msgid "Minus" +msgstr "" + +#. module: web_widget_numeric_step +#. odoo-javascript +#: code:addons/web_widget_numeric_step/static/src/numeric_step.esm.js:0 +msgid "Numeric Step" +msgstr "" + +#. module: web_widget_numeric_step +#. odoo-javascript +#: code:addons/web_widget_numeric_step/static/src/numeric_step.xml:0 +msgid "Plus" +msgstr "" From 721e97b04a0035f1373891d98d7a19a31a08019f Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:35:58 +0000 Subject: [PATCH 08/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_widget_numeric_step Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_numeric_step/sl/ --- web_widget_numeric_step/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_widget_numeric_step/i18n/sl.po b/web_widget_numeric_step/i18n/sl.po index 3f9829582f46..e1054ae51fd8 100644 --- a/web_widget_numeric_step/i18n/sl.po +++ b/web_widget_numeric_step/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:36+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,21 +15,22 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_numeric_step #. odoo-javascript #: code:addons/web_widget_numeric_step/static/src/numeric_step.xml:0 msgid "Minus" -msgstr "" +msgstr "Minus" #. module: web_widget_numeric_step #. odoo-javascript #: code:addons/web_widget_numeric_step/static/src/numeric_step.esm.js:0 msgid "Numeric Step" -msgstr "" +msgstr "Številčni korak" #. module: web_widget_numeric_step #. odoo-javascript #: code:addons/web_widget_numeric_step/static/src/numeric_step.xml:0 msgid "Plus" -msgstr "" +msgstr "Plus" From 610b39c9a3fc2b5e6b50d21246b97dc3c710b9a0 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:36:12 +0000 Subject: [PATCH 09/92] Added translation using Weblate (Slovenian) --- web_refresher/i18n/sl.po | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web_refresher/i18n/sl.po diff --git a/web_refresher/i18n/sl.po b/web_refresher/i18n/sl.po new file mode 100644 index 000000000000..5269896ca3e4 --- /dev/null +++ b/web_refresher/i18n/sl.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_refresher +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_refresher +#. odoo-javascript +#: code:addons/web_refresher/static/src/xml/refresher.xml:0 +msgid "Refresh" +msgstr "" + +#. module: web_refresher +#. odoo-javascript +#: code:addons/web_refresher/static/src/xml/refresher.xml:0 +msgid "Refresher" +msgstr "" From 40c543d04358693b061d26d2525e6e29be894fe5 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:37:18 +0000 Subject: [PATCH 10/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (2 of 2 strings) Translation: web-18.0/web-18.0-web_refresher Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_refresher/sl/ --- web_refresher/i18n/sl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web_refresher/i18n/sl.po b/web_refresher/i18n/sl.po index 5269896ca3e4..b4aa5b310de5 100644 --- a/web_refresher/i18n/sl.po +++ b/web_refresher/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:37+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,15 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_refresher #. odoo-javascript #: code:addons/web_refresher/static/src/xml/refresher.xml:0 msgid "Refresh" -msgstr "" +msgstr "Osveži" #. module: web_refresher #. odoo-javascript #: code:addons/web_refresher/static/src/xml/refresher.xml:0 msgid "Refresher" -msgstr "" +msgstr "Osveževanje" From 9420f3a552a1a8f1de768667bd762bd07bf80eca Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:37:31 +0000 Subject: [PATCH 11/92] Added translation using Weblate (Slovenian) --- web_group_expand/i18n/sl.po | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web_group_expand/i18n/sl.po diff --git a/web_group_expand/i18n/sl.po b/web_group_expand/i18n/sl.po new file mode 100644 index 000000000000..c9fe976c2b27 --- /dev/null +++ b/web_group_expand/i18n/sl.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_group_expand +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_group_expand +#. odoo-javascript +#: code:addons/web_group_expand/static/src/xml/list_controller.xml:0 +msgid "Compress" +msgstr "" + +#. module: web_group_expand +#. odoo-javascript +#: code:addons/web_group_expand/static/src/xml/list_controller.xml:0 +msgid "Expand" +msgstr "" From 891317ba36d837e8cd5864347739114329674447 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:38:11 +0000 Subject: [PATCH 12/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (2 of 2 strings) Translation: web-18.0/web-18.0-web_group_expand Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_group_expand/sl/ --- web_group_expand/i18n/sl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web_group_expand/i18n/sl.po b/web_group_expand/i18n/sl.po index c9fe976c2b27..0e836a48aacd 100644 --- a/web_group_expand/i18n/sl.po +++ b/web_group_expand/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:38+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,15 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_group_expand #. odoo-javascript #: code:addons/web_group_expand/static/src/xml/list_controller.xml:0 msgid "Compress" -msgstr "" +msgstr "Stisni" #. module: web_group_expand #. odoo-javascript #: code:addons/web_group_expand/static/src/xml/list_controller.xml:0 msgid "Expand" -msgstr "" +msgstr "Razširi" From c11e9a72e8bf6162c699cb5d53b65a6209b3f6ad Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:38:26 +0000 Subject: [PATCH 13/92] Added translation using Weblate (Slovenian) --- web_widget_open_tab/i18n/sl.po | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 web_widget_open_tab/i18n/sl.po diff --git a/web_widget_open_tab/i18n/sl.po b/web_widget_open_tab/i18n/sl.po new file mode 100644 index 000000000000..3f9e4a656078 --- /dev/null +++ b/web_widget_open_tab/i18n/sl.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_open_tab +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_open_tab +#: model:ir.model.fields,field_description:web_widget_open_tab.field_ir_model__add_open_tab_field +msgid "Add Open Tab Field" +msgstr "" + +#. module: web_widget_open_tab +#: model:ir.model.fields,help:web_widget_open_tab.field_ir_model__add_open_tab_field +msgid "Adds open-tab field in list views." +msgstr "" + +#. module: web_widget_open_tab +#: model:ir.model,name:web_widget_open_tab.model_base +msgid "Base" +msgstr "" + +#. module: web_widget_open_tab +#. odoo-javascript +#: code:addons/web_widget_open_tab/static/src/js/open_tab_widget.esm.js:0 +msgid "Click to open on new tab" +msgstr "" + +#. module: web_widget_open_tab +#: model:ir.model,name:web_widget_open_tab.model_ir_model +msgid "Models" +msgstr "" + +#. module: web_widget_open_tab +#. odoo-javascript +#: code:addons/web_widget_open_tab/static/src/js/open_tab_widget.esm.js:0 +msgid "Open Tab" +msgstr "" From 736a62d6ade5cdeac5ca34aa913b105ffa596dd8 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:40:06 +0000 Subject: [PATCH 14/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (6 of 6 strings) Translation: web-18.0/web-18.0-web_widget_open_tab Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_open_tab/sl/ --- web_widget_open_tab/i18n/sl.po | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/web_widget_open_tab/i18n/sl.po b/web_widget_open_tab/i18n/sl.po index 3f9e4a656078..facfec06c4be 100644 --- a/web_widget_open_tab/i18n/sl.po +++ b/web_widget_open_tab/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:40+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,35 +15,36 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_open_tab #: model:ir.model.fields,field_description:web_widget_open_tab.field_ir_model__add_open_tab_field msgid "Add Open Tab Field" -msgstr "" +msgstr "Dodaj polje 'Odpri zavihek'" #. module: web_widget_open_tab #: model:ir.model.fields,help:web_widget_open_tab.field_ir_model__add_open_tab_field msgid "Adds open-tab field in list views." -msgstr "" +msgstr "Doda polje odpri zavihek v prikaze seznamov." #. module: web_widget_open_tab #: model:ir.model,name:web_widget_open_tab.model_base msgid "Base" -msgstr "" +msgstr "Osnova" #. module: web_widget_open_tab #. odoo-javascript #: code:addons/web_widget_open_tab/static/src/js/open_tab_widget.esm.js:0 msgid "Click to open on new tab" -msgstr "" +msgstr "Klikni za odprtje novega zavihka" #. module: web_widget_open_tab #: model:ir.model,name:web_widget_open_tab.model_ir_model msgid "Models" -msgstr "" +msgstr "Modeli" #. module: web_widget_open_tab #. odoo-javascript #: code:addons/web_widget_open_tab/static/src/js/open_tab_widget.esm.js:0 msgid "Open Tab" -msgstr "" +msgstr "Odpri zavihek" From 18db05ae79adae8faaab3c60861bc3e2324fe963 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:40:31 +0000 Subject: [PATCH 15/92] Added translation using Weblate (Slovenian) --- web_responsive/i18n/sl.po | 184 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 web_responsive/i18n/sl.po diff --git a/web_responsive/i18n/sl.po b/web_responsive/i18n/sl.po new file mode 100644 index 000000000000..3ee135360395 --- /dev/null +++ b/web_responsive/i18n/sl.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_responsive +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/menu_canonical_searchbar/searchbar.xml:0 +msgid "App Icon" +msgstr "" + +#. module: web_responsive +#: model:ir.actions.act_window,name:web_responsive.res_users_view_form_apps_menu_preferences_action +msgid "Apps Menu Preferences" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields,field_description:web_responsive.field_res_users__apps_menu_search_type +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Apps Menu Search Type" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields,field_description:web_responsive.field_res_users__apps_menu_theme +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Apps Menu Theme" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_search_type__canonical +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Canonical" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_search_type__command_palette +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Command Palette" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_theme__community +msgid "Community" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 +msgid "Discard" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/command_palette/main.xml:0 +msgid "Exit" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_search_type__fuse +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Fuse" +msgstr "" + +#. module: web_responsive +#: model:ir.model,name:web_responsive.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/apps_menu/apps_menu.xml:0 +msgid "Home Menu" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/chatter/chatter.xml:0 +msgid "Log note" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/file_viewer/file_viewer.xml:0 +msgid "Maximize" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_theme__milk +msgid "Milk" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/file_viewer/file_viewer.xml:0 +msgid "Minimize" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 +msgid "New" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/menu_canonical_searchbar/searchbar.xml:0 +msgid "Nothing to show" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields,field_description:web_responsive.field_res_users__is_redirect_home +msgid "Redirect to Home" +msgstr "" + +#. module: web_responsive +#: model:ir.model.fields,help:web_responsive.field_res_users__is_redirect_home +msgid "Redirect to dashboard after signing in" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 +msgid "Save" +msgstr "" + +#. module: web_responsive +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Search Type" +msgstr "" + +#. module: web_responsive +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Search Type Help" +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/menu_canonical_searchbar/searchbar.xml:0 +#: code:addons/web_responsive/static/src/components/menu_odoo_searchbar/searchbar.xml:0 +msgid "Search menus..." +msgstr "" + +#. module: web_responsive +#. odoo-javascript +#: code:addons/web_responsive/static/src/components/chatter/chatter.xml:0 +msgid "Send message" +msgstr "" + +#. module: web_responsive +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "Theme" +msgstr "" + +#. module: web_responsive +#: model:ir.model,name:web_responsive.model_res_users +msgid "User" +msgstr "" + +#. module: web_responsive +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "a new search algorithm is used" +msgstr "" + +#. module: web_responsive +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "the standard odoo search tool" +msgstr "" + +#. module: web_responsive +#: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences +msgid "uses a standard algorithm" +msgstr "" From f12cf2b0e9557ece00ec8153a592073a7867f2e4 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:44:36 +0000 Subject: [PATCH 16/92] Translated using Weblate (Slovenian) Currently translated at 76.6% (23 of 30 strings) Translation: web-18.0/web-18.0-web_responsive Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_responsive/sl/ --- web_responsive/i18n/sl.po | 48 ++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/web_responsive/i18n/sl.po b/web_responsive/i18n/sl.po index 3ee135360395..9285771e3bc4 100644 --- a/web_responsive/i18n/sl.po +++ b/web_responsive/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:44+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,131 +15,132 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/menu_canonical_searchbar/searchbar.xml:0 msgid "App Icon" -msgstr "" +msgstr "Ikona aplikacije" #. module: web_responsive #: model:ir.actions.act_window,name:web_responsive.res_users_view_form_apps_menu_preferences_action msgid "Apps Menu Preferences" -msgstr "" +msgstr "Aplikacije: meni nastavitve" #. module: web_responsive #: model:ir.model.fields,field_description:web_responsive.field_res_users__apps_menu_search_type #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Apps Menu Search Type" -msgstr "" +msgstr "Aplikacije: Meni tip iskanja" #. module: web_responsive #: model:ir.model.fields,field_description:web_responsive.field_res_users__apps_menu_theme #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Apps Menu Theme" -msgstr "" +msgstr "Aplikacije: Meni tema" #. module: web_responsive #: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_search_type__canonical #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Canonical" -msgstr "" +msgstr "Canonical" #. module: web_responsive #: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_search_type__command_palette #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Command Palette" -msgstr "" +msgstr "Paleta ukazov" #. module: web_responsive #: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_theme__community msgid "Community" -msgstr "" +msgstr "Skupnost" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 msgid "Discard" -msgstr "" +msgstr "Zavrzi" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/command_palette/main.xml:0 msgid "Exit" -msgstr "" +msgstr "Izhod" #. module: web_responsive #: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_search_type__fuse #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Fuse" -msgstr "" +msgstr "Fuse" #. module: web_responsive #: model:ir.model,name:web_responsive.model_ir_http msgid "HTTP Routing" -msgstr "" +msgstr "HTTP usmerjanje" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/apps_menu/apps_menu.xml:0 msgid "Home Menu" -msgstr "" +msgstr "Meni domov" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/chatter/chatter.xml:0 msgid "Log note" -msgstr "" +msgstr "Opomba v logu" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/file_viewer/file_viewer.xml:0 msgid "Maximize" -msgstr "" +msgstr "Maksimiraj" #. module: web_responsive #: model:ir.model.fields.selection,name:web_responsive.selection__res_users__apps_menu_theme__milk msgid "Milk" -msgstr "" +msgstr "Milk" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/file_viewer/file_viewer.xml:0 msgid "Minimize" -msgstr "" +msgstr "Minimiziraj" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 msgid "New" -msgstr "" +msgstr "Novo" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/menu_canonical_searchbar/searchbar.xml:0 msgid "Nothing to show" -msgstr "" +msgstr "Nič za prikazati" #. module: web_responsive #: model:ir.model.fields,field_description:web_responsive.field_res_users__is_redirect_home msgid "Redirect to Home" -msgstr "" +msgstr "Preusmeri domov" #. module: web_responsive #: model:ir.model.fields,help:web_responsive.field_res_users__is_redirect_home msgid "Redirect to dashboard after signing in" -msgstr "" +msgstr "Po prijavi preusmeri na nadzorno ploščo" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 msgid "Save" -msgstr "" +msgstr "Shrani" #. module: web_responsive #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Search Type" -msgstr "" +msgstr "Tip iskanja" #. module: web_responsive #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences From cb15a4b1043e1932c42b45f3547e1a55ae12632e Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:45:41 +0000 Subject: [PATCH 17/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (30 of 30 strings) Translation: web-18.0/web-18.0-web_responsive Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_responsive/sl/ --- web_responsive/i18n/sl.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/web_responsive/i18n/sl.po b/web_responsive/i18n/sl.po index 9285771e3bc4..66c3ebcc911d 100644 --- a/web_responsive/i18n/sl.po +++ b/web_responsive/i18n/sl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-06-06 11:44+0000\n" +"PO-Revision-Date: 2026-06-06 11:46+0000\n" "Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" @@ -145,42 +145,42 @@ msgstr "Tip iskanja" #. module: web_responsive #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Search Type Help" -msgstr "" +msgstr "Pomoč pri tipu iskanja" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/menu_canonical_searchbar/searchbar.xml:0 #: code:addons/web_responsive/static/src/components/menu_odoo_searchbar/searchbar.xml:0 msgid "Search menus..." -msgstr "" +msgstr "Iskanje menijev..." #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/chatter/chatter.xml:0 msgid "Send message" -msgstr "" +msgstr "Pošlji sporočilo" #. module: web_responsive #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "Theme" -msgstr "" +msgstr "Tema" #. module: web_responsive #: model:ir.model,name:web_responsive.model_res_users msgid "User" -msgstr "" +msgstr "Uporabnik" #. module: web_responsive #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "a new search algorithm is used" -msgstr "" +msgstr "uporablja se nov iskalni algoritem" #. module: web_responsive #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "the standard odoo search tool" -msgstr "" +msgstr "standardno Odoo iskalno orodje" #. module: web_responsive #: model_terms:ir.ui.view,arch_db:web_responsive.res_users_view_form_apps_menu_preferences msgid "uses a standard algorithm" -msgstr "" +msgstr "uporablja standardni algoritem" From d294ccf11bb68ed69ff82afe7f8a07b7a98c5d49 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:46:04 +0000 Subject: [PATCH 18/92] Added translation using Weblate (Slovenian) --- web_dialog_size/i18n/sl.po | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 web_dialog_size/i18n/sl.po diff --git a/web_dialog_size/i18n/sl.po b/web_dialog_size/i18n/sl.po new file mode 100644 index 000000000000..41a8ef8e4689 --- /dev/null +++ b/web_dialog_size/i18n/sl.po @@ -0,0 +1,21 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dialog_size +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_dialog_size +#: model:ir.model,name:web_dialog_size.model_ir_config_parameter +msgid "System Parameter" +msgstr "" From 910584a20af09ac2f3a87e3c3828dcd61b9dfcab Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:46:20 +0000 Subject: [PATCH 19/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (1 of 1 strings) Translation: web-18.0/web-18.0-web_dialog_size Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_dialog_size/sl/ --- web_dialog_size/i18n/sl.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web_dialog_size/i18n/sl.po b/web_dialog_size/i18n/sl.po index 41a8ef8e4689..38317aeaec2e 100644 --- a/web_dialog_size/i18n/sl.po +++ b/web_dialog_size/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:46+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,8 +15,9 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_dialog_size #: model:ir.model,name:web_dialog_size.model_ir_config_parameter msgid "System Parameter" -msgstr "" +msgstr "Sistemski parameter" From 5ae51a3da115cc827434bf1e0da7aff28d549525 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:46:52 +0000 Subject: [PATCH 20/92] Added translation using Weblate (Slovenian) --- web_dark_mode/i18n/sl.po | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 web_dark_mode/i18n/sl.po diff --git a/web_dark_mode/i18n/sl.po b/web_dark_mode/i18n/sl.po new file mode 100644 index 000000000000..b07fce626d69 --- /dev/null +++ b/web_dark_mode/i18n/sl.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dark_mode +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_dark_mode +#. odoo-javascript +#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0 +#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode +msgid "Dark Mode" +msgstr "" + +#. module: web_dark_mode +#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent +msgid "Device Dependent Dark Mode" +msgstr "" + +#. module: web_dark_mode +#: model:ir.model,name:web_dark_mode.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_dark_mode +#: model:ir.model,name:web_dark_mode.model_res_users +msgid "User" +msgstr "" From b2ae90999c8c5950551e05fcf24eccc55a8b7e52 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:47:32 +0000 Subject: [PATCH 21/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (4 of 4 strings) Translation: web-18.0/web-18.0-web_dark_mode Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_dark_mode/sl/ --- web_dark_mode/i18n/sl.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/web_dark_mode/i18n/sl.po b/web_dark_mode/i18n/sl.po index b07fce626d69..8ef368c8255d 100644 --- a/web_dark_mode/i18n/sl.po +++ b/web_dark_mode/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:48+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,25 +15,26 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_dark_mode #. odoo-javascript #: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0 #: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode msgid "Dark Mode" -msgstr "" +msgstr "Temni način" #. module: web_dark_mode #: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent msgid "Device Dependent Dark Mode" -msgstr "" +msgstr "Temni način glede na napravo" #. module: web_dark_mode #: model:ir.model,name:web_dark_mode.model_ir_http msgid "HTTP Routing" -msgstr "" +msgstr "HTTP usmerjanje" #. module: web_dark_mode #: model:ir.model,name:web_dark_mode.model_res_users msgid "User" -msgstr "" +msgstr "Uporabnik" From 7751d9f52978337c3d10b83927f99d62f84602eb Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:48:18 +0000 Subject: [PATCH 22/92] Added translation using Weblate (Slovenian) --- web_portal_properties/i18n/sl.po | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 web_portal_properties/i18n/sl.po diff --git a/web_portal_properties/i18n/sl.po b/web_portal_properties/i18n/sl.po new file mode 100644 index 000000000000..a21867d4627a --- /dev/null +++ b/web_portal_properties/i18n/sl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_portal_properties +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_portal_properties +#. odoo-javascript +#: code:addons/web_portal_properties/static/src/components/portal_properties/portal_properties_definition.xml:0 +msgid "Display in Portal" +msgstr "" + +#. module: web_portal_properties +#. odoo-javascript +#: code:addons/web_portal_properties/static/src/components/portal_properties/portal_properties.esm.js:0 +msgid "Properties" +msgstr "" + +#. module: web_portal_properties +#. odoo-javascript +#: code:addons/web_portal_properties/static/src/components/portal_properties/portal_properties_definition.xml:0 +msgid "Whether or not this Property Field is displayed in the Portal views" +msgstr "" From b792dfafbda2d26483685c84d9b950a86858079d Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:49:14 +0000 Subject: [PATCH 23/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_portal_properties Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_portal_properties/sl/ --- web_portal_properties/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_portal_properties/i18n/sl.po b/web_portal_properties/i18n/sl.po index a21867d4627a..eedbd1d2508b 100644 --- a/web_portal_properties/i18n/sl.po +++ b/web_portal_properties/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:49+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,21 +15,22 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_portal_properties #. odoo-javascript #: code:addons/web_portal_properties/static/src/components/portal_properties/portal_properties_definition.xml:0 msgid "Display in Portal" -msgstr "" +msgstr "Prikaži v portalu" #. module: web_portal_properties #. odoo-javascript #: code:addons/web_portal_properties/static/src/components/portal_properties/portal_properties.esm.js:0 msgid "Properties" -msgstr "" +msgstr "Lastnosti" #. module: web_portal_properties #. odoo-javascript #: code:addons/web_portal_properties/static/src/components/portal_properties/portal_properties_definition.xml:0 msgid "Whether or not this Property Field is displayed in the Portal views" -msgstr "" +msgstr "Ali se to polje lastnosti prikazuje v prikazih portala" From 5e75b18b1d73c9f27d49eb70dfae45c6f1b64e66 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:49:29 +0000 Subject: [PATCH 24/92] Added translation using Weblate (Slovenian) --- .../i18n/sl.po | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web_widget_one2many_tree_line_duplicate/i18n/sl.po diff --git a/web_widget_one2many_tree_line_duplicate/i18n/sl.po b/web_widget_one2many_tree_line_duplicate/i18n/sl.po new file mode 100644 index 000000000000..67bd2b6c9277 --- /dev/null +++ b/web_widget_one2many_tree_line_duplicate/i18n/sl.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_one2many_tree_line_duplicate +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_one2many_tree_line_duplicate +#. odoo-javascript +#: code:addons/web_widget_one2many_tree_line_duplicate/static/src/list/list_renderer.xml:0 +msgid "Duplicate Line Button" +msgstr "" + +#. module: web_widget_one2many_tree_line_duplicate +#. odoo-javascript +#: code:addons/web_widget_one2many_tree_line_duplicate/static/src/list/list_renderer.xml:0 +msgid "Duplicate row" +msgstr "" From 6b36bd6725f6ca5718566e67e500346da6ddff8e Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:50:08 +0000 Subject: [PATCH 25/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (2 of 2 strings) Translation: web-18.0/web-18.0-web_widget_one2many_tree_line_duplicate Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_one2many_tree_line_duplicate/sl/ --- web_widget_one2many_tree_line_duplicate/i18n/sl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web_widget_one2many_tree_line_duplicate/i18n/sl.po b/web_widget_one2many_tree_line_duplicate/i18n/sl.po index 67bd2b6c9277..92f1a4ff1099 100644 --- a/web_widget_one2many_tree_line_duplicate/i18n/sl.po +++ b/web_widget_one2many_tree_line_duplicate/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:50+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,15 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_one2many_tree_line_duplicate #. odoo-javascript #: code:addons/web_widget_one2many_tree_line_duplicate/static/src/list/list_renderer.xml:0 msgid "Duplicate Line Button" -msgstr "" +msgstr "Gumb za podvajanje vrstice" #. module: web_widget_one2many_tree_line_duplicate #. odoo-javascript #: code:addons/web_widget_one2many_tree_line_duplicate/static/src/list/list_renderer.xml:0 msgid "Duplicate row" -msgstr "" +msgstr "Podvoji vrstico" From 08373ba5ca21e2fc8148fd4b0f35e20560c166f6 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:50:44 +0000 Subject: [PATCH 26/92] Added translation using Weblate (Slovenian) --- web_favicon/i18n/sl.po | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 web_favicon/i18n/sl.po diff --git a/web_favicon/i18n/sl.po b/web_favicon/i18n/sl.po new file mode 100644 index 000000000000..40a30102affc --- /dev/null +++ b/web_favicon/i18n/sl.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "" + +#. module: web_favicon +#: model:ir.model.fields,field_description:web_favicon.field_res_company__favicon +msgid "Company Favicon" +msgstr "" + +#. module: web_favicon +#: model:ir.model.fields,help:web_favicon.field_res_company__favicon +msgid "" +"This field holds the image used to display favicon for a given company." +msgstr "" From b3aa6452c6b6a3698a6c0fdec3901c5921e17923 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:51:50 +0000 Subject: [PATCH 27/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_favicon Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_favicon/sl/ --- web_favicon/i18n/sl.po | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/web_favicon/i18n/sl.po b/web_favicon/i18n/sl.po index 40a30102affc..64da12a77600 100644 --- a/web_favicon/i18n/sl.po +++ b/web_favicon/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:52+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,19 +15,21 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_favicon #: model:ir.model,name:web_favicon.model_res_company msgid "Companies" -msgstr "" +msgstr "Družbe" #. module: web_favicon #: model:ir.model.fields,field_description:web_favicon.field_res_company__favicon msgid "Company Favicon" -msgstr "" +msgstr "Favikon družbe" #. module: web_favicon #: model:ir.model.fields,help:web_favicon.field_res_company__favicon msgid "" "This field holds the image used to display favicon for a given company." msgstr "" +"V tem polju je slika, ki se uporablja za prikaz favikona za določeno družbo." From ece9d6e9ace936068785d85aa9cbfa193368ce34 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:52:16 +0000 Subject: [PATCH 28/92] Added translation using Weblate (Slovenian) --- web_save_discard_button/i18n/sl.po | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 web_save_discard_button/i18n/sl.po diff --git a/web_save_discard_button/i18n/sl.po b/web_save_discard_button/i18n/sl.po new file mode 100644 index 000000000000..43a7bb68c9ef --- /dev/null +++ b/web_save_discard_button/i18n/sl.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_save_discard_button +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_save_discard_button +#. odoo-javascript +#: code:addons/web_save_discard_button/static/src/xml/template.xml:0 +msgid "Discard" +msgstr "" + +#. module: web_save_discard_button +#: model:ir.model,name:web_save_discard_button.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_save_discard_button +#. odoo-javascript +#: code:addons/web_save_discard_button/static/src/xml/template.xml:0 +msgid "Save" +msgstr "" From 8059dc295c3a20c1f219e3d75bdcf7eb657d7eda Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:52:38 +0000 Subject: [PATCH 29/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_save_discard_button Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_save_discard_button/sl/ --- web_save_discard_button/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_save_discard_button/i18n/sl.po b/web_save_discard_button/i18n/sl.po index 43a7bb68c9ef..93c93bbf8212 100644 --- a/web_save_discard_button/i18n/sl.po +++ b/web_save_discard_button/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:53+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,20 +15,21 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_save_discard_button #. odoo-javascript #: code:addons/web_save_discard_button/static/src/xml/template.xml:0 msgid "Discard" -msgstr "" +msgstr "Zavrzi" #. module: web_save_discard_button #: model:ir.model,name:web_save_discard_button.model_ir_http msgid "HTTP Routing" -msgstr "" +msgstr "HTTP usmerjanje" #. module: web_save_discard_button #. odoo-javascript #: code:addons/web_save_discard_button/static/src/xml/template.xml:0 msgid "Save" -msgstr "" +msgstr "Shrani" From 6140e50d0f7ad3b9612dc71694ad2006d51b50ed Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:53:02 +0000 Subject: [PATCH 30/92] Added translation using Weblate (Slovenian) --- .../i18n/sl.po | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 web_widget_product_label_section_and_note_name_visibility/i18n/sl.po diff --git a/web_widget_product_label_section_and_note_name_visibility/i18n/sl.po b/web_widget_product_label_section_and_note_name_visibility/i18n/sl.po new file mode 100644 index 000000000000..abe375de31e9 --- /dev/null +++ b/web_widget_product_label_section_and_note_name_visibility/i18n/sl.po @@ -0,0 +1,22 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_product_label_section_and_note_name_visibility +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_product_label_section_and_note_name_visibility +#. odoo-javascript +#: code:addons/web_widget_product_label_section_and_note_name_visibility/static/src/components/product_label_section_and_note_field/product_label_section_and_note_field.xml:0 +msgid "Click to remove/add the product name from the description." +msgstr "" From 7d198db09bd68ef361d54ca7cd399621fe68c417 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:53:30 +0000 Subject: [PATCH 31/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (1 of 1 strings) Translation: web-18.0/web-18.0-web_widget_product_label_section_and_note_name_visibility Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_product_label_section_and_note_name_visibility/sl/ --- .../i18n/sl.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web_widget_product_label_section_and_note_name_visibility/i18n/sl.po b/web_widget_product_label_section_and_note_name_visibility/i18n/sl.po index abe375de31e9..b91e871fedf7 100644 --- a/web_widget_product_label_section_and_note_name_visibility/i18n/sl.po +++ b/web_widget_product_label_section_and_note_name_visibility/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:54+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,9 +15,10 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_product_label_section_and_note_name_visibility #. odoo-javascript #: code:addons/web_widget_product_label_section_and_note_name_visibility/static/src/components/product_label_section_and_note_field/product_label_section_and_note_field.xml:0 msgid "Click to remove/add the product name from the description." -msgstr "" +msgstr "Kliknite, da ime proizvoda odstranite/dodate v opis." From b5b94531f7d1045a6eaa9adc1f310e6c56ce8147 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:54:00 +0000 Subject: [PATCH 32/92] Added translation using Weblate (Slovenian) --- web_chatter_position/i18n/sl.po | 47 +++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 web_chatter_position/i18n/sl.po diff --git a/web_chatter_position/i18n/sl.po b/web_chatter_position/i18n/sl.po new file mode 100644 index 000000000000..0de02f137f5b --- /dev/null +++ b/web_chatter_position/i18n/sl.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_chatter_position +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_chatter_position +#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto +msgid "Automatic" +msgstr "" + +#. module: web_chatter_position +#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom +msgid "Bottom" +msgstr "" + +#. module: web_chatter_position +#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position +msgid "Chatter Position" +msgstr "" + +#. module: web_chatter_position +#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided +msgid "Sided" +msgstr "" + +#. module: web_chatter_position +#. odoo-javascript +#: code:addons/web_chatter_position/static/src/views/form/form_controller.xml:0 +msgid "Toggle chatter position" +msgstr "" + +#. module: web_chatter_position +#: model:ir.model,name:web_chatter_position.model_res_users +msgid "User" +msgstr "" From 1d224eb06738b40b9926fb063aa5e98149e90769 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:55:13 +0000 Subject: [PATCH 33/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (6 of 6 strings) Translation: web-18.0/web-18.0-web_chatter_position Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_chatter_position/sl/ --- web_chatter_position/i18n/sl.po | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/web_chatter_position/i18n/sl.po b/web_chatter_position/i18n/sl.po index 0de02f137f5b..1ec6e10e07dd 100644 --- a/web_chatter_position/i18n/sl.po +++ b/web_chatter_position/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:55+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,34 +15,35 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_chatter_position #: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto msgid "Automatic" -msgstr "" +msgstr "Samodejno" #. module: web_chatter_position #: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom msgid "Bottom" -msgstr "" +msgstr "Na dnu" #. module: web_chatter_position #: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position msgid "Chatter Position" -msgstr "" +msgstr "Položaj klepeta" #. module: web_chatter_position #: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided msgid "Sided" -msgstr "" +msgstr "Ob strani" #. module: web_chatter_position #. odoo-javascript #: code:addons/web_chatter_position/static/src/views/form/form_controller.xml:0 msgid "Toggle chatter position" -msgstr "" +msgstr "Preklopi položaj klepeta" #. module: web_chatter_position #: model:ir.model,name:web_chatter_position.model_res_users msgid "User" -msgstr "" +msgstr "Uporabnik" From 50b4c4e556d482dbb505f3b3534610f737f7b774 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:55:47 +0000 Subject: [PATCH 34/92] Added translation using Weblate (Slovenian) --- web_company_color/i18n/sl.po | 109 +++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 web_company_color/i18n/sl.po diff --git a/web_company_color/i18n/sl.po b/web_company_color/i18n/sl.po new file mode 100644 index 000000000000..af20ee1e9dae --- /dev/null +++ b/web_company_color/i18n/sl.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_company_color +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "" +"\n" +" In order for the changes to take effect, please refresh\n" +" the page." +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg +msgid "Button Background Color" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg_hover +msgid "Button Background Color Hover" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_text +msgid "Button Text Color" +msgstr "" + +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Colors" +msgstr "" + +#. module: web_company_color +#: model:ir.model,name:web_company_color.model_res_company +msgid "Companies" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__company_colors +msgid "Company Colors" +msgstr "" + +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Company Styles" +msgstr "" + +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Compute colors from logo" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_link_text +msgid "Link Text Color" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_link_text_hover +msgid "Link Text Color Hover" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_bg +msgid "Navbar Background Color" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_bg_hover +msgid "Navbar Background Color Hover" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_border_bottom +msgid "Navbar Bottom Border Color" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_text +msgid "Navbar Text Color" +msgstr "" + +#. module: web_company_color +#: model:ir.model,name:web_company_color.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp +msgid "SCSS Modif. Timestamp" +msgstr "" + +#. module: web_company_color +#: model:ir.model.fields,field_description:web_company_color.field_res_company__color_submenu_text +msgid "Submenu Text Color" +msgstr "" From 5cf5350ab969b86a01e94dcb6012210c3dd52fde Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:59:25 +0000 Subject: [PATCH 35/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (18 of 18 strings) Translation: web-18.0/web-18.0-web_company_color Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_company_color/sl/ --- web_company_color/i18n/sl.po | 41 ++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/web_company_color/i18n/sl.po b/web_company_color/i18n/sl.po index af20ee1e9dae..0373672abdcf 100644 --- a/web_company_color/i18n/sl.po +++ b/web_company_color/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 11:59+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,6 +15,7 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_company_color #: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form @@ -22,88 +24,91 @@ msgid "" " In order for the changes to take effect, please refresh\n" " the page." msgstr "" +"\n" +" Da bi spremembe stopile v veljavo, osvežite\n" +" stran." #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" -msgstr "" +msgstr "Barva ozadja gumba" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg_hover msgid "Button Background Color Hover" -msgstr "" +msgstr "Barva ozadja gumba ob prehodu z miško" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_text msgid "Button Text Color" -msgstr "" +msgstr "Barva besedila na gumbu" #. module: web_company_color #: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form msgid "Colors" -msgstr "" +msgstr "Barve" #. module: web_company_color #: model:ir.model,name:web_company_color.model_res_company msgid "Companies" -msgstr "" +msgstr "Družbe" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__company_colors msgid "Company Colors" -msgstr "" +msgstr "Barve družbe" #. module: web_company_color #: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form msgid "Company Styles" -msgstr "" +msgstr "Slogi družbe" #. module: web_company_color #: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form msgid "Compute colors from logo" -msgstr "" +msgstr "Obdelaj barve iz logotipa" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_link_text msgid "Link Text Color" -msgstr "" +msgstr "Barva besedila povezave" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_link_text_hover msgid "Link Text Color Hover" -msgstr "" +msgstr "Barva besedila povezave ob preletu miške" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_bg msgid "Navbar Background Color" -msgstr "" +msgstr "Barva ozadja navigacijske vrstice" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_bg_hover msgid "Navbar Background Color Hover" -msgstr "" +msgstr "Barva ozadja navigacijske vrstice ob preletu z miško" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_border_bottom msgid "Navbar Bottom Border Color" -msgstr "" +msgstr "Barva spodnjega roba navigacijske vrstice" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_navbar_text msgid "Navbar Text Color" -msgstr "" +msgstr "Barva besedila v navigacijski vrstici" #. module: web_company_color #: model:ir.model,name:web_company_color.model_ir_qweb msgid "Qweb" -msgstr "" +msgstr "QWeb" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" -msgstr "" +msgstr "SCSS: Prilagojena časovna oznaka" #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_submenu_text msgid "Submenu Text Color" -msgstr "" +msgstr "Barva besedila v podmeniju" From a2592023b9eea3c4b2a22ba9e6e4a4bd8564ae23 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 11:59:54 +0000 Subject: [PATCH 36/92] Added translation using Weblate (Slovenian) --- web_notify_upgrade/i18n/sl.po | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 web_notify_upgrade/i18n/sl.po diff --git a/web_notify_upgrade/i18n/sl.po b/web_notify_upgrade/i18n/sl.po new file mode 100644 index 000000000000..3197a089305a --- /dev/null +++ b/web_notify_upgrade/i18n/sl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_notify_upgrade +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_notify_upgrade +#: model:ir.model,name:web_notify_upgrade.model_ir_model_data +msgid "Model Data" +msgstr "" + +#. module: web_notify_upgrade +#. odoo-python +#: code:addons/web_notify_upgrade/models/ir_model.py:0 +msgid "Reload" +msgstr "" + +#. module: web_notify_upgrade +#. odoo-python +#: code:addons/web_notify_upgrade/models/ir_model.py:0 +msgid "Upgrade Notification" +msgstr "" + +#. module: web_notify_upgrade +#. odoo-python +#: code:addons/web_notify_upgrade/models/ir_model.py:0 +msgid "Your odoo instance has been upgraded, please reload the web page." +msgstr "" From 64d483f72075b172de91575949cde053698a23b9 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:00:45 +0000 Subject: [PATCH 37/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (4 of 4 strings) Translation: web-18.0/web-18.0-web_notify_upgrade Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_notify_upgrade/sl/ --- web_notify_upgrade/i18n/sl.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/web_notify_upgrade/i18n/sl.po b/web_notify_upgrade/i18n/sl.po index 3197a089305a..f2db0f7dc01e 100644 --- a/web_notify_upgrade/i18n/sl.po +++ b/web_notify_upgrade/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:01+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,26 +15,28 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_notify_upgrade #: model:ir.model,name:web_notify_upgrade.model_ir_model_data msgid "Model Data" -msgstr "" +msgstr "Podatki modela" #. module: web_notify_upgrade #. odoo-python #: code:addons/web_notify_upgrade/models/ir_model.py:0 msgid "Reload" -msgstr "" +msgstr "Ponovno naloži" #. module: web_notify_upgrade #. odoo-python #: code:addons/web_notify_upgrade/models/ir_model.py:0 msgid "Upgrade Notification" -msgstr "" +msgstr "Obvestilo o nadgradnji" #. module: web_notify_upgrade #. odoo-python #: code:addons/web_notify_upgrade/models/ir_model.py:0 msgid "Your odoo instance has been upgraded, please reload the web page." msgstr "" +"Vaša instanca Odoo je bila posodobljena, prosimo, osvežite spletno stran." From 1069e5cd5dc781039dff56d38d2ec1b180e0ac2b Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:01:12 +0000 Subject: [PATCH 38/92] Added translation using Weblate (Slovenian) --- web_systray_button_init_action/i18n/sl.po | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 web_systray_button_init_action/i18n/sl.po diff --git a/web_systray_button_init_action/i18n/sl.po b/web_systray_button_init_action/i18n/sl.po new file mode 100644 index 000000000000..8d9121617060 --- /dev/null +++ b/web_systray_button_init_action/i18n/sl.po @@ -0,0 +1,22 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_systray_button_init_action +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_systray_button_init_action +#. odoo-javascript +#: code:addons/web_systray_button_init_action/static/src/button/button.xml:0 +msgid "Init Action" +msgstr "" From a5e814fbad7dff1761044d0ef9d77f7326a4f9d1 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:01:55 +0000 Subject: [PATCH 39/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (1 of 1 strings) Translation: web-18.0/web-18.0-web_systray_button_init_action Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_systray_button_init_action/sl/ --- web_systray_button_init_action/i18n/sl.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web_systray_button_init_action/i18n/sl.po b/web_systray_button_init_action/i18n/sl.po index 8d9121617060..b842f9243f0e 100644 --- a/web_systray_button_init_action/i18n/sl.po +++ b/web_systray_button_init_action/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:02+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,9 +15,10 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_systray_button_init_action #. odoo-javascript #: code:addons/web_systray_button_init_action/static/src/button/button.xml:0 msgid "Init Action" -msgstr "" +msgstr "Dejanje inicializacije" From 44461cfdc0229b1952050eb6724c3c2ac78351bc Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:02:16 +0000 Subject: [PATCH 40/92] Added translation using Weblate (Slovenian) --- web_send_message_popup/i18n/sl.po | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web_send_message_popup/i18n/sl.po diff --git a/web_send_message_popup/i18n/sl.po b/web_send_message_popup/i18n/sl.po new file mode 100644 index 000000000000..d7d0ef36f45e --- /dev/null +++ b/web_send_message_popup/i18n/sl.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_send_message_popup +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_send_message_popup +#. odoo-javascript +#: code:addons/web_send_message_popup/static/src/chatter/web/chatter_patch.esm.js:0 +msgid "Compose Email" +msgstr "" + +#. module: web_send_message_popup +#. odoo-javascript +#: code:addons/web_send_message_popup/static/src/chatter/web/chatter_patch.esm.js:0 +msgid "Message posted on \"%s\"" +msgstr "" From e1dfefead55e70a914ec602bfd255bddde42b96e Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:03:09 +0000 Subject: [PATCH 41/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (2 of 2 strings) Translation: web-18.0/web-18.0-web_send_message_popup Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_send_message_popup/sl/ --- web_send_message_popup/i18n/sl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web_send_message_popup/i18n/sl.po b/web_send_message_popup/i18n/sl.po index d7d0ef36f45e..f885cc4f2fd4 100644 --- a/web_send_message_popup/i18n/sl.po +++ b/web_send_message_popup/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:03+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,15 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_send_message_popup #. odoo-javascript #: code:addons/web_send_message_popup/static/src/chatter/web/chatter_patch.esm.js:0 msgid "Compose Email" -msgstr "" +msgstr "Sestavi e-pošto" #. module: web_send_message_popup #. odoo-javascript #: code:addons/web_send_message_popup/static/src/chatter/web/chatter_patch.esm.js:0 msgid "Message posted on \"%s\"" -msgstr "" +msgstr "Sporočilo objavljeno dne \"%s\"" From 792aa97b54c6541c918857221e6bced60c5099a8 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:03:42 +0000 Subject: [PATCH 42/92] Added translation using Weblate (Slovenian) --- web_notify_channel_message/i18n/sl.po | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 web_notify_channel_message/i18n/sl.po diff --git a/web_notify_channel_message/i18n/sl.po b/web_notify_channel_message/i18n/sl.po new file mode 100644 index 000000000000..1d3c1d3e1729 --- /dev/null +++ b/web_notify_channel_message/i18n/sl.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_notify_channel_message +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_notify_channel_message +#: model:ir.model,name:web_notify_channel_message.model_discuss_channel +msgid "Discussion Channel" +msgstr "" + +#. module: web_notify_channel_message +#: model:ir.model,name:web_notify_channel_message.model_res_users +msgid "User" +msgstr "" + +#. module: web_notify_channel_message +#. odoo-python +#: code:addons/web_notify_channel_message/models/discuss_channel.py:0 +msgid "You have a new message in channel %s" +msgstr "" From 25df386839cda9ed1766cce3c1d94f0f1bbc18d8 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:04:30 +0000 Subject: [PATCH 43/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_notify_channel_message Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_notify_channel_message/sl/ --- web_notify_channel_message/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_notify_channel_message/i18n/sl.po b/web_notify_channel_message/i18n/sl.po index 1d3c1d3e1729..c6f9d158a2e6 100644 --- a/web_notify_channel_message/i18n/sl.po +++ b/web_notify_channel_message/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:04+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,19 +15,20 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_notify_channel_message #: model:ir.model,name:web_notify_channel_message.model_discuss_channel msgid "Discussion Channel" -msgstr "" +msgstr "Kanal za razpravo" #. module: web_notify_channel_message #: model:ir.model,name:web_notify_channel_message.model_res_users msgid "User" -msgstr "" +msgstr "Uporabnik" #. module: web_notify_channel_message #. odoo-python #: code:addons/web_notify_channel_message/models/discuss_channel.py:0 msgid "You have a new message in channel %s" -msgstr "" +msgstr "V kanalu %s imate novo sporočilo" From 0c0e1aa2d44675cf9498f4518ff34c638e2e11f8 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:04:58 +0000 Subject: [PATCH 44/92] Added translation using Weblate (Slovenian) --- web_session_auto_close/i18n/sl.po | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 web_session_auto_close/i18n/sl.po diff --git a/web_session_auto_close/i18n/sl.po b/web_session_auto_close/i18n/sl.po new file mode 100644 index 000000000000..43c3dc9ca14e --- /dev/null +++ b/web_session_auto_close/i18n/sl.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_session_auto_close +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_session_auto_close +#: model:ir.model,name:web_session_auto_close.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_session_auto_close +#: model:ir.model.fields,field_description:web_session_auto_close.field_res_config_settings__session_auto_close_timeout +msgid "Session Auto-Close Timeout (seconds)" +msgstr "" From eac86e6c3dce09d6dd220cccb8d5996ca72bfc9a Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:05:20 +0000 Subject: [PATCH 45/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (2 of 2 strings) Translation: web-18.0/web-18.0-web_session_auto_close Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_session_auto_close/sl/ --- web_session_auto_close/i18n/sl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web_session_auto_close/i18n/sl.po b/web_session_auto_close/i18n/sl.po index 43c3dc9ca14e..d8edc455a821 100644 --- a/web_session_auto_close/i18n/sl.po +++ b/web_session_auto_close/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:05+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,13 +15,14 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_session_auto_close #: model:ir.model,name:web_session_auto_close.model_res_config_settings msgid "Config Settings" -msgstr "" +msgstr "Nastavitve" #. module: web_session_auto_close #: model:ir.model.fields,field_description:web_session_auto_close.field_res_config_settings__session_auto_close_timeout msgid "Session Auto-Close Timeout (seconds)" -msgstr "" +msgstr "Časovni limit za samodejno zaprtje seje (v sekundah)" From 8983f5c1da1a7026f425b5531111058f81fa811c Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:05:47 +0000 Subject: [PATCH 46/92] Added translation using Weblate (Slovenian) --- web_widget_mpld3_chart/i18n/sl.po | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 web_widget_mpld3_chart/i18n/sl.po diff --git a/web_widget_mpld3_chart/i18n/sl.po b/web_widget_mpld3_chart/i18n/sl.po new file mode 100644 index 000000000000..de6f374d36a2 --- /dev/null +++ b/web_widget_mpld3_chart/i18n/sl.po @@ -0,0 +1,21 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_mpld3_chart +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_mpld3_chart +#: model:ir.model,name:web_widget_mpld3_chart.model_abstract_mpld3_parser +msgid "Utility to parse ploot figure to json data for widget Mpld3" +msgstr "" From 4da153952d34743d94e55107618dc5e8b550a88e Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:06:11 +0000 Subject: [PATCH 47/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (1 of 1 strings) Translation: web-18.0/web-18.0-web_widget_mpld3_chart Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_mpld3_chart/sl/ --- web_widget_mpld3_chart/i18n/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web_widget_mpld3_chart/i18n/sl.po b/web_widget_mpld3_chart/i18n/sl.po index de6f374d36a2..a1b435066004 100644 --- a/web_widget_mpld3_chart/i18n/sl.po +++ b/web_widget_mpld3_chart/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:06+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,8 +15,10 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_mpld3_chart #: model:ir.model,name:web_widget_mpld3_chart.model_abstract_mpld3_parser msgid "Utility to parse ploot figure to json data for widget Mpld3" msgstr "" +"Program za pretvorbo slike v formatu ploot v podatke JSON za widget Mpld3" From e3c6c8879245227eeefc8e339314bdf8869fddfd Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:06:33 +0000 Subject: [PATCH 48/92] Added translation using Weblate (Slovenian) --- web_copy_confirm/i18n/sl.po | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 web_copy_confirm/i18n/sl.po diff --git a/web_copy_confirm/i18n/sl.po b/web_copy_confirm/i18n/sl.po new file mode 100644 index 000000000000..3e40a3ca3fb0 --- /dev/null +++ b/web_copy_confirm/i18n/sl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_copy_confirm +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_copy_confirm +#. odoo-javascript +#: code:addons/web_copy_confirm/static/src/js/web_copy_confirm.esm.js:0 +msgid "Are you sure that you would like to copy this record?" +msgstr "" + +#. module: web_copy_confirm +#. odoo-javascript +#: code:addons/web_copy_confirm/static/src/js/web_copy_confirm.esm.js:0 +msgid "Are you sure that you would like to duplicate the selected records?" +msgstr "" + +#. module: web_copy_confirm +#. odoo-javascript +#: code:addons/web_copy_confirm/static/src/js/web_copy_confirm.esm.js:0 +msgid "Duplicate" +msgstr "" From 2ad40ee8b207cf0dccb1eea64a03e53c18f7fe77 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:07:11 +0000 Subject: [PATCH 49/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_copy_confirm Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_copy_confirm/sl/ --- web_copy_confirm/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_copy_confirm/i18n/sl.po b/web_copy_confirm/i18n/sl.po index 3e40a3ca3fb0..525dc5f01215 100644 --- a/web_copy_confirm/i18n/sl.po +++ b/web_copy_confirm/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:07+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,21 +15,22 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_copy_confirm #. odoo-javascript #: code:addons/web_copy_confirm/static/src/js/web_copy_confirm.esm.js:0 msgid "Are you sure that you would like to copy this record?" -msgstr "" +msgstr "Ali ste prepričani, da želite ta zapis kopirati?" #. module: web_copy_confirm #. odoo-javascript #: code:addons/web_copy_confirm/static/src/js/web_copy_confirm.esm.js:0 msgid "Are you sure that you would like to duplicate the selected records?" -msgstr "" +msgstr "Ali ste prepričani, da želite podvojiti izbrane zapise?" #. module: web_copy_confirm #. odoo-javascript #: code:addons/web_copy_confirm/static/src/js/web_copy_confirm.esm.js:0 msgid "Duplicate" -msgstr "" +msgstr "Podvoji" From bdf4d84c8705084b850ce390eec4e9106f6e398e Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:07:24 +0000 Subject: [PATCH 50/92] Added translation using Weblate (Slovenian) --- web_widget_domain_editor_dialog/i18n/sl.po | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web_widget_domain_editor_dialog/i18n/sl.po diff --git a/web_widget_domain_editor_dialog/i18n/sl.po b/web_widget_domain_editor_dialog/i18n/sl.po new file mode 100644 index 000000000000..f02ab3b11af3 --- /dev/null +++ b/web_widget_domain_editor_dialog/i18n/sl.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_domain_editor_dialog +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_domain_editor_dialog +#. odoo-javascript +#: code:addons/web_widget_domain_editor_dialog/static/src/js/domain_field.esm.js:0 +msgid "Select records..." +msgstr "" + +#. module: web_widget_domain_editor_dialog +#. odoo-javascript +#: code:addons/web_widget_domain_editor_dialog/static/src/js/domain_field.esm.js:0 +msgid "Selected domain" +msgstr "" From da113558f0ff6d4e5cd4d6432b7fbf617401f590 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:07:55 +0000 Subject: [PATCH 51/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (2 of 2 strings) Translation: web-18.0/web-18.0-web_widget_domain_editor_dialog Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_domain_editor_dialog/sl/ --- web_widget_domain_editor_dialog/i18n/sl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web_widget_domain_editor_dialog/i18n/sl.po b/web_widget_domain_editor_dialog/i18n/sl.po index f02ab3b11af3..8683de1dee01 100644 --- a/web_widget_domain_editor_dialog/i18n/sl.po +++ b/web_widget_domain_editor_dialog/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:08+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,15 +15,16 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_domain_editor_dialog #. odoo-javascript #: code:addons/web_widget_domain_editor_dialog/static/src/js/domain_field.esm.js:0 msgid "Select records..." -msgstr "" +msgstr "Izberi zapise..." #. module: web_widget_domain_editor_dialog #. odoo-javascript #: code:addons/web_widget_domain_editor_dialog/static/src/js/domain_field.esm.js:0 msgid "Selected domain" -msgstr "" +msgstr "Izbrana domena" From caeaa91a16f2ff3d4624a90d9567b628cea8c607 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:08:21 +0000 Subject: [PATCH 52/92] Added translation using Weblate (Slovenian) --- web_help/i18n/sl.po | 76 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 web_help/i18n/sl.po diff --git a/web_help/i18n/sl.po b/web_help/i18n/sl.po new file mode 100644 index 000000000000..35c6726b129e --- /dev/null +++ b/web_help/i18n/sl.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_help +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/user_trip.esm.js:0 +msgid "Cancel" +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/change_password_trip.esm.js:0 +msgid "Change the password here, make sure it's secure." +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/change_password_trip.esm.js:0 +msgid "Click here to confirm it." +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/trip.esm.js:0 +msgid "Close" +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/trip.esm.js:0 +msgid "Finish" +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/trip.esm.js:0 +msgid "Got it" +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/user_trip.esm.js:0 +msgid "Next" +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/user_trip.esm.js:0 +msgid "To create a new user click here." +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/user_trip.esm.js:0 +msgid "Use the searchbar to find specific users." +msgstr "" + +#. module: web_help +#. odoo-javascript +#: code:addons/web_help/static/src/user_trip.esm.js:0 +msgid "You can switch to different views here." +msgstr "" From e827f15ea9012a61e5340173be44ecf86958fd9b Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:11:17 +0000 Subject: [PATCH 53/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (10 of 10 strings) Translation: web-18.0/web-18.0-web_help Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_help/sl/ --- web_help/i18n/sl.po | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/web_help/i18n/sl.po b/web_help/i18n/sl.po index 35c6726b129e..baf2511bdb5e 100644 --- a/web_help/i18n/sl.po +++ b/web_help/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 12:11+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,63 +15,64 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 msgid "Cancel" -msgstr "" +msgstr "Prekliči" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/change_password_trip.esm.js:0 msgid "Change the password here, make sure it's secure." -msgstr "" +msgstr "Tukaj spremenite geslo ter poskrbite, da je varno." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/change_password_trip.esm.js:0 msgid "Click here to confirm it." -msgstr "" +msgstr "Kliknite tukaj, da potrdite." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/trip.esm.js:0 msgid "Close" -msgstr "" +msgstr "Zaključi" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/trip.esm.js:0 msgid "Finish" -msgstr "" +msgstr "Dokončaj" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/trip.esm.js:0 msgid "Got it" -msgstr "" +msgstr "Razumem" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 msgid "Next" -msgstr "" +msgstr "Naprej" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 msgid "To create a new user click here." -msgstr "" +msgstr "Če želite ustvariti novega uporabnika, kliknite tukaj." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 msgid "Use the searchbar to find specific users." -msgstr "" +msgstr "Uporabite iskalno vrstico za iskanje posameznih uporabnikov." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 msgid "You can switch to different views here." -msgstr "" +msgstr "Tu lahko preklopite med različnimi prikazi." From f3b065a5235242a02c11d5deeac4e32a0e473217 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:11:43 +0000 Subject: [PATCH 54/92] Added translation using Weblate (Slovenian) --- web_widget_dropdown_dynamic/i18n/sl.po | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 web_widget_dropdown_dynamic/i18n/sl.po diff --git a/web_widget_dropdown_dynamic/i18n/sl.po b/web_widget_dropdown_dynamic/i18n/sl.po new file mode 100644 index 000000000000..756f6ce96d28 --- /dev/null +++ b/web_widget_dropdown_dynamic/i18n/sl.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_dropdown_dynamic +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_dropdown_dynamic +#: model:ir.model.fields,field_description:web_widget_dropdown_dynamic.field_dynamic_dropdown_int +msgid "Dropdown Integer" +msgstr "" + +#. module: web_widget_dropdown_dynamic +#. odoo-javascript +#: code:addons/web_widget_dropdown_dynamic/static/src/js/field_dynamic_dropdown.esm.js:0 +msgid "Dynamic Dropdown" +msgstr "" + +#. module: web_widget_dropdown_dynamic +#: model:ir.model,name:web_widget_dropdown_dynamic.model_ir_filters +msgid "Filters" +msgstr "" From 38c92ca93c5d98b268102bc60d9fb037575d81d1 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sat, 6 Jun 2026 12:13:13 +0000 Subject: [PATCH 55/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_widget_dropdown_dynamic Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_dropdown_dynamic/sl/ --- web_widget_dropdown_dynamic/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_widget_dropdown_dynamic/i18n/sl.po b/web_widget_dropdown_dynamic/i18n/sl.po index 756f6ce96d28..52f9c16faf27 100644 --- a/web_widget_dropdown_dynamic/i18n/sl.po +++ b/web_widget_dropdown_dynamic/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-06 14:47+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,19 +15,20 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_dropdown_dynamic #: model:ir.model.fields,field_description:web_widget_dropdown_dynamic.field_dynamic_dropdown_int msgid "Dropdown Integer" -msgstr "" +msgstr "Celo število spustni seznam" #. module: web_widget_dropdown_dynamic #. odoo-javascript #: code:addons/web_widget_dropdown_dynamic/static/src/js/field_dynamic_dropdown.esm.js:0 msgid "Dynamic Dropdown" -msgstr "" +msgstr "Dinamični spustni meni" #. module: web_widget_dropdown_dynamic #: model:ir.model,name:web_widget_dropdown_dynamic.model_ir_filters msgid "Filters" -msgstr "" +msgstr "Filtri" From a443c9e46b45924d2987bc3799a7fd954c681824 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:49:38 +0000 Subject: [PATCH 56/92] Added translation using Weblate (Slovenian) --- web_theme_classic/i18n/sl.po | 55 ++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 web_theme_classic/i18n/sl.po diff --git a/web_theme_classic/i18n/sl.po b/web_theme_classic/i18n/sl.po new file mode 100644 index 000000000000..7397a7ac76de --- /dev/null +++ b/web_theme_classic/i18n/sl.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_theme_classic +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_theme_classic +#. odoo-javascript +#: code:addons/web_theme_classic/static/src/js/switch_theme.esm.js:0 +msgid "Classic Theme" +msgstr "" + +#. module: web_theme_classic +#: model:ir.model.fields,field_description:web_theme_classic.field_res_users__persistent_classic_theme +msgid "Classic Theme Persistent" +msgstr "" + +#. module: web_theme_classic +#: model:ir.model,name:web_theme_classic.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_theme_classic +#: model:ir.model.fields,field_description:web_theme_classic.field_res_users_settings__persistent_classic_theme +msgid "Persistent Classic Theme" +msgstr "" + +#. module: web_theme_classic +#: model:ir.model.fields,help:web_theme_classic.field_res_users__persistent_classic_theme +msgid "" +"This enables Classic Theme on this user's account across all devices. \n" +" Disabling it will will alow you to to use the toggle in the user burger menu in the navbar to enable Classic Mode on a specific session/device \n" +"The toggle is not visible while Persistent Classic Theme is enabled" +msgstr "" + +#. module: web_theme_classic +#: model:ir.model,name:web_theme_classic.model_res_users +msgid "User" +msgstr "" + +#. module: web_theme_classic +#: model:ir.model,name:web_theme_classic.model_res_users_settings +msgid "User Settings" +msgstr "" From c415c0bce0a38f2bd28404cb9126388600ec00a6 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:52:08 +0000 Subject: [PATCH 57/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (7 of 7 strings) Translation: web-18.0/web-18.0-web_theme_classic Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_theme_classic/sl/ --- web_theme_classic/i18n/sl.po | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/web_theme_classic/i18n/sl.po b/web_theme_classic/i18n/sl.po index 7397a7ac76de..7ca025a46f7f 100644 --- a/web_theme_classic/i18n/sl.po +++ b/web_theme_classic/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-07 06:52+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,27 +15,28 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_theme_classic #. odoo-javascript #: code:addons/web_theme_classic/static/src/js/switch_theme.esm.js:0 msgid "Classic Theme" -msgstr "" +msgstr "Klasična tema" #. module: web_theme_classic #: model:ir.model.fields,field_description:web_theme_classic.field_res_users__persistent_classic_theme msgid "Classic Theme Persistent" -msgstr "" +msgstr "Klasična tema – trajna" #. module: web_theme_classic #: model:ir.model,name:web_theme_classic.model_ir_http msgid "HTTP Routing" -msgstr "" +msgstr "HTTP usmerjanje" #. module: web_theme_classic #: model:ir.model.fields,field_description:web_theme_classic.field_res_users_settings__persistent_classic_theme msgid "Persistent Classic Theme" -msgstr "" +msgstr "Trajna klasična tema" #. module: web_theme_classic #: model:ir.model.fields,help:web_theme_classic.field_res_users__persistent_classic_theme @@ -43,13 +45,17 @@ msgid "" " Disabling it will will alow you to to use the toggle in the user burger menu in the navbar to enable Classic Mode on a specific session/device \n" "The toggle is not visible while Persistent Classic Theme is enabled" msgstr "" +"S tem se omogoči klasična tema na uporabnikovem računu na vseh napravah. \n" +"Če jo onemogočite, boste lahko s preklopom v meniju »burger« v navigacijski " +"vrstici vklopili klasični način za posamezno sejo/napravo. \n" +"Preklop ni viden, dokler je omogočena trajna klasična tema" #. module: web_theme_classic #: model:ir.model,name:web_theme_classic.model_res_users msgid "User" -msgstr "" +msgstr "Uporabnik" #. module: web_theme_classic #: model:ir.model,name:web_theme_classic.model_res_users_settings msgid "User Settings" -msgstr "" +msgstr "Uporabniške nastavitve" From 4fbe13ec28858d0239e4954c99b050860bded591 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:52:49 +0000 Subject: [PATCH 58/92] Added translation using Weblate (Slovenian) --- web_widget_popover/i18n/sl.po | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 web_widget_popover/i18n/sl.po diff --git a/web_widget_popover/i18n/sl.po b/web_widget_popover/i18n/sl.po new file mode 100644 index 000000000000..ddef9c473c7f --- /dev/null +++ b/web_widget_popover/i18n/sl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_popover +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_widget_popover +#. odoo-javascript +#: code:addons/web_widget_popover/static/src/popover.esm.js:0 +msgid "FontAwesome icon to display" +msgstr "" + +#. module: web_widget_popover +#. odoo-javascript +#: code:addons/web_widget_popover/static/src/popover.esm.js:0 +msgid "Icon" +msgstr "" + +#. module: web_widget_popover +#. odoo-javascript +#: code:addons/web_widget_popover/static/src/popover.esm.js:0 +msgid "Icon Popover" +msgstr "" From 7b2080e3018dc3edf454aa92cd2dc8b3fb7253eb Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:53:46 +0000 Subject: [PATCH 59/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_widget_popover Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_widget_popover/sl/ --- web_widget_popover/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_widget_popover/i18n/sl.po b/web_widget_popover/i18n/sl.po index ddef9c473c7f..47d7d1a98956 100644 --- a/web_widget_popover/i18n/sl.po +++ b/web_widget_popover/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-07 06:54+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,21 +15,22 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_widget_popover #. odoo-javascript #: code:addons/web_widget_popover/static/src/popover.esm.js:0 msgid "FontAwesome icon to display" -msgstr "" +msgstr "Ikona FontAwesome za prikaz" #. module: web_widget_popover #. odoo-javascript #: code:addons/web_widget_popover/static/src/popover.esm.js:0 msgid "Icon" -msgstr "" +msgstr "Ikona" #. module: web_widget_popover #. odoo-javascript #: code:addons/web_widget_popover/static/src/popover.esm.js:0 msgid "Icon Popover" -msgstr "" +msgstr "Pojavno okno z ikonami" From d9b464077555f81ff84029606863dbe308ca8ce8 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:54:04 +0000 Subject: [PATCH 60/92] Added translation using Weblate (Slovenian) --- web_disable_export_group/i18n/sl.po | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 web_disable_export_group/i18n/sl.po diff --git a/web_disable_export_group/i18n/sl.po b/web_disable_export_group/i18n/sl.po new file mode 100644 index 000000000000..08cd02e3c8e0 --- /dev/null +++ b/web_disable_export_group/i18n/sl.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_disable_export_group +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_disable_export_group +#: model:ir.model,name:web_disable_export_group.model_base +msgid "Base" +msgstr "" + +#. module: web_disable_export_group +#: model:res.groups,name:web_disable_export_group.group_export_xlsx_data +msgid "Direct Export (xlsx)" +msgstr "" + +#. module: web_disable_export_group +#: model:ir.model,name:web_disable_export_group.model_ir_http +msgid "HTTP Routing" +msgstr "" From d4847929ba954aa85674aabafa10fb4ed8bc5bb6 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:54:39 +0000 Subject: [PATCH 61/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: web-18.0/web-18.0-web_disable_export_group Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_disable_export_group/sl/ --- web_disable_export_group/i18n/sl.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web_disable_export_group/i18n/sl.po b/web_disable_export_group/i18n/sl.po index 08cd02e3c8e0..3c6b18946cf4 100644 --- a/web_disable_export_group/i18n/sl.po +++ b/web_disable_export_group/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-07 06:55+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,18 +15,19 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_disable_export_group #: model:ir.model,name:web_disable_export_group.model_base msgid "Base" -msgstr "" +msgstr "Osnova" #. module: web_disable_export_group #: model:res.groups,name:web_disable_export_group.group_export_xlsx_data msgid "Direct Export (xlsx)" -msgstr "" +msgstr "Neposreden izvoz (xlsx)" #. module: web_disable_export_group #: model:ir.model,name:web_disable_export_group.model_ir_http msgid "HTTP Routing" -msgstr "" +msgstr "HTTP usmerjanje" From f4b8e6ee82931567f7cf844817f108135dad2630 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:55:05 +0000 Subject: [PATCH 62/92] Added translation using Weblate (Slovenian) --- web_timeline/i18n/sl.po | 112 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 web_timeline/i18n/sl.po diff --git a/web_timeline/i18n/sl.po b/web_timeline/i18n/sl.po new file mode 100644 index 000000000000..3403bd4276ee --- /dev/null +++ b/web_timeline/i18n/sl.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.esm.js:0 +msgid "UNASSIGNED" +msgstr "" + +#. module: web_timeline +#: model:ir.model,name:web_timeline.model_ir_actions_act_window_view +msgid "Action Window View" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 +msgid "Confirm" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 +msgid "Day" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 +msgid "Discard" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 +msgid "Month" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_view.esm.js:0 +#: model:ir.model.fields.selection,name:web_timeline.selection__ir_actions_act_window_view__view_mode__timeline +#: model:ir.model.fields.selection,name:web_timeline.selection__ir_ui_view__type__timeline +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_arch_parser.esm.js:0 +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_arch_parser.esm.js:0 +msgid "Timeline view has not defined 'default_group_by' attribute." +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 +msgid "Today" +msgstr "" + +#. module: web_timeline +#: model:ir.model,name:web_timeline.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_timeline +#: model:ir.model.fields,field_description:web_timeline.field_ir_actions_act_window_view__view_mode +#: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view__type +msgid "View Type" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 +msgid "Warning" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 +msgid "Week" +msgstr "" + +#. module: web_timeline +#. odoo-javascript +#: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 +msgid "Year" +msgstr "" From ca7d1077bd66d292f0bb5e2f9d852c7e9e67e78b Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 06:59:47 +0000 Subject: [PATCH 63/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (16 of 16 strings) Translation: web-18.0/web-18.0-web_timeline Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_timeline/sl/ --- web_timeline/i18n/sl.po | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/web_timeline/i18n/sl.po b/web_timeline/i18n/sl.po index 3403bd4276ee..a7e3d4786f07 100644 --- a/web_timeline/i18n/sl.po +++ b/web_timeline/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-07 07:00+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,47 +15,48 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.esm.js:0 msgid "UNASSIGNED" -msgstr "" +msgstr "NEDODELJENO" #. module: web_timeline #: model:ir.model,name:web_timeline.model_ir_actions_act_window_view msgid "Action Window View" -msgstr "" +msgstr "Prikaz okna za ukrepe" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 msgid "Are you sure you want to delete this record?" -msgstr "" +msgstr "Ali ste prepričani, da želite ta zapis izbrisati?" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 msgid "Confirm" -msgstr "" +msgstr "Potrdi" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 msgid "Day" -msgstr "" +msgstr "Dan" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 msgid "Discard" -msgstr "" +msgstr "Zavrzi" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 msgid "Month" -msgstr "" +msgstr "Mesec" #. module: web_timeline #. odoo-javascript @@ -62,51 +64,51 @@ msgstr "" #: model:ir.model.fields.selection,name:web_timeline.selection__ir_actions_act_window_view__view_mode__timeline #: model:ir.model.fields.selection,name:web_timeline.selection__ir_ui_view__type__timeline msgid "Timeline" -msgstr "" +msgstr "Časovnica" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_arch_parser.esm.js:0 msgid "Timeline view has not defined 'date_start' attribute." -msgstr "" +msgstr "V prikazu časovnice ni definiran atribut 'date_start'." #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_arch_parser.esm.js:0 msgid "Timeline view has not defined 'default_group_by' attribute." -msgstr "" +msgstr "V prikazu časovnice ni definiran atribut 'default_group_by'." #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 msgid "Today" -msgstr "" +msgstr "Danes" #. module: web_timeline #: model:ir.model,name:web_timeline.model_ir_ui_view msgid "View" -msgstr "" +msgstr "Prikaz" #. module: web_timeline #: model:ir.model.fields,field_description:web_timeline.field_ir_actions_act_window_view__view_mode #: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view__type msgid "View Type" -msgstr "" +msgstr "Tip prikaza" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_controller.esm.js:0 msgid "Warning" -msgstr "" +msgstr "Opozorilo" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 msgid "Week" -msgstr "" +msgstr "Teden" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/views/timeline/timeline_renderer.xml:0 msgid "Year" -msgstr "" +msgstr "Leto" From 14fd6b6d8ab48a86fb0585cfcf62a2ba32137178 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 07:00:13 +0000 Subject: [PATCH 64/92] Added translation using Weblate (Slovenian) --- web_notify/i18n/sl.po | 118 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 web_notify/i18n/sl.po diff --git a/web_notify/i18n/sl.po b/web_notify/i18n/sl.po new file mode 100644 index 000000000000..ffab97d84b40 --- /dev/null +++ b/web_notify/i18n/sl.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_notify +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_notify +#. odoo-python +#: code:addons/web_notify/models/res_users.py:0 +msgid "Danger" +msgstr "" + +#. module: web_notify +#. odoo-python +#: code:addons/web_notify/models/res_users.py:0 +msgid "Default" +msgstr "" + +#. module: web_notify +#. odoo-python +#: code:addons/web_notify/models/res_users.py:0 +msgid "Information" +msgstr "" + +#. module: web_notify +#: model:ir.model.fields,field_description:web_notify.field_res_users__notify_danger_channel_name +msgid "Notify Danger Channel Name" +msgstr "" + +#. module: web_notify +#: model:ir.model.fields,field_description:web_notify.field_res_users__notify_default_channel_name +msgid "Notify Default Channel Name" +msgstr "" + +#. module: web_notify +#: model:ir.model.fields,field_description:web_notify.field_res_users__notify_info_channel_name +msgid "Notify Info Channel Name" +msgstr "" + +#. module: web_notify +#: model:ir.model.fields,field_description:web_notify.field_res_users__notify_success_channel_name +msgid "Notify Success Channel Name" +msgstr "" + +#. module: web_notify +#: model:ir.model.fields,field_description:web_notify.field_res_users__notify_warning_channel_name +msgid "Notify Warning Channel Name" +msgstr "" + +#. module: web_notify +#. odoo-javascript +#: code:addons/web_notify/static/src/js/services/notification_services.esm.js:0 +msgid "Open" +msgstr "" + +#. module: web_notify +#. odoo-python +#: code:addons/web_notify/models/res_users.py:0 +msgid "Sending a notification to another user is forbidden." +msgstr "" + +#. module: web_notify +#. odoo-python +#: code:addons/web_notify/models/res_users.py:0 +msgid "Success" +msgstr "" + +#. module: web_notify +#: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit +msgid "Test danger notification" +msgstr "" + +#. module: web_notify +#: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit +msgid "Test default notification" +msgstr "" + +#. module: web_notify +#: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit +msgid "Test info notification" +msgstr "" + +#. module: web_notify +#: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit +msgid "Test success notification" +msgstr "" + +#. module: web_notify +#: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit +msgid "Test warning notification" +msgstr "" + +#. module: web_notify +#: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit +msgid "Test web notify" +msgstr "" + +#. module: web_notify +#: model:ir.model,name:web_notify.model_res_users +msgid "User" +msgstr "" + +#. module: web_notify +#. odoo-python +#: code:addons/web_notify/models/res_users.py:0 +msgid "Warning" +msgstr "" From 01d7cd50c402345a33db53241c4f396decbf1e34 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 07:06:45 +0000 Subject: [PATCH 65/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (19 of 19 strings) Translation: web-18.0/web-18.0-web_notify Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_notify/sl/ --- web_notify/i18n/sl.po | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/web_notify/i18n/sl.po b/web_notify/i18n/sl.po index ffab97d84b40..2cfaa5ce4512 100644 --- a/web_notify/i18n/sl.po +++ b/web_notify/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-07 07:07+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,105 +15,106 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_notify #. odoo-python #: code:addons/web_notify/models/res_users.py:0 msgid "Danger" -msgstr "" +msgstr "Nevarnost" #. module: web_notify #. odoo-python #: code:addons/web_notify/models/res_users.py:0 msgid "Default" -msgstr "" +msgstr "Privzeto" #. module: web_notify #. odoo-python #: code:addons/web_notify/models/res_users.py:0 msgid "Information" -msgstr "" +msgstr "Informacije" #. module: web_notify #: model:ir.model.fields,field_description:web_notify.field_res_users__notify_danger_channel_name msgid "Notify Danger Channel Name" -msgstr "" +msgstr "Naziv kanala za obveščanje o nevarnosti" #. module: web_notify #: model:ir.model.fields,field_description:web_notify.field_res_users__notify_default_channel_name msgid "Notify Default Channel Name" -msgstr "" +msgstr "Naziv privzetega kanala za obveščanje" #. module: web_notify #: model:ir.model.fields,field_description:web_notify.field_res_users__notify_info_channel_name msgid "Notify Info Channel Name" -msgstr "" +msgstr "Naziv informacijskega kanala za obveščanje" #. module: web_notify #: model:ir.model.fields,field_description:web_notify.field_res_users__notify_success_channel_name msgid "Notify Success Channel Name" -msgstr "" +msgstr "Naziv kanala za obveščanje o uspehu" #. module: web_notify #: model:ir.model.fields,field_description:web_notify.field_res_users__notify_warning_channel_name msgid "Notify Warning Channel Name" -msgstr "" +msgstr "Naziv kanala za obveščanje o opozorilih" #. module: web_notify #. odoo-javascript #: code:addons/web_notify/static/src/js/services/notification_services.esm.js:0 msgid "Open" -msgstr "" +msgstr "Odpri" #. module: web_notify #. odoo-python #: code:addons/web_notify/models/res_users.py:0 msgid "Sending a notification to another user is forbidden." -msgstr "" +msgstr "Pošiljanje obvestil drugemu uporabniku ni dovoljeno." #. module: web_notify #. odoo-python #: code:addons/web_notify/models/res_users.py:0 msgid "Success" -msgstr "" +msgstr "Uspeh" #. module: web_notify #: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit msgid "Test danger notification" -msgstr "" +msgstr "Test obvestila o nevarnosti" #. module: web_notify #: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit msgid "Test default notification" -msgstr "" +msgstr "Test privzetega obvestila" #. module: web_notify #: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit msgid "Test info notification" -msgstr "" +msgstr "Test informacijskega obvestila" #. module: web_notify #: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit msgid "Test success notification" -msgstr "" +msgstr "Test obvestila o uspehu" #. module: web_notify #: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit msgid "Test warning notification" -msgstr "" +msgstr "Test opozorilnega obvestila" #. module: web_notify #: model_terms:ir.ui.view,arch_db:web_notify.view_users_form_simple_modif_inherit msgid "Test web notify" -msgstr "" +msgstr "Test spletnega obvestila" #. module: web_notify #: model:ir.model,name:web_notify.model_res_users msgid "User" -msgstr "" +msgstr "Uporabnik" #. module: web_notify #. odoo-python #: code:addons/web_notify/models/res_users.py:0 msgid "Warning" -msgstr "" +msgstr "Opozorilo" From 9382723ef7f139999bd65e4998bdb14aa874c48e Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 07:07:00 +0000 Subject: [PATCH 66/92] Added translation using Weblate (Slovenian) --- web_pivot_computed_measure/i18n/sl.po | 143 ++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 web_pivot_computed_measure/i18n/sl.po diff --git a/web_pivot_computed_measure/i18n/sl.po b/web_pivot_computed_measure/i18n/sl.po new file mode 100644 index 000000000000..c5f62773aef0 --- /dev/null +++ b/web_pivot_computed_measure/i18n/sl.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_pivot_computed_measure +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Add" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Can be empty" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Computed Measure" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Custom" +msgstr "" + +#. module: web_pivot_computed_measure +#: model:ir.actions.act_window,name:web_pivot_computed_measure.demo_action_res_partner_report_pivot +#: model:ir.ui.menu,name:web_pivot_computed_measure.demo_menu_res_partner_report_pivot +msgid "Demo Pivot" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Div (m1 / m2)" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Float" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Format" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Formula" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Integer" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Measure 1" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Measure 2" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Mult (m1 * m2)" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Name" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Operation" +msgstr "" + +#. module: web_pivot_computed_measure +#: model_terms:ir.ui.view,arch_db:web_pivot_computed_measure.demo_view_res_partner_report_pivot +msgid "Partners Table" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Perc (m1 * 100 / m2)" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Percentage" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Sub (m1 - m2)" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 +msgid "Sum (m1 + m2)" +msgstr "" + +#. module: web_pivot_computed_measure +#. odoo-javascript +#: code:addons/web_pivot_computed_measure/static/src/pivot/pivot_model.esm.js:0 +msgid "" +"This measure is currently used by a 'computed measure'. Please, disable the " +"computed measure first." +msgstr "" From 4b37af4aabdf6bacad4db453130c820a140a6ca9 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 07:12:19 +0000 Subject: [PATCH 67/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (21 of 21 strings) Translation: web-18.0/web-18.0-web_pivot_computed_measure Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_pivot_computed_measure/sl/ --- web_pivot_computed_measure/i18n/sl.po | 46 +++++++++++++++------------ 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/web_pivot_computed_measure/i18n/sl.po b/web_pivot_computed_measure/i18n/sl.po index c5f62773aef0..f65bc8a171f1 100644 --- a/web_pivot_computed_measure/i18n/sl.po +++ b/web_pivot_computed_measure/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-07 07:12+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,125 +15,126 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Add" -msgstr "" +msgstr "Dodaj" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Can be empty" -msgstr "" +msgstr "Lahko je prazno" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Computed Measure" -msgstr "" +msgstr "Izračunana vrednost" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Custom" -msgstr "" +msgstr "Po meri" #. module: web_pivot_computed_measure #: model:ir.actions.act_window,name:web_pivot_computed_measure.demo_action_res_partner_report_pivot #: model:ir.ui.menu,name:web_pivot_computed_measure.demo_menu_res_partner_report_pivot msgid "Demo Pivot" -msgstr "" +msgstr "Demo Pivot" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Div (m1 / m2)" -msgstr "" +msgstr "Delj (m1 / m2)" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Float" -msgstr "" +msgstr "Float" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Format" -msgstr "" +msgstr "Format" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Formula" -msgstr "" +msgstr "Formula" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Integer" -msgstr "" +msgstr "Celo število" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Measure 1" -msgstr "" +msgstr "Mera 1" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Measure 2" -msgstr "" +msgstr "Mera 2" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Mult (m1 * m2)" -msgstr "" +msgstr "Prod (m1 * m2)" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Name" -msgstr "" +msgstr "Naziv" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Operation" -msgstr "" +msgstr "Operacija" #. module: web_pivot_computed_measure #: model_terms:ir.ui.view,arch_db:web_pivot_computed_measure.demo_view_res_partner_report_pivot msgid "Partners Table" -msgstr "" +msgstr "Preglednica partnerjev" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Perc (m1 * 100 / m2)" -msgstr "" +msgstr "Proc (m1 * 100 / m2)" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Percentage" -msgstr "" +msgstr "Odstotek" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Sub (m1 - m2)" -msgstr "" +msgstr "Raz (m1 - m2)" #. module: web_pivot_computed_measure #. odoo-javascript #: code:addons/web_pivot_computed_measure/static/src/dropdown_item_custom_measure/dropdown_item_custom_measure.xml:0 msgid "Sum (m1 + m2)" -msgstr "" +msgstr "Vsota (m1 + m2)" #. module: web_pivot_computed_measure #. odoo-javascript @@ -141,3 +143,5 @@ msgid "" "This measure is currently used by a 'computed measure'. Please, disable the " "computed measure first." msgstr "" +"Ta izmera se trenutno uporablja v 'izračunani vrednosti'. Najprej " +"onemogočite izračunano vrednost." From 7240120213cd953d2922213d09585e5c615e8266 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 07:12:44 +0000 Subject: [PATCH 68/92] Added translation using Weblate (Slovenian) --- web_ir_actions_act_multi/i18n/sl.po | 120 ++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 web_ir_actions_act_multi/i18n/sl.po diff --git a/web_ir_actions_act_multi/i18n/sl.po b/web_ir_actions_act_multi/i18n/sl.po new file mode 100644 index 000000000000..18c3c1b0ba0a --- /dev/null +++ b/web_ir_actions_act_multi/i18n/sl.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ir_actions_act_multi +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__help +msgid "Action Description" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model,name:web_ir_actions_act_multi.model_ir_actions_act_multi +msgid "Action Mulit" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__name +msgid "Action Name" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__type +msgid "Action Type" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_type +msgid "Binding Type" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_uid +msgid "Created by" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_date +msgid "Created on" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__display_name +msgid "Display Name" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__xml_id +msgid "External ID" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__id +msgid "ID" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_data +msgid "Model Data" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model +msgid "Models" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__path +msgid "Path to show in the URL" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" From 7c8ec444143353f3cbdb74cd2561a8f60ef0a822 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Sun, 7 Jun 2026 07:18:13 +0000 Subject: [PATCH 69/92] Translated using Weblate (Slovenian) Currently translated at 100.0% (20 of 20 strings) Translation: web-18.0/web-18.0-web_ir_actions_act_multi Translate-URL: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_ir_actions_act_multi/sl/ --- web_ir_actions_act_multi/i18n/sl.po | 44 ++++++++++++++++------------- 1 file changed, 25 insertions(+), 19 deletions(-) diff --git a/web_ir_actions_act_multi/i18n/sl.po b/web_ir_actions_act_multi/i18n/sl.po index 18c3c1b0ba0a..e12383b03c77 100644 --- a/web_ir_actions_act_multi/i18n/sl.po +++ b/web_ir_actions_act_multi/i18n/sl.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2026-06-07 07:43+0000\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: none\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -14,91 +15,92 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.15.2\n" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__help msgid "Action Description" -msgstr "" +msgstr "Opis ukrepa" #. module: web_ir_actions_act_multi #: model:ir.model,name:web_ir_actions_act_multi.model_ir_actions_act_multi msgid "Action Mulit" -msgstr "" +msgstr "Množični ukrep" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__name msgid "Action Name" -msgstr "" +msgstr "Naziv ukrepa" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__type msgid "Action Type" -msgstr "" +msgstr "Tip ukrepa" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id msgid "Binding Model" -msgstr "" +msgstr "Model vezave" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_type msgid "Binding Type" -msgstr "" +msgstr "Tip vezave" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_view_types msgid "Binding View Types" -msgstr "" +msgstr "Tipi prikaza vezave" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_uid msgid "Created by" -msgstr "" +msgstr "Ustvaril" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_date msgid "Created on" -msgstr "" +msgstr "Ustvarjeno" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__display_name msgid "Display Name" -msgstr "" +msgstr "Prikazani naziv" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__xml_id msgid "External ID" -msgstr "" +msgstr "Zunanji ID" #. module: web_ir_actions_act_multi #: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_fields msgid "Fields" -msgstr "" +msgstr "Polja" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__id msgid "ID" -msgstr "" +msgstr "ID" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_uid msgid "Last Updated by" -msgstr "" +msgstr "Zadnji posodobil" #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_date msgid "Last Updated on" -msgstr "" +msgstr "Zadnjič posodobljeno" #. module: web_ir_actions_act_multi #: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_data msgid "Model Data" -msgstr "" +msgstr "Podatki modela" #. module: web_ir_actions_act_multi #: model:ir.model,name:web_ir_actions_act_multi.model_ir_model msgid "Models" -msgstr "" +msgstr "Modeli" #. module: web_ir_actions_act_multi #: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__help @@ -106,11 +108,13 @@ msgid "" "Optional help text for the users with a description of the target view, such" " as its usage and purpose." msgstr "" +"Izbirno besedilo s pomočjo za uporabnike, ki vsebuje opis ciljnega prikaza, " +"na primer njegovo uporabo in namen." #. module: web_ir_actions_act_multi #: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__path msgid "Path to show in the URL" -msgstr "" +msgstr "Pot prikazana v URL-ju" #. module: web_ir_actions_act_multi #: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id @@ -118,3 +122,5 @@ msgid "" "Setting a value makes this action available in the sidebar for the given " "model." msgstr "" +"Nastavitev vrednosti omogoči, da je ta ukrep na voljo v stranskem meniju za " +"dani model." From 2a0652ee6d8cf781741b696bc0dec06fffac6cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bet=C3=BCl=20=C3=96=C4=9Fmen?= Date: Sun, 7 Jun 2026 07:43:21 +0000 Subject: [PATCH 70/92] Added translation using Weblate (Turkish) --- web_pwa_customize/i18n/tr.po | 79 ++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 web_pwa_customize/i18n/tr.po diff --git a/web_pwa_customize/i18n/tr.po b/web_pwa_customize/i18n/tr.po new file mode 100644 index 000000000000..b85f0a64c4ce --- /dev/null +++ b/web_pwa_customize/i18n/tr.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_pwa_customize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Background Color" +msgstr "" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Theme Color" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_background_color +msgid "Background Color" +msgstr "" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Colors" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model,name:web_pwa_customize.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_icon +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Icon" +msgstr "" + +#. module: web_pwa_customize +#: model_terms:ir.ui.view,arch_db:web_pwa_customize.res_config_settings_view_form +msgid "Odoo" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_theme_color +msgid "Theme Color" +msgstr "" + +#. module: web_pwa_customize +#: model:ir.model.fields,field_description:web_pwa_customize.field_res_config_settings__pwa_short_name +msgid "Web App Short Name" +msgstr "" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +msgid "You can only upload PNG files bigger than 512x512" +msgstr "" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +msgid "You can only upload SVG or PNG files. Found: %s." +msgstr "" + +#. module: web_pwa_customize +#. odoo-python +#: code:addons/web_pwa_customize/models/res_config_settings.py:0 +msgid "You can't upload a file with more than 2 MB." +msgstr "" From f99f49b1cba45172bd0b9a7e0c801831e64a8a54 Mon Sep 17 00:00:00 2001 From: Rad0van Date: Sat, 6 Jun 2026 18:28:50 +0200 Subject: [PATCH 71/92] [FIX] web_theme_classic: don't double-tint required monetary fields The required-field background sets --o-input-background-color on every .o_input inside an o_required_modifier. A monetary field renders an absolutely-positioned overlay span (which also carries .o_input) on top of the real input, so the semi-transparent tint was applied to both and the overlap rendered as a darker band over the value. Keep the overlay background transparent so only the real input carries the required tint, in both form and list views. Co-Authored-By: Claude Opus 4.8 (1M context) --- web_theme_classic/static/src/scss/web_theme_classic.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web_theme_classic/static/src/scss/web_theme_classic.scss b/web_theme_classic/static/src/scss/web_theme_classic.scss index 56b6ee42743c..6b6fa5a8a729 100644 --- a/web_theme_classic/static/src/scss/web_theme_classic.scss +++ b/web_theme_classic/static/src/scss/web_theme_classic.scss @@ -100,6 +100,10 @@ body.classic-theme { /* Prevent having double border for monetary fields */ span.o_input:has(~ input.o_input) { border: $input-border-width solid transparent !important; + /* The overlay sits on top of the real input; keep it + transparent so the required-field background is not applied + twice (which renders as a darker band over the value). */ + background-color: transparent !important; } /* Keep the monetary symbol away from the border when it is outside the border */ @@ -174,6 +178,7 @@ body.classic-theme { // Handle monetary fields in list &.o_field_monetary span.o_input:has(~ input.o_input) { border: $input-border-width solid transparent !important; + background-color: transparent !important; } } } From 3daf540a027b8a9b6e965405eb97ec1c61e0c35b Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sun, 7 Jun 2026 10:15:09 +0000 Subject: [PATCH 72/92] [BOT] post-merge updates --- README.md | 2 +- web_theme_classic/README.rst | 2 +- web_theme_classic/__manifest__.py | 2 +- web_theme_classic/static/description/index.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6fa332325c9c..6986f473b44d 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ addon | version | maintainers | summary [web_session_auto_close](web_session_auto_close/) | 18.0.1.0.1 | | Automatically logs out inactive users based on a configurable timeout. [web_sort_menu](web_sort_menu/) | 18.0.1.0.0 | | Sort Apps in DropDown/NavBar Menu alphabetically [web_systray_button_init_action](web_systray_button_init_action/) | 18.0.1.0.2 | | Add a button to go to the user init action. -[web_theme_classic](web_theme_classic/) | 18.0.1.2.0 | legalsylvain | Contrasted style on fields to improve the UI. +[web_theme_classic](web_theme_classic/) | 18.0.1.2.1 | legalsylvain | Contrasted style on fields to improve the UI. [web_time_range_menu_custom](web_time_range_menu_custom/) | 18.0.1.0.0 | | Web Time Range Menu Custom [web_timeline](web_timeline/) | 18.0.1.0.3 | | Interactive visualization chart to show events in time [web_toggle_chatter](web_toggle_chatter/) | 18.0.1.0.0 | | Toggle chatter in backend form views diff --git a/web_theme_classic/README.rst b/web_theme_classic/README.rst index 5825ab46e06f..b28ab0a71815 100644 --- a/web_theme_classic/README.rst +++ b/web_theme_classic/README.rst @@ -11,7 +11,7 @@ Web Theme Classic !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:96a272ee896986cd77dc37d08d7df63ad97290bbe73d90c2ac25139644f4ae70 + !! source digest: sha256:a1d6cc9567e2e1de56d24125b1c6ee1bd23ad309b61a9c62ebe8304315859f13 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/web_theme_classic/__manifest__.py b/web_theme_classic/__manifest__.py index 9d189e05517b..32253d604366 100644 --- a/web_theme_classic/__manifest__.py +++ b/web_theme_classic/__manifest__.py @@ -6,7 +6,7 @@ { "name": "Web Theme Classic", "summary": "Contrasted style on fields to improve the UI.", - "version": "18.0.1.2.0", + "version": "18.0.1.2.1", "author": "GRAP, Odoo Community Association (OCA)", "maintainers": ["legalsylvain"], "website": "https://github.com/OCA/web", diff --git a/web_theme_classic/static/description/index.html b/web_theme_classic/static/description/index.html index 190aa5109dc1..81138f79c7b1 100644 --- a/web_theme_classic/static/description/index.html +++ b/web_theme_classic/static/description/index.html @@ -372,7 +372,7 @@

Web Theme Classic

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:96a272ee896986cd77dc37d08d7df63ad97290bbe73d90c2ac25139644f4ae70 +!! source digest: sha256:a1d6cc9567e2e1de56d24125b1c6ee1bd23ad309b61a9c62ebe8304315859f13 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/web Translate me on Weblate Try me on Runboat

This module extends the Odoo Community Edition web module to improve From 6cab9bf50e6dd8e8ad752076d108e8db2ebca28b Mon Sep 17 00:00:00 2001 From: Diego Paradeda Date: Fri, 29 May 2026 13:30:43 -0300 Subject: [PATCH 73/92] [IMP] web_refresher: hotkey Alt Shift R --- web_refresher/static/src/xml/refresher.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/web_refresher/static/src/xml/refresher.xml b/web_refresher/static/src/xml/refresher.xml index 4827c5a656b1..5c51b468d89c 100644 --- a/web_refresher/static/src/xml/refresher.xml +++ b/web_refresher/static/src/xml/refresher.xml @@ -10,6 +10,7 @@ aria-label="Refresh" t-on-click="onClickRefresh" title="Refresh" + data-hotkey="shift+r" tabindex="-1" /> From 7992d1f0671a162cb740dba58ba07d48e974a5de Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 8 Jun 2026 20:43:29 +0000 Subject: [PATCH 74/92] [BOT] post-merge updates --- README.md | 2 +- web_company_color/README.rst | 4 +++- web_company_color/__manifest__.py | 2 +- web_company_color/static/description/index.html | 3 ++- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6986f473b44d..61c282f5674a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ addon | version | maintainers | summary --- | --- | --- | --- [web_calendar_slot_duration](web_calendar_slot_duration/) | 18.0.1.0.0 | Yajo | Customizable calendar slot durations [web_chatter_position](web_chatter_position/) | 18.0.1.1.0 | trisdoan | Add an option to change the chatter position -[web_company_color](web_company_color/) | 18.0.1.0.7 | | Web Company Color +[web_company_color](web_company_color/) | 18.0.1.0.8 | | Web Company Color [web_copy_confirm](web_copy_confirm/) | 18.0.1.0.0 | | Show confirmation dialogue before copying records [web_dark_mode](web_dark_mode/) | 18.0.1.0.0 | | Enabled Dark Mode for the Odoo Backend [web_datetime_picker_default_time](web_datetime_picker_default_time/) | 18.0.1.0.0 | grindtildeath | Allows to define a default time on datetime picker diff --git a/web_company_color/README.rst b/web_company_color/README.rst index 60a91b70e7fb..8f718626f4da 100644 --- a/web_company_color/README.rst +++ b/web_company_color/README.rst @@ -11,7 +11,7 @@ Web Company Color !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:dae72dca32daa1de5666e39a00359088595ea0c6330b4b4300670e4e3a0b6680 + !! source digest: sha256:40d8a2dfe842d1879b7891ecf4caa673be5fb0774416e8656a991ea850cb12b1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png @@ -90,6 +90,8 @@ Contributors - Simone Rubino +- Marwan Behillil + Maintainers ----------- diff --git a/web_company_color/__manifest__.py b/web_company_color/__manifest__.py index f5329cfa86d0..df48fbbef3ab 100644 --- a/web_company_color/__manifest__.py +++ b/web_company_color/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Web Company Color", "category": "web", - "version": "18.0.1.0.7", + "version": "18.0.1.0.8", "author": "Alexandre Díaz, Odoo Community Association (OCA)", "website": "https://github.com/OCA/web", "depends": ["web", "base_sparse_field"], diff --git a/web_company_color/static/description/index.html b/web_company_color/static/description/index.html index dd2882acf635..308def2e91bf 100644 --- a/web_company_color/static/description/index.html +++ b/web_company_color/static/description/index.html @@ -372,7 +372,7 @@

Web Company Color

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:dae72dca32daa1de5666e39a00359088595ea0c6330b4b4300670e4e3a0b6680 +!! source digest: sha256:40d8a2dfe842d1879b7891ecf4caa673be5fb0774416e8656a991ea850cb12b1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/web Translate me on Weblate Try me on Runboat

This module change navbar colors based in the company logo colors.

@@ -436,6 +436,7 @@

Contributors

  • Simone Rubino <simone.rubino@pytech.it>
  • +
  • Marwan Behillil <marwan.behillil@gmail.com>
  • From d7def4497478b3e53a9899aba1ab4d164080cbb1 Mon Sep 17 00:00:00 2001 From: Javier Luis Matos Odut Date: Sun, 22 Feb 2026 01:26:38 +0100 Subject: [PATCH 75/92] [IMP] web_company_color: add button to reset colors to default --- web_company_color/i18n/ca.po | 10 ++++++ web_company_color/i18n/de.po | 10 ++++++ web_company_color/i18n/es.po | 10 ++++++ web_company_color/i18n/fr.po | 10 ++++++ web_company_color/i18n/hr.po | 10 ++++++ web_company_color/i18n/it.po | 10 ++++++ web_company_color/i18n/nl.po | 10 ++++++ web_company_color/i18n/pt.po | 10 ++++++ web_company_color/i18n/web_company_color.pot | 10 ++++++ web_company_color/i18n/zh_CN.po | 10 ++++++ web_company_color/models/res_company.py | 3 ++ web_company_color/tests/test_res_company.py | 38 ++++++++++++++++++++ web_company_color/view/res_company.xml | 7 ++++ 13 files changed, 148 insertions(+) diff --git a/web_company_color/i18n/ca.po b/web_company_color/i18n/ca.po index c36461d45121..e5f7b703c99b 100644 --- a/web_company_color/i18n/ca.po +++ b/web_company_color/i18n/ca.po @@ -25,6 +25,11 @@ msgid "" " the page." msgstr "" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "Esteu segur que voleu restablir tots els colors als valors predeterminats d'Odoo?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -100,6 +105,11 @@ msgstr "" msgid "Qweb" msgstr "" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Restableix els colors" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/de.po b/web_company_color/i18n/de.po index 2dd74304a23b..f03f2b75a2e4 100644 --- a/web_company_color/i18n/de.po +++ b/web_company_color/i18n/de.po @@ -29,6 +29,11 @@ msgstr "" "Sie bitte\n" " die Seite." +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "Sind Sie sicher, dass Sie alle Farben auf die Odoo-Standardwerte zurücksetzen möchten?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -104,6 +109,11 @@ msgstr "Navbar Textfarbe" msgid "Qweb" msgstr "Qweb" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Farben zurücksetzen" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/es.po b/web_company_color/i18n/es.po index 9acc5c3987c6..efc1cae1542f 100644 --- a/web_company_color/i18n/es.po +++ b/web_company_color/i18n/es.po @@ -29,6 +29,11 @@ msgstr "" " Para que los cambios surtan efecto, actualice\n" " la página." +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "¿Está seguro de que desea restablecer todos los colores a los valores predeterminados de Odoo?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -104,6 +109,11 @@ msgstr "Color de texto de la barra de navegación" msgid "Qweb" msgstr "Qweb" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Restablecer colores" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/fr.po b/web_company_color/i18n/fr.po index b2d9c4880af1..61d7fd69f02c 100644 --- a/web_company_color/i18n/fr.po +++ b/web_company_color/i18n/fr.po @@ -29,6 +29,11 @@ msgstr "" "d'actualiser\n" " la page." +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "Êtes-vous sûr de vouloir réinitialiser toutes les couleurs aux valeurs par défaut d'Odoo ?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -104,6 +109,11 @@ msgstr "Couleur du texte de la barre de navigation" msgid "Qweb" msgstr "Qweb" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Réinitialiser les couleurs" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/hr.po b/web_company_color/i18n/hr.po index 216b13e7d62f..d5733b01f915 100644 --- a/web_company_color/i18n/hr.po +++ b/web_company_color/i18n/hr.po @@ -26,6 +26,11 @@ msgid "" " the page." msgstr "" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "Jeste li sigurni da želite poništiti sve boje na Odoo zadane vrijednosti?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -101,6 +106,11 @@ msgstr "Boja teksta navigacijske trake" msgid "Qweb" msgstr "" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Poništi boje" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/it.po b/web_company_color/i18n/it.po index 1b69efd1e106..d0fd8c86c7b5 100644 --- a/web_company_color/i18n/it.po +++ b/web_company_color/i18n/it.po @@ -28,6 +28,11 @@ msgstr "" " Affinché la modifica abbia effetto, ricaricare\n" " la pagina." +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "Si è sicuri di voler reimpostare tutti i colori ai valori predefiniti di Odoo?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -103,6 +108,11 @@ msgstr "Colori Testo Barra Navigazione" msgid "Qweb" msgstr "Qweb" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Reimposta colori" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/nl.po b/web_company_color/i18n/nl.po index dd38b466dd76..04c0dc1dee1f 100644 --- a/web_company_color/i18n/nl.po +++ b/web_company_color/i18n/nl.po @@ -29,6 +29,11 @@ msgstr "" "alstublieft\n" " de pagina." +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "Weet u zeker dat u alle kleuren wilt terugzetten naar de Odoo-standaardwaarden?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -104,6 +109,11 @@ msgstr "Navigatiebalk Tekstkleuren" msgid "Qweb" msgstr "Qweb" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Kleuren herstellen" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/pt.po b/web_company_color/i18n/pt.po index 02fb6798848a..cdaf386dbbb9 100644 --- a/web_company_color/i18n/pt.po +++ b/web_company_color/i18n/pt.po @@ -28,6 +28,11 @@ msgstr "" " Para que as alterações entrem em vigor, atualize\n" " a página." +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "Tem a certeza de que pretende repor todas as cores para os valores predefinidos do Odoo?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -103,6 +108,11 @@ msgstr "Cor do Texto da Barra de Navegação" msgid "Qweb" msgstr "QWeb" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "Repor cores" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/web_company_color.pot b/web_company_color/i18n/web_company_color.pot index f6430b4dffc1..edbc07ea3e95 100644 --- a/web_company_color/i18n/web_company_color.pot +++ b/web_company_color/i18n/web_company_color.pot @@ -21,6 +21,11 @@ msgid "" " the page." msgstr "" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -96,6 +101,11 @@ msgstr "" msgid "Qweb" msgstr "" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/i18n/zh_CN.po b/web_company_color/i18n/zh_CN.po index 586cdf9d68f1..32bee94257ff 100644 --- a/web_company_color/i18n/zh_CN.po +++ b/web_company_color/i18n/zh_CN.po @@ -25,6 +25,11 @@ msgid "" " the page." msgstr "" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Are you sure you want to reset all colors to Odoo defaults?" +msgstr "您确定要将所有颜色重置为Odoo默认值吗?" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__color_button_bg msgid "Button Background Color" @@ -100,6 +105,11 @@ msgstr "导航栏文字颜色" msgid "Qweb" msgstr "Qweb" +#. module: web_company_color +#: model_terms:ir.ui.view,arch_db:web_company_color.view_company_form +msgid "Reset colors" +msgstr "重置颜色" + #. module: web_company_color #: model:ir.model.fields,field_description:web_company_color.field_res_company__scss_modif_timestamp msgid "SCSS Modif. Timestamp" diff --git a/web_company_color/models/res_company.py b/web_company_color/models/res_company.py index 1e98afa97a5d..3d40723bc5e4 100644 --- a/web_company_color/models/res_company.py +++ b/web_company_color/models/res_company.py @@ -182,6 +182,9 @@ def write(self, values): self.scss_create_or_update_attachment() return result + def button_reset_colors(self): + self.write({"company_colors": {}}) + def button_compute_color(self): self.ensure_one() values = self.default_get( diff --git a/web_company_color/tests/test_res_company.py b/web_company_color/tests/test_res_company.py index ea300cb38cb0..3963ba8f9646 100644 --- a/web_company_color/tests/test_res_company.py +++ b/web_company_color/tests/test_res_company.py @@ -79,6 +79,44 @@ def test_change_color(self): "Invalid Navbar Background Color", ) + def test_reset_colors(self): + company = self.env["res.company"].search([], limit=1) + company.sudo().write( + { + "color_navbar_bg": "#111111", + "color_navbar_bg_hover": "#222222", + "color_navbar_text": "#333333", + "color_button_bg": "#444444", + "color_button_bg_hover": "#555555", + "color_button_text": "#666666", + "color_link_text": "#777777", + "color_link_text_hover": "#888888", + "color_submenu_text": "#999999", + } + ) + company.button_reset_colors() + company.invalidate_recordset() + self.assertFalse(company.color_navbar_bg, "color_navbar_bg should be reset") + self.assertFalse( + company.color_navbar_bg_hover, "color_navbar_bg_hover should be reset" + ) + self.assertFalse(company.color_navbar_text, "color_navbar_text should be reset") + self.assertFalse(company.color_button_bg, "color_button_bg should be reset") + self.assertFalse( + company.color_button_bg_hover, "color_button_bg_hover should be reset" + ) + self.assertFalse(company.color_button_text, "color_button_text should be reset") + self.assertFalse(company.color_link_text, "color_link_text should be reset") + self.assertFalse( + company.color_link_text_hover, "color_link_text_hover should be reset" + ) + self.assertFalse( + company.color_submenu_text, "color_submenu_text should be reset" + ) + self.assertFalse( + company.company_colors, "company_colors should be empty after reset" + ) + def test_compiled_scss(self): """The SCSS is compiled before being sent to the client.""" # Arrange diff --git a/web_company_color/view/res_company.xml b/web_company_color/view/res_company.xml index 55969037919a..26ffea8dd234 100644 --- a/web_company_color/view/res_company.xml +++ b/web_company_color/view/res_company.xml @@ -32,6 +32,13 @@ type="object" string="Compute colors from logo" /> +