diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..83557a5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,24 @@ +# Configuration for EditorConfig +# https://EditorConfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{py,pyi}] +indent_size = 4 +indent_style = space + +[*.{xml,yml,yaml,json,js,css,scss,md,rst}] +indent_size = 2 +indent_style = space + +[*.{md,rst}] +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..cb28e98 --- /dev/null +++ b/.flake8 @@ -0,0 +1,25 @@ +# See https://github.com/OCA/maintainer-tools/issues/38 +# E123, E133, E226, E241, E242 are ignored by default +# E203 for black (whitespace before : in slice) + +[flake8] +max-line-length = 88 +max-complexity = 16 +# B = bugbear +# B9 = bugbear opinionated (incl line length) +select = C,E,F,W,B,B9 +# E203: whitespace before ':' (black-compatible) +# E501: line too long (black-compatible) +# W503: line break before binary operator (black-compatible) +# B950: line too long (soft limit, complements B) +ignore = E203,E501,W503,B950 +exclude = + .git, + __pycache__, + .tox, + .eggs, + *.egg, + build, + .venv, + .env, + setup diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000..f1a4277 --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,16 @@ +[isort] +profile = black +force_single_line = True +# For black compatibility +line_length = 88 +multi_line_output = 3 +include_trailing_comma = True +force_grid_wrap = 0 +use_parentheses = True +ensure_newline_before_comments = True +# Skip __init__.py as per OCA standards +skip_glob = */__init__.py +known_odoo=odoo +known_odoo_addons=odoo.addons +sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER +default_section=THIRDPARTY diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..748e132 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,142 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +exclude: | + (?x) + # NOT INSTALLABLE ADDONS + # END NOT INSTALLABLE ADDONS + # Files and folders generated by bots, to avoid loops + /setup/|/README\.rst$|/static/description/index\.html$| + # Maybe reactivate this when all README files include prettier ignore tags? + ^README\.md$| + # Library files can have extraneous formatting (even minimized) + /static/(src/)?lib/| + # Repos using Sphinx to generate docs don't need prettying + ^docs/_templates/.*\.html$| + # You don't usually want a bot to modify your legal texts + (LICENSE.*|COPYING.*) +default_language_version: + python: python3 + node: "16.17.0" +repos: + - repo: local + hooks: + # These files are most likely copier diff rejection junks; if found, + # review them manually, fix the problem (if needed) and remove them + - id: forbidden-files + name: forbidden files + entry: found forbidden files; remove them + language: fail + files: "\\.rej$" + - repo: https://github.com/oca/maintainer-tools + rev: 71aa4caec15e8c1456b4da19e9f39aa0aa7377a9 + hooks: + # update the NOT INSTALLABLE ADDONS section above + - id: oca-update-pre-commit-excluded-addons + - repo: https://github.com/myint/autoflake + rev: v2.3.1 + hooks: + - id: autoflake + args: ["-i", "--ignore-init-module-imports"] + - repo: https://github.com/psf/black + rev: 26.1.0 + hooks: + - id: black + - repo: https://github.com/pre-commit/mirrors-prettier + rev: v4.0.0-alpha.8 + hooks: + - id: prettier + name: prettier + plugin-xml + additional_dependencies: + - "prettier@2.7.1" + - "@prettier/plugin-xml@2.2.0" + args: + - --plugin=@prettier/plugin-xml + files: \.(css|htm|html|js|json|json5|scss|toml|xml|yaml|yml)$ + - repo: https://github.com/pre-commit/mirrors-eslint + rev: v10.0.0 + hooks: + - id: eslint + verbose: true + args: + - --color + - --fix + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v6.0.0 + hooks: + - id: trailing-whitespace + # exclude autogenerated files + exclude: /README\.rst$|\.pot?$ + - id: end-of-file-fixer + # exclude autogenerated files + exclude: /README\.rst$|\.pot?$ + - id: debug-statements + - id: check-case-conflict + - id: check-docstring-first + - id: check-executables-have-shebangs + - id: check-merge-conflict + # exclude files where underlines are not distinguishable from merge conflicts + exclude: /README\.rst$|^docs/.*\.rst$ + - id: check-symlinks + - id: check-xml + - id: mixed-line-ending + args: ["--fix=lf"] + - repo: https://github.com/asottile/pyupgrade + rev: v3.21.2 + hooks: + - id: pyupgrade + args: ["--py38-plus"] + - repo: https://github.com/PyCQA/isort + rev: 7.0.0 + hooks: + - id: isort + name: isort except __init__.py + args: + - --settings=. + exclude: /__init__\.py$ + # setuptools-odoo deshabilitado temporalmente (no soporta Odoo 18.0) + # - repo: https://github.com/acsone/setuptools-odoo + # rev: 3.3.2 + # hooks: + # - id: setuptools-odoo-make-default + # - id: setuptools-odoo-get-requirements + # args: + # - --output + # - requirements.txt + # - --header + # - "# generated from manifests external_dependencies" + - repo: https://github.com/PyCQA/flake8 + rev: 7.3.0 + hooks: + - id: flake8 + name: flake8 + additional_dependencies: ["flake8-bugbear==23.12.2"] + - repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.19.1 + hooks: + - id: mypy + # do not run on test files or __init__ files (mypy does not support + # namespace packages) + exclude: (/tests/|/__init__\.py$) + additional_dependencies: + - "lxml" + - "odoo-stubs" + - "types-python-dateutil" + - "types-pytz" + - "types-requests" + - "types-setuptools" + - repo: https://github.com/PyCQA/pylint + rev: v3.1.1 + hooks: + - id: pylint + name: pylint with optional checks + args: + - --rcfile=.pylintrc + - --exit-zero + verbose: true + additional_dependencies: &pylint_deps + - pylint-odoo==9.1.2 + - id: pylint + name: pylint with mandatory checks + args: + - --rcfile=.pylintrc-mandatory + additional_dependencies: *pylint_deps diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..a2ac445 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,90 @@ +[MASTER] +load-plugins=pylint_odoo +score=n + +[ODOOLINT] +readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +manifest_required_authors=Odoo Community Association (OCA) +manifest_required_keys=license +manifest_deprecated_keys=description,active +license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3,Other OSI approved licence,Other proprietary +valid_odoo_versions=16.0,17.0,18.0 + +[MESSAGES CONTROL] +disable=all + +# This .pylintrc contains optional AND mandatory checks and is meant to be +# loaded in an IDE to have it check everything, in the hope this will make +# optional checks more visible to contributors who otherwise never look at a +# green CI pipeline. +# +# .pylintrc-mandatory will be used by pre-commit to check only mandatory +# checks. + +enable=anomalous-backslash-in-string, + api-one-deprecated, + api-one-multi-together, + assignment-from-none, + attribute-deprecated, + class-camelcase, + context-overridden, + copy-wo-api-one, + dangerous-default-value, + dangerous-view-replace-wo-priority, + development-status-allowed, + duplicate-id-csv, + duplicate-key, + duplicate-xml-fields, + duplicate-xml-record-id, + eval-referenced, + eval-used, + incoherent-interpreter-exec-perm, + license-allowed, + manifest-author-string, + manifest-deprecated-key, + manifest-required-author, + manifest-required-key, + manifest-version-format, + method-compute, + method-inverse, + method-required-super, + method-search, + missing-import-error, + missing-manifest-dependency, + openerp-exception-warning, + pointless-statement, + pointless-string-statement, + print-used, + redundant-keyword-arg, + redundant-modulename-xml, + reimported, + relative-import, + return-in-init, + rst-syntax-error, + sql-injection, + too-few-format-args, + translation-field, + translation-required, + unreachable, + use-vim-comment, + wrong-tabs-instead-of-spaces, + xml-syntax-error + # messages that do not cause the lint step to fail + consider-merging-classes-inherited, + create-user-wo-reset-password, + deprecated-module, + file-not-used, + invalid-commit, + missing-newline-extrafiles, + missing-readme, + no-utf8-coding-comment, + odoo-addons-relative-import, + old-api7-method-defined, + redefined-builtin, + too-complex, + unnecessary-utf8-coding-comment + +[REPORTS] +msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} +output-format=colorized +reports=no diff --git a/.pylintrc-mandatory b/.pylintrc-mandatory new file mode 100644 index 0000000..a413790 --- /dev/null +++ b/.pylintrc-mandatory @@ -0,0 +1,68 @@ +[MASTER] +load-plugins=pylint_odoo +score=n + +[ODOOLINT] +readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +manifest_required_authors=Odoo Community Association (OCA) +manifest_required_keys=license +manifest_deprecated_keys=description,active +license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3,Other OSI approved licence,Other proprietary +valid_odoo_versions=16.0,17.0,18.0 + +[MESSAGES CONTROL] +disable=all + +enable=anomalous-backslash-in-string, + api-one-deprecated, + api-one-multi-together, + assignment-from-none, + attribute-deprecated, + class-camelcase, + context-overridden, + copy-wo-api-one, + dangerous-default-value, + dangerous-view-replace-wo-priority, + development-status-allowed, + duplicate-id-csv, + duplicate-key, + duplicate-xml-fields, + duplicate-xml-record-id, + eval-referenced, + eval-used, + incoherent-interpreter-exec-perm, + license-allowed, + manifest-author-string, + manifest-deprecated-key, + manifest-required-author, + manifest-required-key, + manifest-version-format, + method-compute, + method-inverse, + method-required-super, + method-search, + missing-import-error, + missing-manifest-dependency, + openerp-exception-warning, + pointless-statement, + pointless-string-statement, + print-used, + redundant-keyword-arg, + redundant-modulename-xml, + reimported, + relative-import, + return-in-init, + rst-syntax-error, + sql-injection, + too-few-format-args, + translation-field, + translation-required, + unreachable, + use-vim-comment, + wrong-tabs-instead-of-spaces, + xml-syntax-error + +[REPORTS] +msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} +output-format=colorized +reports=no diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..022a4e0 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,12 @@ +{ + "recommendations": [ + "ms-python.python", + "ms-python.black-formatter", + "ms-python.isort", + "ms-python.pylint", + "ms-python.flake8", + "esbenp.prettier-vscode", + "editorconfig.editorconfig", + "odoo.odoo-snippets" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..2190a30 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,54 @@ +{ + "xml.symbols.enabled": false, + "python.languageServer": "None", + "python.linting.enabled": true, + "python.linting.pylintEnabled": true, + "python.linting.pylintArgs": ["--rcfile=.pylintrc"], + "python.linting.flake8Enabled": true, + "python.linting.flake8Args": ["--config=.flake8"], + "python.formatting.provider": "black", + "python.formatting.blackArgs": ["--config=pyproject.toml"], + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.organizeImports": "explicit" + }, + "python.sortImports.args": ["--settings-path=.isort.cfg"], + "[python]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "ms-python.black-formatter", + "editor.codeActionsOnSave": { + "source.organizeImports": "explicit" + } + }, + "[xml]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[json]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[yaml]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "files.trimTrailingWhitespace": true, + "files.insertFinalNewline": true, + "files.exclude": { + "**/__pycache__": true, + "**/*.pyc": true, + "**/*.pyo": true, + "**/.pytest_cache": true, + "**/.tox": true, + "**/.eggs": true, + "**/*.egg-info": true + }, + "search.exclude": { + "**/__pycache__": true, + "**/*.pyc": true, + "**/.pytest_cache": true, + "**/.tox": true, + "**/.eggs": true, + "**/*.egg-info": true + } +} diff --git a/INSTALACION_COMPLETA.md b/INSTALACION_COMPLETA.md new file mode 100644 index 0000000..5958077 --- /dev/null +++ b/INSTALACION_COMPLETA.md @@ -0,0 +1,215 @@ +# ✅ Instalación Completa - Herramientas de Verificación OCA + +## Resumen de la Instalación + +Se han instalado y configurado exitosamente todas las herramientas de verificación OCA estándar en este repositorio. + +## 📦 Paquetes Instalados + +Los siguientes paquetes Python han sido instalados en el entorno virtual (`.venv`): + +- ✅ **pre-commit** - Gestor de hooks de git +- ✅ **black** - Formateador de código Python +- ✅ **isort** - Ordenador de imports +- ✅ **flake8** - Linter de estilo +- ✅ **flake8-bugbear** - Plugin adicional para flake8 +- ✅ **pylint** - Analizador estático de código +- ✅ **pylint-odoo** - Plugin específico para Odoo +- ✅ **autoflake** - Elimina imports y variables no usadas +- ✅ **pyupgrade** - Actualiza sintaxis de Python + +## 📄 Archivos de Configuración Creados + +### Configuración Principal +- ✅ `.pre-commit-config.yaml` - Configuración de pre-commit con hooks OCA +- ✅ `.pylintrc` - Reglas de pylint (opcionales + mandatorias) +- ✅ `.pylintrc-mandatory` - Solo reglas mandatorias de pylint +- ✅ `.flake8` - Configuración de flake8 +- ✅ `.isort.cfg` - Configuración de isort +- ✅ `setup.cfg` - Configuración compartida +- ✅ `pyproject.toml` - Configuración de black e isort +- ✅ `.editorconfig` - Configuración de editor +- ✅ `requirements.txt` - Dependencias del proyecto + +### Herramientas y Scripts +- ✅ `Makefile` - Comandos make para tareas comunes +- ✅ `check_addon.sh` - Script de verificación rápida de addons +- ✅ `LINTERS_README.md` - Documentación de uso + +### VS Code +- ✅ `.vscode/settings.json` - Configuración actualizada +- ✅ `.vscode/extensions.json` - Extensiones recomendadas + +## 🔧 Hooks de Pre-commit Instalados + +Los siguientes hooks se ejecutarán automáticamente en cada commit: + +1. **forbidden-files** - Detecta archivos prohibidos (.rej) +2. **oca-update-pre-commit-excluded-addons** - Actualiza lista de addons excluidos +3. **autoflake** - Elimina imports/variables no usadas +4. **black** - Formatea código Python +5. **prettier** - Formatea XML, YAML, JSON +6. **eslint** - Verifica JavaScript +7. **trailing-whitespace** - Elimina espacios al final de línea +8. **end-of-file-fixer** - Asegura nueva línea al final de archivo +9. **debug-statements** - Detecta statements de debug +10. **fix-encoding-pragma** - Remueve pragmas de encoding +11. **check-case-conflict** - Detecta conflictos de mayúsculas/minúsculas +12. **check-docstring-first** - Verifica posición de docstrings +13. **check-executables-have-shebangs** - Verifica shebangs +14. **check-merge-conflict** - Detecta marcadores de conflicto +15. **check-symlinks** - Verifica enlaces simbólicos +16. **check-xml** - Verifica sintaxis XML +17. **mixed-line-ending** - Normaliza finales de línea +18. **pyupgrade** - Actualiza sintaxis Python +19. **isort** - Ordena imports (excepto __init__.py) +20. **setuptools-odoo-make-default** - Genera setup/ +21. **setuptools-odoo-get-requirements** - Actualiza requirements.txt +22. **flake8** - Verifica estilo Python +23. **mypy** - Verificación de tipos estática +24. **pylint** (opcional) - Análisis de código con exit-zero +25. **pylint** (mandatorio) - Análisis de código que falla el commit + +## 🚀 Uso Rápido + +### Comandos Make + +```bash +# Ver todos los comandos disponibles +make help + +# Ejecutar todas las verificaciones +make lint + +# Formatear código +make format + +# Verificar formato sin modificar +make check-format + +# Ejecutar flake8 +make flake8 + +# Ejecutar pylint en todos los addons +make pylint + +# Solo verificaciones mandatorias +make pylint-required + +# Limpiar archivos temporales +make clean + +# Actualizar requirements.txt +make requirements + +# Actualizar hooks a últimas versiones +make update-hooks +``` + +### Script de Verificación de Addon + +```bash +# Verificar un addon específico +./check_addon.sh account_invoice_triple_discount +``` + +### Pre-commit Manual + +```bash +# Ejecutar en todos los archivos +pre-commit run --all-files + +# Ejecutar en archivos modificados +pre-commit run + +# Ejecutar un hook específico +pre-commit run black --all-files + +# Ejecutar en archivos específicos +pre-commit run --files path/to/file.py +``` + +### Herramientas Individuales + +```bash +# Black +black . +black --check . # Solo verificar sin modificar + +# isort +isort . +isort --check-only . # Solo verificar sin modificar + +# flake8 +flake8 . +flake8 account_invoice_triple_discount/ + +# pylint +pylint --rcfile=.pylintrc account_invoice_triple_discount/ +pylint --rcfile=.pylintrc-mandatory account_invoice_triple_discount/ +``` + +## ⚙️ Configuración de VS Code + +Se recomienda instalar las siguientes extensiones: +- Python +- Black Formatter +- isort +- Pylint +- Flake8 +- Prettier +- EditorConfig +- Odoo Snippets + +Las extensiones recomendadas están definidas en `.vscode/extensions.json`. + +## 🔍 Verificación de la Instalación + +Para verificar que todo está funcionando correctamente: + +```bash +# 1. Verificar versiones instaladas +black --version +flake8 --version +pylint --version +isort --version +pre-commit --version + +# 2. Probar black en un archivo +black --check account_invoice_triple_discount/models/ + +# 3. Probar flake8 en un addon +flake8 account_invoice_triple_discount/ + +# 4. Ejecutar un hook simple +pre-commit run forbidden-files --all-files +``` + +## 📚 Documentación Adicional + +- Ver [LINTERS_README.md](LINTERS_README.md) para más detalles +- [OCA Guidelines](https://github.com/OCA/maintainer-tools) +- [pre-commit](https://pre-commit.com/) +- [pylint-odoo](https://github.com/OCA/pylint-odoo) +- [Black](https://black.readthedocs.io/) + +## 🎯 Próximos Pasos + +1. Ejecutar `make lint` para verificar el estado actual del código +2. Corregir cualquier problema encontrado +3. Hacer commit con los cambios (pre-commit se ejecutará automáticamente) +4. Si hay problemas que no se pueden resolver, revisar la configuración específica en los archivos `.pylintrc`, `.flake8`, etc. + +## ⚠️ Notas Importantes + +- Los hooks de pre-commit se ejecutarán automáticamente en cada commit +- Si necesitas hacer un commit sin verificación (NO RECOMENDADO): `git commit --no-verify` +- Los archivos `__init__.py` son excluidos de la ordenación de imports por convención OCA +- Las verificaciones de pylint tienen dos niveles: opcionales (con `--exit-zero`) y mandatorias (que fallan el commit) +- El formateo con black y prettier puede modificar archivos automáticamente + +--- + +**✅ Instalación completada exitosamente** + +Fecha: 11 de febrero de 2026 diff --git a/LINTERS_README.md b/LINTERS_README.md new file mode 100644 index 0000000..370b657 --- /dev/null +++ b/LINTERS_README.md @@ -0,0 +1,88 @@ +# Herramientas de Verificación OCA + +Este repositorio está configurado con las herramientas de verificación estándar de OCA (Odoo Community Association). + +## Herramientas Instaladas + +- **pre-commit**: Gestor de hooks de git para ejecutar verificaciones automáticas +- **black**: Formateador de código Python +- **isort**: Ordenador de imports Python +- **flake8**: Linter de estilo Python (con flake8-bugbear) +- **pylint**: Analizador de código Python con pylint-odoo +- **autoflake**: Elimina imports y variables no utilizadas +- **pyupgrade**: Actualiza sintaxis de Python a versiones más modernas +- **prettier**: Formateador para XML, YAML, JSON, etc. + +## Uso + +### Verificación Manual + +Para ejecutar las verificaciones en todos los archivos: + +```bash +pre-commit run --all-files +``` + +Para ejecutar en archivos específicos: + +```bash +pre-commit run --files path/to/file.py +``` + +### Verificación Automática + +Los hooks de pre-commit están configurados para ejecutarse automáticamente en cada commit. Si hay errores, el commit será rechazado hasta que se corrijan. + +### Ejecutar Herramientas Individuales + +```bash +# Black +black . + +# isort +isort . + +# flake8 +flake8 . + +# pylint (opcional) +pylint --rcfile=.pylintrc + +# pylint (mandatorio) +pylint --rcfile=.pylintrc-mandatory +``` + +## Configuración + +Los archivos de configuración son: + +- `.pre-commit-config.yaml`: Configuración de pre-commit hooks +- `.pylintrc`: Verificaciones opcionales y mandatorias de pylint +- `.pylintrc-mandatory`: Solo verificaciones mandatorias +- `.flake8`: Configuración de flake8 +- `.isort.cfg`: Configuración de isort +- `setup.cfg`: Configuración adicional para flake8 e isort +- `pyproject.toml`: Configuración de black e isort +- `.editorconfig`: Configuración de editor para consistencia + +## Actualización de Hooks + +Para actualizar los hooks a las últimas versiones: + +```bash +pre-commit autoupdate +``` + +## Desactivar Temporalmente + +Si necesitas hacer un commit sin ejecutar las verificaciones (NO RECOMENDADO): + +```bash +git commit --no-verify +``` + +## Más Información + +- [OCA Guidelines](https://github.com/OCA/maintainer-tools) +- [pre-commit](https://pre-commit.com/) +- [pylint-odoo](https://github.com/OCA/pylint-odoo) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ff1d463 --- /dev/null +++ b/Makefile @@ -0,0 +1,81 @@ +.PHONY: help +help: + @echo "Comandos disponibles para verificación de código OCA:" + @echo "" + @echo " make lint - Ejecutar todas las verificaciones (pre-commit)" + @echo " make format - Formatear código (black + isort)" + @echo " make check-format - Verificar formateo sin modificar" + @echo " make flake8 - Ejecutar flake8" + @echo " make pylint - Ejecutar pylint (opcionales y mandatorios)" + @echo " make pylint-required - Ejecutar solo verificaciones mandatorias" + @echo " make test - Ejecutar tests" + @echo " make install-hooks - Instalar pre-commit hooks" + @echo " make update-hooks - Actualizar pre-commit hooks" + @echo " make clean - Limpiar archivos temporales" + @echo "" + +.PHONY: install-hooks +install-hooks: + pre-commit install + +.PHONY: update-hooks +update-hooks: + pre-commit autoupdate + +.PHONY: lint +lint: + pre-commit run --all-files + +.PHONY: lint-changed +lint-changed: + pre-commit run + +.PHONY: format +format: + black . + isort . + +.PHONY: check-format +check-format: + black --check . + isort --check-only . + +.PHONY: flake8 +flake8: + flake8 . + +.PHONY: pylint +pylint: + @for addon in $$(ls -d */ | grep -v "\."); do \ + if [ -f "$$addon/__manifest__.py" ] || [ -f "$$addon/__openerp__.py" ]; then \ + echo "Checking $$addon with pylint..."; \ + pylint --rcfile=.pylintrc --exit-zero $$addon; \ + fi \ + done + +.PHONY: pylint-required +pylint-required: + @for addon in $$(ls -d */ | grep -v "\."); do \ + if [ -f "$$addon/__manifest__.py" ] || [ -f "$$addon/__openerp__.py" ]; then \ + echo "Checking $$addon with pylint (mandatory checks)..."; \ + pylint --rcfile=.pylintrc-mandatory $$addon; \ + fi \ + done + +.PHONY: test +test: + @echo "Ejecutar tests de Odoo aquí" + @echo "Por ejemplo: pytest o python -m pytest" + +.PHONY: clean +clean: + find . -type f -name '*.pyc' -delete + find . -type d -name '__pycache__' -delete + find . -type d -name '*.egg-info' -exec rm -rf {} + || true + find . -type d -name '.pytest_cache' -exec rm -rf {} + || true + find . -type d -name '.tox' -exec rm -rf {} + || true + rm -rf build/ dist/ + +.PHONY: requirements +requirements: + pre-commit run setuptools-odoo-get-requirements --all-files diff --git a/RESUMEN_INSTALACION.md b/RESUMEN_INSTALACION.md new file mode 100644 index 0000000..ad31de9 --- /dev/null +++ b/RESUMEN_INSTALACION.md @@ -0,0 +1,230 @@ +# 🎉 Instalación Completada - Linters y Pre-commit OCA + +## ✅ Resumen de la Instalación + +Se han instalado y configurado exitosamente **todas las herramientas de verificación OCA** en el repositorio. + +--- + +## 📦 Paquetes Instalados (Versiones) + +| Herramienta | Versión | Descripción | +|-------------|---------|-------------| +| **black** | 26.1.0 | Formateador de código Python | +| **isort** | 7.0.0 | Ordenador de imports | +| **flake8** | 7.3.0 | Linter de estilo Python | +| **pylint** | 4.0.4 | Analizador estático de código | +| **pylint-odoo** | 10.0.0 | Plugin específico para Odoo | +| **pre-commit** | ✅ | Gestor de hooks de git | +| **autoflake** | ✅ | Elimina código no usado | +| **pyupgrade** | ✅ | Actualiza sintaxis Python | +| **flake8-bugbear** | ✅ | Verificaciones adicionales | + +--- + +## 📁 Archivos Creados + +### Configuración de Linters +- ✅ `.pre-commit-config.yaml` - 25 hooks configurados +- ✅ `.pylintrc` - Reglas opcionales + mandatorias +- ✅ `.pylintrc-mandatory` - Solo reglas obligatorias +- ✅ `.flake8` - Configuración de flake8 +- ✅ `.isort.cfg` - Configuración de isort +- ✅ `setup.cfg` - Configuración compartida +- ✅ `pyproject.toml` - Configuración de black +- ✅ `.editorconfig` - Consistencia de editor + +### Herramientas de Desarrollo +- ✅ `Makefile` - 10+ comandos útiles +- ✅ `check_addon.sh` - Script de verificación de addons +- ✅ `requirements.txt` - Dependencias del proyecto + +### Documentación +- ✅ `LINTERS_README.md` - Guía completa de uso +- ✅ `INSTALACION_COMPLETA.md` - Documentación detallada +- ✅ `RESUMEN_INSTALACION.md` - Este archivo + +### VS Code +- ✅ `.vscode/settings.json` - Configuración actualizada +- ✅ `.vscode/extensions.json` - Extensiones recomendadas + +--- + +## 🔧 Estado de Pre-commit + +``` +✅ Pre-commit hooks instalados en .git/hooks/ +✅ 25 hooks configurados y listos +✅ Hooks actualizados a las últimas versiones +``` + +Los hooks se ejecutarán automáticamente en cada commit. + +--- + +## 🚀 Comandos Rápidos + +### Comandos más usados + +```bash +# Verificar todo el código +make lint + +# Formatear código automáticamente +make format + +# Verificar un addon específico +./check_addon.sh account_invoice_triple_discount + +# Ver todos los comandos disponibles +make help +``` + +### Pre-commit + +```bash +# Ejecutar en todos los archivos +pre-commit run --all-files + +# Ejecutar en archivos modificados +pre-commit run + +# Actualizar a últimas versiones +pre-commit autoupdate +``` + +--- + +## 📊 Hooks Configurados (25) + +### Verificaciones Básicas (7) +1. `forbidden-files` - Detecta archivos .rej +2. `oca-update-pre-commit-excluded-addons` - Actualiza exclusiones +3. `trailing-whitespace` - Elimina espacios finales +4. `end-of-file-fixer` - Nueva línea al final +5. `check-merge-conflict` - Detecta conflictos +6. `check-xml` - Valida XML +7. `mixed-line-ending` - Normaliza finales de línea + +### Formateo de Código (3) +8. `black` - Formatea Python +9. `isort` - Ordena imports +10. `prettier` - Formatea XML/YAML/JSON + +### Análisis de Código (5) +11. `flake8` - Linter Python +12. `pylint` (opcional) - Análisis con exit-zero +13. `pylint` (mandatorio) - Análisis que falla commit +14. `mypy` - Verificación de tipos +15. `eslint` - Linter JavaScript + +### Mejoras Automáticas (3) +16. `autoflake` - Elimina imports no usados +17. `pyupgrade` - Actualiza sintaxis Python (py38+) +18. `fix-encoding-pragma` - Remueve pragmas encoding + +### Verificaciones de Seguridad (4) +19. `debug-statements` - Detecta debugs olvidados +20. `check-executables-have-shebangs` - Verifica shebangs +21. `check-symlinks` - Valida enlaces simbólicos +22. `check-case-conflict` - Conflictos mayús/minús + +### Odoo Específico (3) +23. `setuptools-odoo-make-default` - Genera setup/ +24. `setuptools-odoo-get-requirements` - Actualiza requirements.txt +25. `check-docstring-first` - Verifica docstrings + +--- + +## ✅ Verificación de la Instalación + +Ejecuta estos comandos para verificar que todo funciona: + +```bash +# 1. Verificar versiones +black --version # 26.1.0 +isort --version # 7.0.0 +pylint --version # 4.0.4 +flake8 --version # 7.3.0 + +# 2. Probar en un archivo +black --check account_invoice_triple_discount/models/account_move_line.py + +# 3. Ejecutar un hook +pre-commit run forbidden-files --all-files +``` + +--- + +## 🎯 Próximos Pasos + +1. **Ejecutar verificación inicial** + ```bash + make lint + ``` + +2. **Corregir problemas encontrados** + ```bash + make format # Formatea automáticamente + ``` + +3. **Hacer commit** + ```bash + git add . + git commit -m "feat: configurar herramientas de verificación OCA" + # Pre-commit se ejecutará automáticamente + ``` + +4. **Verificar addons individuales** + ```bash + ./check_addon.sh nombre_addon + ``` + +--- + +## 📚 Documentación + +- **Guía completa**: Ver [LINTERS_README.md](LINTERS_README.md) +- **Detalles técnicos**: Ver [INSTALACION_COMPLETA.md](INSTALACION_COMPLETA.md) +- **OCA Guidelines**: https://github.com/OCA/maintainer-tools +- **pre-commit**: https://pre-commit.com/ + +--- + +## ⚙️ Configuración de VS Code + +Instala las extensiones recomendadas: +1. Abre VS Code +2. Ve a Extensions (Ctrl+Shift+X) +3. Busca "@recommended" +4. Instala todas las extensiones sugeridas + +O ejecuta: +```bash +code --install-extension ms-python.python +code --install-extension ms-python.black-formatter +code --install-extension ms-python.isort +code --install-extension ms-python.pylint +code --install-extension ms-python.flake8 +code --install-extension esbenp.prettier-vscode +code --install-extension editorconfig.editorconfig +``` + +--- + +## ⚠️ Notas Importantes + +- ✅ Los hooks se ejecutan **automáticamente** en cada commit +- ✅ Black y prettier **modifican archivos** automáticamente +- ✅ Los `__init__.py` están **excluidos** de isort (estándar OCA) +- ✅ Pylint tiene **dos niveles**: opcional (no falla) y mandatorio (falla commit) +- ⚠️ Para commit sin verificación (NO RECOMENDADO): `git commit --no-verify` + +--- + +## 🎊 ¡Todo Listo! + +El repositorio está ahora configurado con los estándares de calidad OCA. Cada commit será verificado automáticamente para mantener la calidad del código. + +**Fecha de instalación**: 11 de febrero de 2026 +**Versión de configuración**: OCA Standard (2026) diff --git a/account_invoice_triple_discount/README.rst b/account_invoice_triple_discount/README.rst new file mode 100644 index 0000000..a7f09fc --- /dev/null +++ b/account_invoice_triple_discount/README.rst @@ -0,0 +1,112 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +=============================== +Account Invoice Triple Discount +=============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:96fbed1626bb94b34b29d3287cbf750e394cae6f90526ddba1450a75f4c45b49 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoicing-lightgray.png?logo=github + :target: https://github.com/OCA/account-invoicing/tree/18.0/account_invoice_triple_discount + :alt: OCA/account-invoicing +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-invoicing-18-0/account-invoicing-18-0-account_invoice_triple_discount + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to have three successive discounts on each invoice +line. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Create a new invoice and add discounts in any of the three discount +fields given. They go in order of precedence so discount 2 will be +calculated over discount 1 and discount 3 over the result of discount 2. +For example, let's divide by two on every discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = 50% -> Amount = 150.00 + - Disc. 3 = 50% -> Amount = 75.00 + +You can also use negative values to charge instead of discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = -5% -> Amount = 315.00 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* QubiQ +* Tecnativa +* GRAP + +Contributors +------------ + +- David Vidal +- Pedro M. Baeza +- Nikul Chaudhary +- `Aion Tech `__: + + - Simone Rubino + +- Laurent Mignon +- Akim Juillerat + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/account-invoicing `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_invoice_triple_discount/__init__.py b/account_invoice_triple_discount/__init__.py new file mode 100644 index 0000000..cc6b635 --- /dev/null +++ b/account_invoice_triple_discount/__init__.py @@ -0,0 +1,2 @@ +from . import models +from .hooks import post_init_hook diff --git a/account_invoice_triple_discount/__manifest__.py b/account_invoice_triple_discount/__manifest__.py new file mode 100644 index 0000000..955fe16 --- /dev/null +++ b/account_invoice_triple_discount/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2018 QubiQ (http://www.qubiq.es) +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Account Invoice Triple Discount", + "version": "18.0.1.0.0", + "category": "Accounting & Finance", + "author": "QubiQ, Tecnativa, GRAP, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/account-invoicing", + "license": "AGPL-3", + "summary": "Manage triple discount on invoice lines", + "depends": ["account"], + "excludes": ["account_invoice_fixed_discount"], + "post_init_hook": "post_init_hook", + "data": ["report/invoice.xml", "views/account_move.xml"], + "installable": True, +} diff --git a/account_invoice_triple_discount/hooks.py b/account_invoice_triple_discount/hooks.py new file mode 100644 index 0000000..3278432 --- /dev/null +++ b/account_invoice_triple_discount/hooks.py @@ -0,0 +1,27 @@ +# Copyright 2024-Today - Sylvain Le GAL (GRAP) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +_logger = logging.getLogger(__name__) + + +def post_init_hook(env): + _logger.info("Initializing column discount1 on table account_move_line") + env.cr.execute(""" + UPDATE account_move_line + SET discount1 = discount + WHERE discount != 0 + """) + # if discounts are : 10% - 20% - 30% main discount is : 49.6 % + # if discounts are : 05% - 09% - 13% main discount is : 24.7885 % + env.cr.execute(""" + UPDATE account_move_line + SET discount = 100 * ( + 1 - ( + (100 - COALESCE(discount1, 0.0)) / 100 + * (100 - COALESCE(discount2, 0.0)) / 100 + * (100 - COALESCE(discount3, 0.0)) / 100 + ) + ); + """) diff --git a/account_invoice_triple_discount/i18n/account_invoice_triple_discount.pot b/account_invoice_triple_discount/i18n/account_invoice_triple_discount.pot new file mode 100644 index 0000000..b9ea672 --- /dev/null +++ b/account_invoice_triple_discount/i18n/account_invoice_triple_discount.pot @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +msgid "Discount (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_triple_discount_mixin__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.constraint,message:account_invoice_triple_discount.constraint_account_move_line_discount1_limit +#: model:ir.model.constraint,message:account_invoice_triple_discount.constraint_triple_discount_mixin_discount1_limit +msgid "Discount 1 must be lower than 100%." +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_triple_discount_mixin__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.constraint,message:account_invoice_triple_discount.constraint_account_move_line_discount2_limit +#: model:ir.model.constraint,message:account_invoice_triple_discount.constraint_triple_discount_mixin_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_triple_discount_mixin__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.constraint,message:account_invoice_triple_discount.constraint_account_move_line_discount3_limit +#: model:ir.model.constraint,message:account_invoice_triple_discount.constraint_triple_discount_mixin_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_triple_discount_mixin__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_triple_discount_mixin +msgid "Triple discount mixin" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/ar.po b/account_invoice_triple_discount/i18n/ar.po new file mode 100644 index 0000000..de2928f --- /dev/null +++ b/account_invoice_triple_discount/i18n/ar.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "فاتورة" + +#~ msgid "Invoice Line" +#~ msgstr "خط الفاتورة" diff --git a/account_invoice_triple_discount/i18n/bg.po b/account_invoice_triple_discount/i18n/bg.po new file mode 100644 index 0000000..6b9a5b6 --- /dev/null +++ b/account_invoice_triple_discount/i18n/bg.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/account_invoice_triple_discount/i18n/bs.po b/account_invoice_triple_discount/i18n/bs.po new file mode 100644 index 0000000..748f68a --- /dev/null +++ b/account_invoice_triple_discount/i18n/bs.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Stavka fakture" diff --git a/account_invoice_triple_discount/i18n/ca.po b/account_invoice_triple_discount/i18n/ca.po new file mode 100644 index 0000000..8b17a3f --- /dev/null +++ b/account_invoice_triple_discount/i18n/ca.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2022-08-09 10:06+0000\n" +"Last-Translator: jabelchi \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\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" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Desc.2%" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Desc.3%" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Descompte 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Descompte 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Línia factura" diff --git a/account_invoice_triple_discount/i18n/cs.po b/account_invoice_triple_discount/i18n/cs.po new file mode 100644 index 0000000..e1b876e --- /dev/null +++ b/account_invoice_triple_discount/i18n/cs.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Řádek faktury" diff --git a/account_invoice_triple_discount/i18n/de.po b/account_invoice_triple_discount/i18n/de.po new file mode 100644 index 0000000..df0bd5c --- /dev/null +++ b/account_invoice_triple_discount/i18n/de.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2018-10-11 11:45+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\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" +"X-Generator: Weblate 3.1.1\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "2. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "3. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "2. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "3. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Rechnung" + +#~ msgid "Invoice Line" +#~ msgstr "Rechnungsposition" diff --git a/account_invoice_triple_discount/i18n/el_GR.po b/account_invoice_triple_discount/i18n/el_GR.po new file mode 100644 index 0000000..b369bb3 --- /dev/null +++ b/account_invoice_triple_discount/i18n/el_GR.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Τιμολόγιο" diff --git a/account_invoice_triple_discount/i18n/en_GB.po b/account_invoice_triple_discount/i18n/en_GB.po new file mode 100644 index 0000000..99d60ee --- /dev/null +++ b/account_invoice_triple_discount/i18n/en_GB.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Invoice" + +#~ msgid "Invoice Line" +#~ msgstr "Invoice Line" diff --git a/account_invoice_triple_discount/i18n/es.po b/account_invoice_triple_discount/i18n/es.po new file mode 100644 index 0000000..3d69cd5 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2026-02-03 07:04+0000\n" +"Last-Translator: Enric Tobella \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "Desc.1 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "Desc. 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "Desc.3 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Desc.2%" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Desc.3%" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Descuento 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Descuento 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "Artículo diario" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Journal Entry" +#~ msgstr "Entrada Diaria" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/es_CR.po b/account_invoice_triple_discount/i18n/es_CR.po new file mode 100644 index 0000000..3432c41 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_CR.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/es_EC.po b/account_invoice_triple_discount/i18n/es_EC.po new file mode 100644 index 0000000..3e63cc7 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_EC.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Detalle de Factura" diff --git a/account_invoice_triple_discount/i18n/es_ES.po b/account_invoice_triple_discount/i18n/es_ES.po new file mode 100644 index 0000000..21ede01 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_ES.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Fernando Lara , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_triple_discount/i18n/es_MX.po b/account_invoice_triple_discount/i18n/es_MX.po new file mode 100644 index 0000000..c06ded4 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_MX.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/et.po b/account_invoice_triple_discount/i18n/et.po new file mode 100644 index 0000000..7ae9850 --- /dev/null +++ b/account_invoice_triple_discount/i18n/et.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Arve" + +#~ msgid "Invoice Line" +#~ msgstr "Arve rida" diff --git a/account_invoice_triple_discount/i18n/fi.po b/account_invoice_triple_discount/i18n/fi.po new file mode 100644 index 0000000..38b7e21 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fi.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Lasku" diff --git a/account_invoice_triple_discount/i18n/fr.po b/account_invoice_triple_discount/i18n/fr.po new file mode 100644 index 0000000..ff065a5 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Quentin THEURET , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Quentin THEURET , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Remise 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Remise 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Remise 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Remise 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" + +#~ msgid "Invoice Line" +#~ msgstr "Ligne de facture" diff --git a/account_invoice_triple_discount/i18n/fr_CA.po b/account_invoice_triple_discount/i18n/fr_CA.po new file mode 100644 index 0000000..97da0f7 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr_CA.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_invoice_triple_discount/i18n/fr_CH.po b/account_invoice_triple_discount/i18n/fr_CH.po new file mode 100644 index 0000000..17b0374 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr_CH.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" + +#~ msgid "Invoice Line" +#~ msgstr "Ligne de facture" diff --git a/account_invoice_triple_discount/i18n/gl.po b/account_invoice_triple_discount/i18n/gl.po new file mode 100644 index 0000000..414122c --- /dev/null +++ b/account_invoice_triple_discount/i18n/gl.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_triple_discount/i18n/hr.po b/account_invoice_triple_discount/i18n/hr.po new file mode 100644 index 0000000..97e69f8 --- /dev/null +++ b/account_invoice_triple_discount/i18n/hr.po @@ -0,0 +1,87 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-03 01:14+0000\n" +"PO-Revision-Date: 2023-04-03 13:23+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "Pop.2 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "Pop.3 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "Stavka dnevnika" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Journal Entry" +#~ msgstr "Temeljnica" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Invoice Line" +#~ msgstr "Stavka računa" diff --git a/account_invoice_triple_discount/i18n/hr_HR.po b/account_invoice_triple_discount/i18n/hr_HR.po new file mode 100644 index 0000000..2e13aeb --- /dev/null +++ b/account_invoice_triple_discount/i18n/hr_HR.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-11 23:30+0000\n" +"PO-Revision-Date: 2017-08-11 23:30+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Invoice Line" +#~ msgstr "Stavka računa" diff --git a/account_invoice_triple_discount/i18n/hu.po b/account_invoice_triple_discount/i18n/hu.po new file mode 100644 index 0000000..a826ed9 --- /dev/null +++ b/account_invoice_triple_discount/i18n/hu.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Számla" + +#~ msgid "Invoice Line" +#~ msgstr "Számlasor" diff --git a/account_invoice_triple_discount/i18n/id.po b/account_invoice_triple_discount/i18n/id.po new file mode 100644 index 0000000..3416c81 --- /dev/null +++ b/account_invoice_triple_discount/i18n/id.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktur" diff --git a/account_invoice_triple_discount/i18n/it.po b/account_invoice_triple_discount/i18n/it.po new file mode 100644 index 0000000..bdd4e02 --- /dev/null +++ b/account_invoice_triple_discount/i18n/it.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2025-02-25 15:06+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\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" +"X-Generator: Weblate 5.6.2\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "Sconto 1 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "Sconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "Sconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "Sconto 1%" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Sconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Sconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "Sconto 1%" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Sconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Sconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "Movimento contabile" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "Sconto totale" + +#~ msgid "Journal Entry" +#~ msgstr "Registrazione contabile" + +#~ msgid "Invoice" +#~ msgstr "Fattura" + +#~ msgid "Invoice Line" +#~ msgstr "Righe Fattura" diff --git a/account_invoice_triple_discount/i18n/ja.po b/account_invoice_triple_discount/i18n/ja.po new file mode 100644 index 0000000..e8e441b --- /dev/null +++ b/account_invoice_triple_discount/i18n/ja.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "請求書" + +#~ msgid "Invoice Line" +#~ msgstr "請求行" diff --git a/account_invoice_triple_discount/i18n/lt.po b/account_invoice_triple_discount/i18n/lt.po new file mode 100644 index 0000000..b945517 --- /dev/null +++ b/account_invoice_triple_discount/i18n/lt.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Sąskaita faktūra" + +#~ msgid "Invoice Line" +#~ msgstr "Sąskaitos faktūros eilutė" diff --git a/account_invoice_triple_discount/i18n/mk.po b/account_invoice_triple_discount/i18n/mk.po new file mode 100644 index 0000000..8aef4e8 --- /dev/null +++ b/account_invoice_triple_discount/i18n/mk.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" + +#~ msgid "Invoice Line" +#~ msgstr "Ставка од фактура" diff --git a/account_invoice_triple_discount/i18n/mn.po b/account_invoice_triple_discount/i18n/mn.po new file mode 100644 index 0000000..d4c6d08 --- /dev/null +++ b/account_invoice_triple_discount/i18n/mn.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Нэхэмжлэл" + +#~ msgid "Invoice Line" +#~ msgstr "Нэхэмжлэлийн мөр" diff --git a/account_invoice_triple_discount/i18n/nb.po b/account_invoice_triple_discount/i18n/nb.po new file mode 100644 index 0000000..3014dbc --- /dev/null +++ b/account_invoice_triple_discount/i18n/nb.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Fakturalinje" diff --git a/account_invoice_triple_discount/i18n/nb_NO.po b/account_invoice_triple_discount/i18n/nb_NO.po new file mode 100644 index 0000000..45652c4 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nb_NO.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Innmelding" diff --git a/account_invoice_triple_discount/i18n/nl.po b/account_invoice_triple_discount/i18n/nl.po new file mode 100644 index 0000000..a024e49 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "Invoice Line" +#~ msgstr "Factuurregel" diff --git a/account_invoice_triple_discount/i18n/nl_BE.po b/account_invoice_triple_discount/i18n/nl_BE.po new file mode 100644 index 0000000..c941aba --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl_BE.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "Invoice Line" +#~ msgstr "Factuurlijn" diff --git a/account_invoice_triple_discount/i18n/nl_NL.po b/account_invoice_triple_discount/i18n/nl_NL.po new file mode 100644 index 0000000..bcd82f4 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl_NL.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "Invoice Line" +#~ msgstr "Factuurregel" diff --git a/account_invoice_triple_discount/i18n/pl.po b/account_invoice_triple_discount/i18n/pl.po new file mode 100644 index 0000000..95de8b2 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pl.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_triple_discount/i18n/pt.po b/account_invoice_triple_discount/i18n/pt.po new file mode 100644 index 0000000..b5131eb --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Linha de fatura" diff --git a/account_invoice_triple_discount/i18n/pt_BR.po b/account_invoice_triple_discount/i18n/pt_BR.po new file mode 100644 index 0000000..ec242e0 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt_BR.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2023-07-01 22:12+0000\n" +"Last-Translator: Adriano Prado \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\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" +"X-Generator: Weblate 4.17\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "Disco.2 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "Disco.3 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Desconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Desconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Desconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Desconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "Item Diário" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Journal Entry" +#~ msgstr "Entrada Diário" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Linha da Fatura" diff --git a/account_invoice_triple_discount/i18n/pt_PT.po b/account_invoice_triple_discount/i18n/pt_PT.po new file mode 100644 index 0000000..2631342 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt_PT.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\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: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Linha da Fatura" diff --git a/account_invoice_triple_discount/i18n/ro.po b/account_invoice_triple_discount/i18n/ro.po new file mode 100644 index 0000000..86a5281 --- /dev/null +++ b/account_invoice_triple_discount/i18n/ro.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Linie factura" diff --git a/account_invoice_triple_discount/i18n/ru.po b/account_invoice_triple_discount/i18n/ru.po new file mode 100644 index 0000000..9b73fe5 --- /dev/null +++ b/account_invoice_triple_discount/i18n/ru.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# nek, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-17 01:09+0000\n" +"PO-Revision-Date: 2018-03-17 01:09+0000\n" +"Last-Translator: nek, 2018\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Скидка 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Скидка 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Скидка 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Скидка 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Счет" + +#~ msgid "Invoice Line" +#~ msgstr "Позиция счета" diff --git a/account_invoice_triple_discount/i18n/sk_SK.po b/account_invoice_triple_discount/i18n/sk_SK.po new file mode 100644 index 0000000..92b85a3 --- /dev/null +++ b/account_invoice_triple_discount/i18n/sk_SK.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/" +"sk_SK/)\n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktúra" diff --git a/account_invoice_triple_discount/i18n/sl.po b/account_invoice_triple_discount/i18n/sl.po new file mode 100644 index 0000000..0e1cd03 --- /dev/null +++ b/account_invoice_triple_discount/i18n/sl.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Invoice Line" +#~ msgstr "Postavka računa" diff --git a/account_invoice_triple_discount/i18n/sv.po b/account_invoice_triple_discount/i18n/sv.po new file mode 100644 index 0000000..2a4a1c5 --- /dev/null +++ b/account_invoice_triple_discount/i18n/sv.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2024-06-18 16:38+0000\n" +"Last-Translator: jakobkrabbe \n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\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" +"X-Generator: Weblate 4.17\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "Disc.2 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "Disc.3 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Skiva.2%" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Skiva.3%" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "Rabatt 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "Rabatt 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "Verifikat" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Journal Entry" +#~ msgstr "Verifikat" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Fakturarad" diff --git a/account_invoice_triple_discount/i18n/th.po b/account_invoice_triple_discount/i18n/th.po new file mode 100644 index 0000000..513554b --- /dev/null +++ b/account_invoice_triple_discount/i18n/th.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "ใบแจ้งหนี้" diff --git a/account_invoice_triple_discount/i18n/tr.po b/account_invoice_triple_discount/i18n/tr.po new file mode 100644 index 0000000..095e184 --- /dev/null +++ b/account_invoice_triple_discount/i18n/tr.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2025-09-04 11:42+0000\n" +"Last-Translator: Tamer Sezgin \n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\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" +"X-Generator: Weblate 5.10.4\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "İnd.1 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "İnd.2 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "İnd.3 %" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "İnd.1%" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "İnd.2%" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "İnd.3%" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "İndirim 1 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "İndirim 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "İndirim 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "Yevmiye Kalemi" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "Toplam indirim" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Fatura kalemi" diff --git a/account_invoice_triple_discount/i18n/tr_TR.po b/account_invoice_triple_discount/i18n/tr_TR.po new file mode 100644 index 0000000..ad1f026 --- /dev/null +++ b/account_invoice_triple_discount/i18n/tr_TR.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Fatura hizası" diff --git a/account_invoice_triple_discount/i18n/zh_CN.po b/account_invoice_triple_discount/i18n/zh_CN.po new file mode 100644 index 0000000..ece9daf --- /dev/null +++ b/account_invoice_triple_discount/i18n/zh_CN.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# 三 张 <731414193@qq.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: 三 张 <731414193@qq.com>, 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "发票" + +#~ msgid "Invoice Line" +#~ msgstr "发票明细" diff --git a/account_invoice_triple_discount/i18n/zh_TW.po b/account_invoice_triple_discount/i18n/zh_TW.po new file mode 100644 index 0000000..22cf8ea --- /dev/null +++ b/account_invoice_triple_discount/i18n/zh_TW.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.1 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.1%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount1 +msgid "Discount 1 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Total discount" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "發票" + +#~ msgid "Invoice Line" +#~ msgstr "發票明細" diff --git a/account_invoice_triple_discount/models/__init__.py b/account_invoice_triple_discount/models/__init__.py new file mode 100644 index 0000000..00cefd5 --- /dev/null +++ b/account_invoice_triple_discount/models/__init__.py @@ -0,0 +1,2 @@ +from . import triple_discount_mixin +from . import account_move_line diff --git a/account_invoice_triple_discount/models/account_move_line.py b/account_invoice_triple_discount/models/account_move_line.py new file mode 100644 index 0000000..617a1b3 --- /dev/null +++ b/account_invoice_triple_discount/models/account_move_line.py @@ -0,0 +1,10 @@ +# Copyright 2020 ACSONE SA/NV +# Copyright 2023 Simone Rubino - Aion Tech +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class AccountMoveLine(models.Model): + _name = "account.move.line" + _inherit = ["account.move.line", "triple.discount.mixin"] diff --git a/account_invoice_triple_discount/models/triple_discount_mixin.py b/account_invoice_triple_discount/models/triple_discount_mixin.py new file mode 100644 index 0000000..8cd8438 --- /dev/null +++ b/account_invoice_triple_discount/models/triple_discount_mixin.py @@ -0,0 +1,93 @@ +# Copyright 2019 Tecnativa - David Vidal +# Copyright 2019 Tecnativa - Pedro M. Baeza +# Copyright 2020 ACSONE SA/NV +# Copyright 2023 Simone Rubino - Aion Tech +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import functools + +from odoo import api +from odoo import fields +from odoo import models + + +class TripleDiscountMixin(models.AbstractModel): + _name = "triple.discount.mixin" + _description = "Triple discount mixin" + + # core discount field is now a computed field + # based on the 3 discounts defined below. + # the digits limitation is removed, to make + # the computation of the subtotal exact. + # For exemple, if discounts are 05%, 09% and 13% + # the main discount is 24.7885 % (and not 24.79) + discount = fields.Float( + string="Total discount", + compute="_compute_discount", + store=True, + readonly=True, + digits=None, + ) + discount1 = fields.Float(string="Discount 1 (%)", digits="Discount") + + discount2 = fields.Float(string="Discount 2 (%)", digits="Discount") + + discount3 = fields.Float(string="Discount 3 (%)", digits="Discount") + + _sql_constraints = [ + ( + "discount1_limit", + "CHECK (discount1 <= 100.0)", + "Discount 1 must be lower than 100%.", + ), + ( + "discount2_limit", + "CHECK (discount2 <= 100.0)", + "Discount 2 must be lower than 100%.", + ), + ( + "discount3_limit", + "CHECK (discount3 <= 100.0)", + "Discount 3 must be lower than 100%.", + ), + ] + + @api.depends(lambda self: self._get_multiple_discount_field_names()) + def _compute_discount(self): + for line in self: + line.discount = line._get_aggregated_multiple_discounts( + [line[x] for x in line._get_multiple_discount_field_names()] + ) + + def _get_aggregated_multiple_discounts(self, discounts): + """ + Returns the aggregate discount corresponding to any number of discounts. + For exemple, if discounts is [11.0, 22.0, 33.0] + It will return 46.5114 + """ + discount_values = [] + for discount in discounts: + discount_values.append(1 - (discount or 0.0) / 100.0) + aggregated_discount = ( + 1 - functools.reduce((lambda x, y: x * y), discount_values) + ) * 100 + return aggregated_discount + + @api.model + def _get_multiple_discount_field_names(self): + return ["discount1", "discount2", "discount3"] + + @api.model_create_multi + def create(self, vals_list): + for vals in vals_list: + if vals.get("discount") and not any( + vals.get(field) for field in self._get_multiple_discount_field_names() + ): + vals["discount1"] = vals.pop("discount") + return super().create(vals_list) + + def write(self, vals): + discount_fields = self._get_multiple_discount_field_names() + if "discount" in vals: + vals["discount1"] = vals.pop("discount") + vals.update({field: 0 for field in discount_fields[1:]}) + return super().write(vals) diff --git a/account_invoice_triple_discount/pyproject.toml b/account_invoice_triple_discount/pyproject.toml new file mode 100644 index 0000000..4231d0c --- /dev/null +++ b/account_invoice_triple_discount/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/account_invoice_triple_discount/readme/CONTRIBUTORS.md b/account_invoice_triple_discount/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..8d56e12 --- /dev/null +++ b/account_invoice_triple_discount/readme/CONTRIBUTORS.md @@ -0,0 +1,7 @@ +- David Vidal \<\> +- Pedro M. Baeza \<\> +- Nikul Chaudhary \<\> +- [Aion Tech](https://aiontech.company/): + - Simone Rubino \<\> +- Laurent Mignon \<\> +- Akim Juillerat \<\> diff --git a/account_invoice_triple_discount/readme/DESCRIPTION.md b/account_invoice_triple_discount/readme/DESCRIPTION.md new file mode 100644 index 0000000..e19f8c3 --- /dev/null +++ b/account_invoice_triple_discount/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +This module allows to have three successive discounts on each invoice +line. diff --git a/account_invoice_triple_discount/readme/USAGE.md b/account_invoice_triple_discount/readme/USAGE.md new file mode 100644 index 0000000..f2986a9 --- /dev/null +++ b/account_invoice_triple_discount/readme/USAGE.md @@ -0,0 +1,17 @@ +Create a new invoice and add discounts in any of the three discount +fields given. They go in order of precedence so discount 2 will be +calculated over discount 1 and discount 3 over the result of discount 2. +For example, let's divide by two on every discount: + +Unit price: 600.00 -\> + +> - Disc. 1 = 50% -\> Amount = 300.00 +> - Disc. 2 = 50% -\> Amount = 150.00 +> - Disc. 3 = 50% -\> Amount = 75.00 + +You can also use negative values to charge instead of discount: + +Unit price: 600.00 -\> + +> - Disc. 1 = 50% -\> Amount = 300.00 +> - Disc. 2 = -5% -\> Amount = 315.00 diff --git a/account_invoice_triple_discount/report/invoice.xml b/account_invoice_triple_discount/report/invoice.xml new file mode 100644 index 0000000..8010d83 --- /dev/null +++ b/account_invoice_triple_discount/report/invoice.xml @@ -0,0 +1,61 @@ + + + + diff --git a/account_invoice_triple_discount/static/description/icon.png b/account_invoice_triple_discount/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/account_invoice_triple_discount/static/description/icon.png differ diff --git a/account_invoice_triple_discount/static/description/index.html b/account_invoice_triple_discount/static/description/index.html new file mode 100644 index 0000000..f3eac73 --- /dev/null +++ b/account_invoice_triple_discount/static/description/index.html @@ -0,0 +1,464 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Account Invoice Triple Discount

+ +

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

+

This module allows to have three successive discounts on each invoice +line.

+

Table of contents

+ +
+

Usage

+

Create a new invoice and add discounts in any of the three discount +fields given. They go in order of precedence so discount 2 will be +calculated over discount 1 and discount 3 over the result of discount 2. +For example, let’s divide by two on every discount:

+

Unit price: 600.00 ->

+
+
    +
  • Disc. 1 = 50% -> Amount = 300.00
  • +
  • Disc. 2 = 50% -> Amount = 150.00
  • +
  • Disc. 3 = 50% -> Amount = 75.00
  • +
+
+

You can also use negative values to charge instead of discount:

+

Unit price: 600.00 ->

+
+
    +
  • Disc. 1 = 50% -> Amount = 300.00
  • +
  • Disc. 2 = -5% -> Amount = 315.00
  • +
+
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • QubiQ
  • +
  • Tecnativa
  • +
  • GRAP
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/account-invoicing project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+
+ + diff --git a/account_invoice_triple_discount/tests/__init__.py b/account_invoice_triple_discount/tests/__init__.py new file mode 100644 index 0000000..354de27 --- /dev/null +++ b/account_invoice_triple_discount/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_invoice_triple_discount diff --git a/account_invoice_triple_discount/tests/test_invoice_triple_discount.py b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py new file mode 100644 index 0000000..0831044 --- /dev/null +++ b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py @@ -0,0 +1,244 @@ +# Copyright 2017 Tecnativa - David Vidal +# Copyright 2023 Simone Rubino - Aion Tech +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests import Form + +from odoo.addons.base.tests.common import BaseCommon + + +class TestInvoiceTripleDiscount(BaseCommon): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.Account = cls.env["account.account"] + cls.AccountMove = cls.env["account.move"] + cls.AccountMoveLine = cls.env["account.move.line"] + cls.AccountTax = cls.env["account.tax"] + cls.Partner = cls.env["res.partner"] + cls.Journal = cls.env["account.journal"] + + cls.tax = cls.AccountTax.create( + { + "name": "TAX 15%", + "amount_type": "percent", + "type_tax_use": "purchase", + "amount": 15.0, + "country_id": cls.env.ref("base.us").id, + } + ) + cls.account = cls.Account.create( + { + "name": "Test account", + "code": "TEST", + "account_type": "asset_receivable", + "reconcile": True, + } + ) + cls.sale_journal = cls.Journal.search([("type", "=", "sale")], limit=1) + + def create_simple_invoice(self, amount): + invoice_form = Form( + self.AccountMove.with_context( + default_move_type="out_invoice", + default_journal_id=self.sale_journal.id, + ) + ) + invoice_form.partner_id = self.partner + + with invoice_form.invoice_line_ids.new() as line_form: + line_form.name = "Line 1" + line_form.quantity = 1 + line_form.price_unit = amount + line_form.tax_ids.clear() + line_form.tax_ids.add(self.tax) + + invoice = invoice_form.save() + return invoice + + def test_01_discounts(self): + """Tests multiple discounts in line with taxes""" + invoice = self.create_simple_invoice(200) + + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount1 = 50.0 + invoice_form.save() + + invoice_line = invoice.invoice_line_ids[0] + + # Adds a first discount + self.assertEqual(invoice.amount_total, 115.0) + + # Adds a second discount over the price calculated before + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount2 = 40.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 69.0) + + # Adds a third discount over the price calculated before + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount3 = 50.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 34.5) + + # Deletes first discount + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount1 = 0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 69) + + # Charge 5% over price: + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount1 = -5 + invoice_form.save() + self.assertEqual(invoice.amount_total, 72.45) + + self.assertEqual(invoice_line.price_unit, 200) + + def test_02_discounts_multiple_lines(self): + invoice = self.create_simple_invoice(200) + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.new() as line_form: + line_form.name = "Line 2" + line_form.quantity = 1 + line_form.price_unit = 500 + line_form.tax_ids.clear() + invoice_form.save() + + invoice_line2 = invoice.invoice_line_ids[1] + self.assertEqual(invoice_line2.price_subtotal, 500.0) + + with invoice_form.invoice_line_ids.edit(1) as line_form: + line_form.discount3 = 50.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 480.0) + + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount1 = 50.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 365.0) + + def test_03_discounts_decimals_price(self): + """ + Tests discount with decimals price + causing a round up after discount + """ + invoice = self.create_simple_invoice(0) + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.name = "Line Decimals" + line_form.quantity = 9950 + line_form.price_unit = 0.14 + line_form.tax_ids.clear() + invoice_form.save() + + invoice_line1 = invoice.invoice_line_ids[0] + + self.assertEqual(invoice_line1.price_subtotal, 1393.0) + + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount1 = 15.0 + invoice_form.save() + + self.assertEqual(invoice_line1.price_subtotal, 1184.05) + + def test_04_discounts_decimals_tax(self): + """ + Tests amount tax with discount + """ + invoice = self.create_simple_invoice(0) + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.name = "Line Decimals" + line_form.quantity = 9950 + line_form.price_unit = 0.14 + line_form.discount1 = 0 + line_form.discount2 = 0 + invoice_form.save() + + self.assertEqual(invoice.amount_tax, 208.95) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount1 = 15.0 + invoice_form.save() + + def test_06_round_discount(self): + """Discount value is rounded correctly""" + invoice = self.create_simple_invoice(0) + invoice_line = invoice.invoice_line_ids[0] + invoice_line.discount1 = 100 + self.assertEqual(invoice_line.discount1, 100) + self.assertEqual(invoice_line.discount, 100) + + def test_07_round_tax_discount(self): + """Discount value is rounded correctly when taxes change""" + invoice = self.create_simple_invoice(0) + invoice_line = invoice.invoice_line_ids[0] + invoice_line.discount1 = 100 + invoice_line.tax_ids = False + self.assertEqual(invoice_line.discount1, 100) + self.assertEqual(invoice_line.discount, 100) + + def test_09_create_with_main_discount(self): + """ + Tests if creating a invoice line with main discount field + set correctly discount1, discount2 and discount3 + """ + invoice = self.create_simple_invoice(0) + + invoice_line2 = self.AccountMoveLine.create( + { + "move_id": invoice.id, + "name": "Line With Main Discount", + "quantity": 1, + "price_unit": 1000, + "discount": 10, + "tax_ids": [], + } + ) + + # 1000 * 0.9 + self.assertEqual(invoice_line2.price_subtotal, 900.0) + self.assertEqual(invoice_line2.discount1, 10.0) + self.assertEqual(invoice_line2.discount2, 0.0) + self.assertEqual(invoice_line2.discount3, 0.0) + + def test_10_create_invoice_with_discounts(self): + invoice = self.env["account.move"].create( + { + "partner_id": self.partner.id, + "move_type": "out_invoice", + "invoice_line_ids": [ + ( + 0, + 0, + { + "name": "Line 1", + "quantity": 1, + "price_unit": 100, + "discount1": 30, + "discount2": 20, + "discount3": 10, + }, + ) + ], + } + ) + invoice_line1 = invoice.invoice_line_ids[0] + self.assertEqual(invoice_line1.discount1, 30.0) + self.assertEqual(invoice_line1.discount2, 20.0) + self.assertEqual(invoice_line1.discount3, 10.0) + + def test_tax_compute_with_lock_date(self): + # Check that the tax computation works even if the lock date is set + invoice = self.create_simple_invoice(0) + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.name = "Line Decimals" + line_form.quantity = 9950 + line_form.price_unit = 0.14 + line_form.discount1 = 10 + line_form.discount2 = 20 + invoice_form.save() + invoice.action_post() + self.env.user.company_id.fiscalyear_lock_date = "2000-01-01" diff --git a/account_invoice_triple_discount/views/account_move.xml b/account_invoice_triple_discount/views/account_move.xml new file mode 100644 index 0000000..5f5a051 --- /dev/null +++ b/account_invoice_triple_discount/views/account_move.xml @@ -0,0 +1,39 @@ + + + + account.invoice.triple.discount.form + account.move + + + + hide + Total discount + + + + + + + + Total discount + + + + + + + + + diff --git a/check_addon.sh b/check_addon.sh new file mode 100755 index 0000000..5f9c63c --- /dev/null +++ b/check_addon.sh @@ -0,0 +1,52 @@ +#!/bin/bash +# Script para verificar rápidamente un addon específico + +set -e + +if [ -z "$1" ]; then + echo "Uso: $0 " + echo "Ejemplo: $0 account_invoice_triple_discount" + exit 1 +fi + +ADDON_NAME=$1 +ADDON_PATH="./$ADDON_NAME" + +if [ ! -d "$ADDON_PATH" ]; then + echo "Error: El addon '$ADDON_NAME' no existe en este directorio" + exit 1 +fi + +if [ ! -f "$ADDON_PATH/__manifest__.py" ] && [ ! -f "$ADDON_PATH/__openerp__.py" ]; then + echo "Error: '$ADDON_NAME' no parece ser un addon válido de Odoo" + exit 1 +fi + +echo "==========================================" +echo "Verificando addon: $ADDON_NAME" +echo "==========================================" +echo "" + +echo "1. Ejecutando black..." +black --check "$ADDON_PATH" || (echo "❌ Black encontró problemas de formato" && black "$ADDON_PATH" && echo "✅ Formateado con black") + +echo "" +echo "2. Ejecutando isort..." +isort --check-only "$ADDON_PATH" || (echo "❌ isort encontró problemas" && isort "$ADDON_PATH" && echo "✅ Imports ordenados con isort") + +echo "" +echo "3. Ejecutando flake8..." +flake8 "$ADDON_PATH" && echo "✅ flake8 pasó correctamente" || echo "❌ flake8 encontró problemas" + +echo "" +echo "4. Ejecutando pylint (checks mandatorios)..." +pylint --rcfile=.pylintrc-mandatory "$ADDON_PATH" && echo "✅ pylint mandatorio pasó correctamente" || echo "❌ pylint mandatorio encontró problemas" + +echo "" +echo "5. Ejecutando pylint (checks opcionales)..." +pylint --rcfile=.pylintrc --exit-zero "$ADDON_PATH" + +echo "" +echo "==========================================" +echo "Verificación completa de $ADDON_NAME" +echo "==========================================" diff --git a/oca_dependencies.txt b/oca_dependencies.txt new file mode 100644 index 0000000..1c06c0a --- /dev/null +++ b/oca_dependencies.txt @@ -0,0 +1,4 @@ +account-invoicing +product-attribute +purchase-workflow +sale-workflow diff --git a/product_get_price_helper/README.rst b/product_get_price_helper/README.rst new file mode 100644 index 0000000..0c2ef4b --- /dev/null +++ b/product_get_price_helper/README.rst @@ -0,0 +1,90 @@ +======================== +Product Get Price Helper +======================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:5fb33150c2c1ee21fd7bc337113f150dccba97ee06c9dfd5a01d2f17ce567509 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fproduct--attribute-lightgray.png?logo=github + :target: https://github.com/OCA/product-attribute/tree/18.0/product_get_price_helper + :alt: OCA/product-attribute +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/product-attribute-18-0/product-attribute-18-0-product_get_price_helper + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/product-attribute&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Adds a helper function \_get_price() on product.product to compute the +product price based on pricelist, fiscal position, company and date. + +The method returns a dict such as: + +.. code:: python + + { + "value": 600.0, + "tax_included": True, + "discount": 20.0, + "original_value": 750.0, + } + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* ACSONE SA/NV + +Contributors +------------ + +- Sébastien BEAU +- Simone Orsi +- Quentin Groulard + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/product-attribute `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/product_get_price_helper/__init__.py b/product_get_price_helper/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/product_get_price_helper/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/product_get_price_helper/__manifest__.py b/product_get_price_helper/__manifest__.py new file mode 100644 index 0000000..aafe61c --- /dev/null +++ b/product_get_price_helper/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Product Get Price Helper", + "summary": """ + This module provides a helper function to compute product prices.""", + "version": "18.0.1.1.0", + "license": "AGPL-3", + "author": "ACSONE SA/NV,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/product-attribute", + "depends": ["account", "product"], + "data": [], + "demo": ["demo/account.xml", "demo/pricelist.xml"], +} diff --git a/product_get_price_helper/demo/account.xml b/product_get_price_helper/demo/account.xml new file mode 100644 index 0000000..ed91dd4 --- /dev/null +++ b/product_get_price_helper/demo/account.xml @@ -0,0 +1,36 @@ + + + + Tax inc demo + + percent + sale + + + + + Tax exc demo + + percent + sale + + + + Default + + + + + + Business + + + + + + + + + + + diff --git a/product_get_price_helper/demo/pricelist.xml b/product_get_price_helper/demo/pricelist.xml new file mode 100644 index 0000000..e3f3cd4 --- /dev/null +++ b/product_get_price_helper/demo/pricelist.xml @@ -0,0 +1,29 @@ + + + + + Business Pricelist + + + + + list_price + + Default Business Pricelist Line + + percentage + + + + + + + diff --git a/product_get_price_helper/i18n/it.po b/product_get_price_helper/i18n/it.po new file mode 100644 index 0000000..f013fca --- /dev/null +++ b/product_get_price_helper/i18n/it.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_get_price_helper +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-03-24 10:06+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\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" +"X-Generator: Weblate 5.10.2\n" + +#. module: product_get_price_helper +#: model:account.fiscal.position,name:product_get_price_helper.fiscal_position_1 +msgid "Business" +msgstr "Impresa" + +#. module: product_get_price_helper +#: model:product.pricelist,name:product_get_price_helper.pricelist_1 +msgid "Business Pricelist" +msgstr "Listino commerciale" + +#. module: product_get_price_helper +#: model:account.fiscal.position,name:product_get_price_helper.fiscal_position_0 +msgid "Default" +msgstr "Predefinito" + +#. module: product_get_price_helper +#: model:ir.model,name:product_get_price_helper.model_product_product +msgid "Product Variant" +msgstr "Variante prodotto" + +#. module: product_get_price_helper +#: model:account.tax,name:product_get_price_helper.tax_2 +msgid "Tax exc demo" +msgstr "Demo imposta esclusa" + +#. module: product_get_price_helper +#: model:account.tax,name:product_get_price_helper.tax_1 +msgid "Tax inc demo" +msgstr "Demo imposta inclusa" diff --git a/product_get_price_helper/i18n/product_get_price_helper.pot b/product_get_price_helper/i18n/product_get_price_helper.pot new file mode 100644 index 0000000..a271d94 --- /dev/null +++ b/product_get_price_helper/i18n/product_get_price_helper.pot @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_get_price_helper +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: product_get_price_helper +#: model:account.fiscal.position,name:product_get_price_helper.fiscal_position_1 +msgid "Business" +msgstr "" + +#. module: product_get_price_helper +#: model:product.pricelist,name:product_get_price_helper.pricelist_1 +msgid "Business Pricelist" +msgstr "" + +#. module: product_get_price_helper +#: model:account.fiscal.position,name:product_get_price_helper.fiscal_position_0 +msgid "Default" +msgstr "" + +#. module: product_get_price_helper +#: model:ir.model,name:product_get_price_helper.model_product_product +msgid "Product Variant" +msgstr "" + +#. module: product_get_price_helper +#: model:account.tax,name:product_get_price_helper.tax_2 +msgid "Tax exc demo" +msgstr "" + +#. module: product_get_price_helper +#: model:account.tax,name:product_get_price_helper.tax_1 +msgid "Tax inc demo" +msgstr "" diff --git a/product_get_price_helper/models/__init__.py b/product_get_price_helper/models/__init__.py new file mode 100644 index 0000000..5c74c8c --- /dev/null +++ b/product_get_price_helper/models/__init__.py @@ -0,0 +1 @@ +from . import product_product diff --git a/product_get_price_helper/models/product_product.py b/product_get_price_helper/models/product_product.py new file mode 100644 index 0000000..9b0697c --- /dev/null +++ b/product_get_price_helper/models/product_product.py @@ -0,0 +1,120 @@ +# Copyright 2017 Akretion (http://www.akretion.com). +# @author Sébastien BEAU +# Copyright 2021 Camptocamp (http://www.camptocamp.com). +# @author Simone Orsi +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models +from odoo.tools import float_compare +from odoo.tools import float_is_zero + +from ..utils import float_round + + +class ProductProduct(models.Model): + _inherit = "product.product" + + def _get_price( + self, + qty=1.0, + pricelist=None, + fposition=None, + company=None, + date=None, + price_unit=None, + ): + """Computes the product prices + + :param qty: The product quantity, used to apply pricelist rules. + :param pricelist: Optional. Get prices for a specific pricelist. + :param fposition: Optional. Apply fiscal position to product taxes. + :param company: Optional. + :param date: Optional. + + :returns: dict with the following keys: + + The product unitary price + True if product taxes are included in . + + If the pricelist.discount_policy is "without_discount": + The original price (before pricelist is applied). + The discounted percentage. + """ + self.ensure_one() + AccountTax = self.env["account.tax"] + # Apply company + product = self.with_company(company) if company else self + company = company or self.env.company + # Always filter taxes by the company + taxes = product.taxes_id.filtered(lambda tax: tax.company_id == company) + # Apply fiscal position + taxes = fposition.map_tax(taxes) if fposition else taxes + # Set context. Some of the methods used here depend on these values + product_context = dict( + self.env.context, + quantity=qty, + pricelist=pricelist.id if pricelist else None, + fiscal_position=fposition, + date=date, + ) + product = product.with_context(**product_context) + pricelist = pricelist.with_context(**product_context) if pricelist else None + if price_unit is None: + price_unit = ( + pricelist._get_product_price(product, qty, date=date) + if pricelist + else product.lst_price + ) + price_unit = AccountTax._fix_tax_included_price_company( + price_unit, product.taxes_id, taxes, company + ) + price_dp = self.env["decimal.precision"].precision_get("Product Price") + price_unit = float_round(price_unit, price_dp) + res = { + "value": price_unit, + "tax_included": any(tax.price_include for tax in taxes), + # Default values in case price.discount_policy != "without_discount" + "original_value": price_unit, + "discount": 0.0, + } + if pricelist: + rule_id = pricelist._get_product_rule(product, qty, date=date) + pl_item = self.env["product.pricelist.item"].browse(rule_id) + if not pl_item.exists(): + return res + original_price_unit = product.lst_price + if not pl_item._show_discount(): + # If the pricelist does not show the discount, we return the price as is + if float_is_zero(original_price_unit, precision_digits=price_dp): + res["original_value"] = 0.0 + return res + # Get the price rule + price_unit, _ = pricelist._get_product_price_rule(product, qty, date=date) + # Get the price before applying the pricelist + price_dp = self.env["decimal.precision"].precision_get("Product Price") + # Compute discount + if not float_is_zero( + original_price_unit, precision_digits=price_dp + ) and float_compare( + original_price_unit, price_unit, precision_digits=price_dp + ): + discount = ( + (original_price_unit - price_unit) / original_price_unit * 100 + ) + # Apply the right precision on discount + discount_dp = self.env["decimal.precision"].precision_get("Discount") + discount = float_round(discount, discount_dp) + else: + discount = 0.00 + # Compute prices + original_price_unit = AccountTax._fix_tax_included_price_company( + original_price_unit, product.taxes_id, taxes, company + ) + original_price_unit = float_round(original_price_unit, price_dp) + res.update( + { + "original_value": original_price_unit, + "discount": discount, + } + ) + return res diff --git a/product_get_price_helper/pyproject.toml b/product_get_price_helper/pyproject.toml new file mode 100644 index 0000000..4231d0c --- /dev/null +++ b/product_get_price_helper/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/product_get_price_helper/readme/CONTRIBUTORS.md b/product_get_price_helper/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..816b23b --- /dev/null +++ b/product_get_price_helper/readme/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +- Sébastien BEAU \<\> +- Simone Orsi \<\> +- Quentin Groulard \<\> diff --git a/product_get_price_helper/readme/DESCRIPTION.md b/product_get_price_helper/readme/DESCRIPTION.md new file mode 100644 index 0000000..2eafbe6 --- /dev/null +++ b/product_get_price_helper/readme/DESCRIPTION.md @@ -0,0 +1,13 @@ +Adds a helper function \_get_price() on product.product to compute the +product price based on pricelist, fiscal position, company and date. + +The method returns a dict such as: + +``` python +{ + "value": 600.0, + "tax_included": True, + "discount": 20.0, + "original_value": 750.0, +} +``` diff --git a/product_get_price_helper/static/description/icon.png b/product_get_price_helper/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/product_get_price_helper/static/description/icon.png differ diff --git a/product_get_price_helper/static/description/index.html b/product_get_price_helper/static/description/index.html new file mode 100644 index 0000000..cc91949 --- /dev/null +++ b/product_get_price_helper/static/description/index.html @@ -0,0 +1,435 @@ + + + + + +Product Get Price Helper + + + +
+

Product Get Price Helper

+ + +

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

+

Adds a helper function _get_price() on product.product to compute the +product price based on pricelist, fiscal position, company and date.

+

The method returns a dict such as:

+
+{
+    "value": 600.0,
+    "tax_included": True,
+    "discount": 20.0,
+    "original_value": 750.0,
+}
+
+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • ACSONE SA/NV
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/product-attribute project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/product_get_price_helper/tests/__init__.py b/product_get_price_helper/tests/__init__.py new file mode 100644 index 0000000..626580e --- /dev/null +++ b/product_get_price_helper/tests/__init__.py @@ -0,0 +1 @@ +from . import test_product diff --git a/product_get_price_helper/tests/test_product.py b/product_get_price_helper/tests/test_product.py new file mode 100644 index 0000000..a177bc6 --- /dev/null +++ b/product_get_price_helper/tests/test_product.py @@ -0,0 +1,275 @@ +# Copyright 2017 Akretion (http://www.akretion.com). +# @author Benoît GUILLOT +# Copyright 2025 Camptocamp (http://www.camptocamp.com). +# @author Simone Orsi +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from unittest import mock + +from odoo.tests import TransactionCase + + +class ProductCase(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.template = cls.env.ref("product.product_product_4_product_template") + cls.variant = cls.env.ref("product.product_product_4b") + cls.template.taxes_id = cls.env.ref("product_get_price_helper.tax_1") + cls.env.user.company_id.currency_id = cls.env.ref("base.USD") + cls.base_pricelist = cls.env["product.pricelist"].create( + {"name": "Base Pricelist", "currency_id": cls.env.ref("base.USD").id} + ) + cls.base_pricelist.currency_id = cls.env.ref("base.USD") + cls.variant.currency_id = cls.env.ref("base.USD") + + def test_product_simple_get_price(self): + self.variant.taxes_id.price_include = True + self.assertEqual( + self.variant._get_price(), + { + "discount": 0.0, + "original_value": 750.0, + "tax_included": True, + "value": 750.0, + }, + ) + self.variant.taxes_id.price_include = False + self.assertEqual( + self.variant._get_price(), + { + "discount": 0.0, + "original_value": 750.0, + "tax_included": False, + "value": 750.0, + }, + ) + + def test_product_price_rounding(self): + # Odony example: https://gist.github.com/odony/5269a695545902e7e23e761e20a9ec8c + self.env["product.pricelist.item"].create( + { + "pricelist_id": self.base_pricelist.id, + "product_id": self.variant.id, + "base": "list_price", + "applied_on": "0_product_variant", + "compute_price": "percentage", + "percent_price": 50, + } + ) + self.variant.list_price = 423.4 + self.assertEqual( + self.variant._get_price(pricelist=self.base_pricelist)["value"], 211.70 + ) + + def test_product_get_price(self): + # self.base_pricelist doesn't define a tax mapping. We are tax included + fiscal_position_fr = self.env.ref("product_get_price_helper.fiscal_position_0") + self.variant.taxes_id.price_include = True + price = self.variant._get_price( + pricelist=self.base_pricelist, fposition=fiscal_position_fr + ) + self.assertDictEqual( + price, + { + "discount": 0.0, + "original_value": 750.0, + "tax_included": True, + "value": 750.0, + }, + ) + # promotion price list define a discount of 20% on all product + promotion_price_list = self.env.ref("product_get_price_helper.pricelist_1") + price = self.variant._get_price( + pricelist=promotion_price_list, fposition=fiscal_position_fr + ) + self.assertDictEqual( + price, + { + "discount": 0.0, + "original_value": 600.0, + "tax_included": True, + "value": 600.0, + }, + ) + # use a fiscal position defining a mapping from tax included to tax + # excluded + tax_exclude_fiscal_position = self.env.ref( + "product_get_price_helper.fiscal_position_1" + ) + price = self.variant._get_price( + pricelist=self.base_pricelist, fposition=tax_exclude_fiscal_position + ) + self.assertDictEqual( + price, + { + "discount": 0.0, + "original_value": 652.17, + "tax_included": False, + "value": 652.17, + }, + ) + price = self.variant._get_price( + pricelist=promotion_price_list, fposition=tax_exclude_fiscal_position + ) + self.assertDictEqual( + price, + { + "discount": 0.0, + "original_value": 521.74, + "tax_included": False, + "value": 521.74, + }, + ) + + def test_product_get_price_zero(self): + # Test that discount calculation does not fail if original price is 0 + self.variant.list_price = 0 + self.env["product.pricelist.item"].create( + { + "product_id": self.variant.id, + "pricelist_id": self.base_pricelist.id, + "fixed_price": 10, + } + ) + fiscal_position_fr = self.env.ref("product_get_price_helper.fiscal_position_0") + self.variant.taxes_id.price_include = True + price = self.variant.with_context(foo=1)._get_price( + pricelist=self.base_pricelist, fposition=fiscal_position_fr + ) + self.assertDictEqual( + price, + { + "discount": 0.0, + "original_value": 0.0, + "tax_included": True, + "value": 10.0, + }, + ) + + # FIXME v18 we cannot use `_show_discount` method + # because it relies on `sale.group_discount_per_so_line` from sale module. + # See https://github.com/odoo/odoo/issues/202035 + # The test should be updated when the issue is fixed to use + # self.env.user.groups_id |= self.env.ref("sale.group_discount_per_so_line") + @mock.patch( + "odoo.addons.product.models.product_pricelist_item.PricelistItem._show_discount" + ) + def test_product_get_price_per_qty(self, show_discount): + show_discount.return_value = False + self.variant.taxes_id.price_include = True + # Define a promotion price for the product with min_qty = 10 + fposition = self.env.ref("product_get_price_helper.fiscal_position_0") + pricelist = self.base_pricelist + self.env["product.pricelist.item"].create( + { + "name": "Discount on Product when Qty >= 10", + "pricelist_id": pricelist.id, + "base": "list_price", + "compute_price": "percentage", + "percent_price": "20", + "applied_on": "0_product_variant", + "product_id": self.variant.id, + "min_quantity": 10.0, + } + ) + # Case 1 (qty = 1.0). No discount is applied + price = self.variant._get_price( + qty=1.0, pricelist=pricelist, fposition=fposition + ) + self.assertDictEqual( + price, + { + "discount": 0.0, + "original_value": 750.0, + "tax_included": True, + "value": 750.0, + }, + ) + # Case 2 (qty = 10.0). Discount is applied + # promotion price list define a discount of 20% on all product + price = self.variant._get_price( + qty=10.0, pricelist=pricelist, fposition=fposition + ) + self.assertDictEqual( + price, + { + "discount": 0.0, + "original_value": 600.0, + "tax_included": True, + "value": 600.0, + }, + ) + + @mock.patch( + "odoo.addons.product.models.product_pricelist_item.PricelistItem._show_discount" + ) + def test_product_get_price_discount_policy(self, show_discount): + self.variant.taxes_id.price_include = True + show_discount.return_value = False + # Ensure that discount is with 2 digits + self.env.ref("product.decimal_discount").digits = 2 + # self.base_pricelist doesn't define a tax mapping. We are tax included + # Discount policy: do not show the discount. + fiscal_position_fr = self.env.ref("product_get_price_helper.fiscal_position_0") + price = self.variant._get_price( + pricelist=self.base_pricelist, fposition=fiscal_position_fr + ) + self.assertDictEqual( + price, + { + "tax_included": True, + "value": 750.0, + "discount": 0.0, + "original_value": 750.0, + }, + ) + # promotion price list define a discount of 20% on all product + # Discount policy: show the discount. + show_discount.return_value = True + promotion_price_list = self.env.ref("product_get_price_helper.pricelist_1") + price = self.variant._get_price( + pricelist=promotion_price_list, fposition=fiscal_position_fr + ) + self.assertDictEqual( + price, + { + "tax_included": True, + "value": 600.0, + "discount": 20.0, + "original_value": 750.0, + }, + ) + # use the fiscal position defining a mapping from tax included to tax + # excluded + # Tax mapping should not impact the computation of the discount and + # the original value + tax_exclude_fiscal_position = self.env.ref( + "product_get_price_helper.fiscal_position_1" + ) + show_discount.return_value = False + price = self.variant._get_price( + pricelist=self.base_pricelist, fposition=tax_exclude_fiscal_position + ) + self.assertDictEqual( + price, + { + "tax_included": False, + "value": 652.17, + "discount": 0.0, + "original_value": 652.17, + }, + ) + show_discount.return_value = True + price = self.variant._get_price( + pricelist=promotion_price_list, fposition=tax_exclude_fiscal_position + ) + self.assertDictEqual( + price, + { + "tax_included": False, + "value": 521.74, + "discount": 20.0, + "original_value": 652.17, + }, + ) diff --git a/product_get_price_helper/utils.py b/product_get_price_helper/utils.py new file mode 100644 index 0000000..fca7e31 --- /dev/null +++ b/product_get_price_helper/utils.py @@ -0,0 +1,13 @@ +# Copyright 2021 Camptocamp (http://www.camptocamp.com). +# @author Simone Orsi +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tools import float_repr + + +def float_round(value, dp): + # be carefull odoo rounding implementation do not return the shortest + # representation of a float this mean if the price_unit is 211.70 + # you will have 211.70000000000002 + # Odony exemple: https://gist.github.com/odony/5269a695545902e7e23e761e20a9ec8c + return float(float_repr(value, dp)) diff --git a/product_price_category/README.rst b/product_price_category/README.rst new file mode 100644 index 0000000..e6e8135 --- /dev/null +++ b/product_price_category/README.rst @@ -0,0 +1,69 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +====================== +Product Price Category +====================== + +This module adds a field Price Category on Product Template +and allow Pricelist to be applied on this field. + +Usage +===== + +In Pricelist Form (Sales -> Configuration -> Pricelist), you can add or modify +an item ("Manage Pricelist Items" access should be checked in the user settings) +and select "Price Category" in "Applied on". +Then you have to choose on which price category should it be applied. + +.. image:: static/pricelist_price_category.png + + +Product price category can be modified in product form -> General Information. + +.. image:: static/product_price_category.png + + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/167/10.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Cyril Gaudin +* Akim Juillerat + +Do not contact contributors directly about support or help with technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/product_price_category/__init__.py b/product_price_category/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/product_price_category/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/product_price_category/__manifest__.py b/product_price_category/__manifest__.py new file mode 100644 index 0000000..4085f59 --- /dev/null +++ b/product_price_category/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2016 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Product Price Category", + "summary": "Add Price Category field on product and allow to apply " + "a pricelist on this field.", + "version": "18.0.1.0.0", + "author": "Camptocamp SA, Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Product", + "depends": ["sale_stock"], + "website": "https://github.com/OCA/sale-workflow", + "data": [ + "security/ir.model.access.csv", + "views/product_pricelist.xml", + "views/product_template.xml", + ], + "maintainers": ["sbejaoui"], + "installable": True, +} diff --git a/product_price_category/i18n/am.po b/product_price_category/i18n/am.po new file mode 100644 index 0000000..2ed2641 --- /dev/null +++ b/product_price_category/i18n/am.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ar.po b/product_price_category/i18n/ar.po new file mode 100644 index 0000000..f67fce1 --- /dev/null +++ b/product_price_category/i18n/ar.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "المعرف" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "الاسم" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/bg.po b/product_price_category/i18n/bg.po new file mode 100644 index 0000000..2c932bd --- /dev/null +++ b/product_price_category/i18n/bg.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Име" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/bs.po b/product_price_category/i18n/bs.po new file mode 100644 index 0000000..ba33c01 --- /dev/null +++ b/product_price_category/i18n/bs.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ime" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ca.po b/product_price_category/i18n/ca.po new file mode 100644 index 0000000..6b34000 --- /dev/null +++ b/product_price_category/i18n/ca.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2021-03-26 10:46+0000\n" +"Last-Translator: Daniel Martinez Vila \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\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" +"X-Generator: Weblate 4.3.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nom visible" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoria de preus" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoria de preus: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Tarifes de preus" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Especifiqueu una categoria de preu del producte si aquesta regla només " +"s'aplica a una categoria de preus. Mantingueu-lo buit en cas contrari." + +#~ msgid "Pricelist item" +#~ msgstr "Article de la llista de preus" + +#~ msgid "Product Template" +#~ msgstr "Plantilla de producte" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/cs.po b/product_price_category/i18n/cs.po new file mode 100644 index 0000000..90e474c --- /dev/null +++ b/product_price_category/i18n/cs.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Název" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/da.po b/product_price_category/i18n/da.po new file mode 100644 index 0000000..7aefdcf --- /dev/null +++ b/product_price_category/i18n/da.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Id" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/de.po b/product_price_category/i18n/de.po new file mode 100644 index 0000000..9fb86ba --- /dev/null +++ b/product_price_category/i18n/de.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Angelegt durch" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Angelegt am" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zuletzt akualisiert durch" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zuletzt akualisiert am" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Bezeichnung" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Preisliste" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/el_GR.po b/product_price_category/i18n/el_GR.po new file mode 100644 index 0000000..2d13a7c --- /dev/null +++ b/product_price_category/i18n/el_GR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Κωδικός" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ονομασία" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/en_GB.po b/product_price_category/i18n/en_GB.po new file mode 100644 index 0000000..1623957 --- /dev/null +++ b/product_price_category/i18n/en_GB.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Created on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es.po b/product_price_category/i18n/es.po new file mode 100644 index 0000000..44cc8f0 --- /dev/null +++ b/product_price_category/i18n/es.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2021-03-26 10:46+0000\n" +"Last-Translator: Daniel Martinez Vila \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\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" +"X-Generator: Weblate 4.3.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoría de precio" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoría de precio: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Tarifa" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Especifique una categoría de precio de producto si esta regla solo se aplica " +"a una categoría de precio. De lo contrario, manténgalo vacío." + +#~ msgid "Pricelist item" +#~ msgstr "Artículo de lista de precios" + +#~ msgid "Product Template" +#~ msgstr "Plantilla de producto" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/es_AR.po b/product_price_category/i18n/es_AR.po new file mode 100644 index 0000000..27e8493 --- /dev/null +++ b/product_price_category/i18n/es_AR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_CL.po b/product_price_category/i18n/es_CL.po new file mode 100644 index 0000000..5e29c9c --- /dev/null +++ b/product_price_category/i18n/es_CL.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_CO.po b/product_price_category/i18n/es_CO.po new file mode 100644 index 0000000..c221bee --- /dev/null +++ b/product_price_category/i18n/es_CO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_CR.po b/product_price_category/i18n/es_CR.po new file mode 100644 index 0000000..9d7e18c --- /dev/null +++ b/product_price_category/i18n/es_CR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_DO.po b/product_price_category/i18n/es_DO.po new file mode 100644 index 0000000..dd700a6 --- /dev/null +++ b/product_price_category/i18n/es_DO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_EC.po b/product_price_category/i18n/es_EC.po new file mode 100644 index 0000000..68e4814 --- /dev/null +++ b/product_price_category/i18n/es_EC.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_ES.po b/product_price_category/i18n/es_ES.po new file mode 100644 index 0000000..c1b550b --- /dev/null +++ b/product_price_category/i18n/es_ES.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_MX.po b/product_price_category/i18n/es_MX.po new file mode 100644 index 0000000..18c39eb --- /dev/null +++ b/product_price_category/i18n/es_MX.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_PE.po b/product_price_category/i18n/es_PE.po new file mode 100644 index 0000000..bc7bd49 --- /dev/null +++ b/product_price_category/i18n/es_PE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_PY.po b/product_price_category/i18n/es_PY.po new file mode 100644 index 0000000..ec7417b --- /dev/null +++ b/product_price_category/i18n/es_PY.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_VE.po b/product_price_category/i18n/es_VE.po new file mode 100644 index 0000000..f3c8b6e --- /dev/null +++ b/product_price_category/i18n/es_VE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/et.po b/product_price_category/i18n/et.po new file mode 100644 index 0000000..0924ed1 --- /dev/null +++ b/product_price_category/i18n/et.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/eu.po b/product_price_category/i18n/eu.po new file mode 100644 index 0000000..6acf6ff --- /dev/null +++ b/product_price_category/i18n/eu.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Created on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Izena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fa.po b/product_price_category/i18n/fa.po new file mode 100644 index 0000000..c8cca8b --- /dev/null +++ b/product_price_category/i18n/fa.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "شناسه" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "نام" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fi.po b/product_price_category/i18n/fi.po new file mode 100644 index 0000000..188b3dc --- /dev/null +++ b/product_price_category/i18n/fi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fr.po b/product_price_category/i18n/fr.po new file mode 100644 index 0000000..a107fb8 --- /dev/null +++ b/product_price_category/i18n/fr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +# guillaume bauer , 2018 +# Quentin THEURET , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-28 01:48+0000\n" +"PO-Revision-Date: 2018-02-28 01:48+0000\n" +"Last-Translator: Quentin THEURET , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Catégorie de prix" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Catégorie de prix : %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Tarif" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Définissez une catégorie de prix de produit si cette règle s'applique " +"uniquement à une catégorie de prix. Laisser vide dans l'autre cas." + +#~ msgid "Pricelist item" +#~ msgstr "Élément de la liste de prix" + +#~ msgid "Product Template" +#~ msgstr "Modèle de produit" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/fr_CA.po b/product_price_category/i18n/fr_CA.po new file mode 100644 index 0000000..f80b958 --- /dev/null +++ b/product_price_category/i18n/fr_CA.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Identifiant" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fr_CH.po b/product_price_category/i18n/fr_CH.po new file mode 100644 index 0000000..8c4b8aa --- /dev/null +++ b/product_price_category/i18n/fr_CH.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/gl.po b/product_price_category/i18n/gl.po new file mode 100644 index 0000000..0b2d25f --- /dev/null +++ b/product_price_category/i18n/gl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Modificado por última vez o" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/gl_ES.po b/product_price_category/i18n/gl_ES.po new file mode 100644 index 0000000..b0b0f2c --- /dev/null +++ b/product_price_category/i18n/gl_ES.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/he.po b/product_price_category/i18n/he.po new file mode 100644 index 0000000..a027192 --- /dev/null +++ b/product_price_category/i18n/he.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "מזהה" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "שם" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/hr.po b/product_price_category/i18n/hr.po new file mode 100644 index 0000000..b37ac9c --- /dev/null +++ b/product_price_category/i18n/hr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-28 01:48+0000\n" +"PO-Revision-Date: 2018-02-28 01:48+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Kategorija cijena" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Kategorija cijena: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Cjenik" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Odredite kategoriju cijena ako ovo je pravilo primjenjivo na jednu " +"kategoriju, inače ostavite prazno." + +#~ msgid "Pricelist item" +#~ msgstr "Stavka cjenika" + +#~ msgid "Product Template" +#~ msgstr "Predložak proizvoda" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/hr_HR.po b/product_price_category/i18n/hr_HR.po new file mode 100644 index 0000000..9586f11 --- /dev/null +++ b/product_price_category/i18n/hr_HR.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Cjenik" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/hu.po b/product_price_category/i18n/hu.po new file mode 100644 index 0000000..98f1780 --- /dev/null +++ b/product_price_category/i18n/hu.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Név" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/id.po b/product_price_category/i18n/id.po new file mode 100644 index 0000000..63cdddb --- /dev/null +++ b/product_price_category/i18n/id.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nama" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/it.po b/product_price_category/i18n/it.po new file mode 100644 index 0000000..f714474 --- /dev/null +++ b/product_price_category/i18n/it.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2024-10-15 17:06+0000\n" +"Last-Translator: Francesco Foresti \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\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" +"X-Generator: Weblate 5.6.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "Applica a" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoria di Prezzo" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoria di Prezzo: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Listino prezzi" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "Riga listino applicabile all'opzione selezionata" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "Regola listino prezzi" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "Prodotto" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "Categoria prezzo prodotto" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Specificare una categoria di prezzo del prodotto se questa regola si applica " +"solo a una categoria di prezzo. In caso contrario, lasciare vuoto." diff --git a/product_price_category/i18n/ja.po b/product_price_category/i18n/ja.po new file mode 100644 index 0000000..a78f5de --- /dev/null +++ b/product_price_category/i18n/ja.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "作成日" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "名称" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ko.po b/product_price_category/i18n/ko.po new file mode 100644 index 0000000..b75a670 --- /dev/null +++ b/product_price_category/i18n/ko.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "작성일" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "이름" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/lt.po b/product_price_category/i18n/lt.po new file mode 100644 index 0000000..23f89b5 --- /dev/null +++ b/product_price_category/i18n/lt.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Pavadinimas" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/lt_LT.po b/product_price_category/i18n/lt_LT.po new file mode 100644 index 0000000..fc2c3de --- /dev/null +++ b/product_price_category/i18n/lt_LT.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/lv.po b/product_price_category/i18n/lv.po new file mode 100644 index 0000000..b0d175e --- /dev/null +++ b/product_price_category/i18n/lv.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nosaukums" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/mk.po b/product_price_category/i18n/mk.po new file mode 100644 index 0000000..308cdfe --- /dev/null +++ b/product_price_category/i18n/mk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Име" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/mn.po b/product_price_category/i18n/mn.po new file mode 100644 index 0000000..dad1a2a --- /dev/null +++ b/product_price_category/i18n/mn.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Нэр" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nb.po b/product_price_category/i18n/nb.po new file mode 100644 index 0000000..99ed845 --- /dev/null +++ b/product_price_category/i18n/nb.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nb_NO.po b/product_price_category/i18n/nb_NO.po new file mode 100644 index 0000000..9ed17b4 --- /dev/null +++ b/product_price_category/i18n/nb_NO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nl.po b/product_price_category/i18n/nl.po new file mode 100644 index 0000000..b169a42 --- /dev/null +++ b/product_price_category/i18n/nl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Laatste bijgewerkt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nl_BE.po b/product_price_category/i18n/nl_BE.po new file mode 100644 index 0000000..d226010 --- /dev/null +++ b/product_price_category/i18n/nl_BE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naam:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nl_NL.po b/product_price_category/i18n/nl_NL.po new file mode 100644 index 0000000..4698a78 --- /dev/null +++ b/product_price_category/i18n/nl_NL.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# Peter Hageman , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: Peter Hageman , 2018\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Laatst aangepast door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Laatst aangepast op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/pl.po b/product_price_category/i18n/pl.po new file mode 100644 index 0000000..2aa9ca7 --- /dev/null +++ b/product_price_category/i18n/pl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nazwa" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/product_price_category.pot b/product_price_category/i18n/product_price_category.pot new file mode 100644 index 0000000..f41a891 --- /dev/null +++ b/product_price_category/i18n/product_price_category.pot @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__display_applied_on +msgid "Display Applied On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__display_applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__display_applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/pt.po b/product_price_category/i18n/pt.po new file mode 100644 index 0000000..1862ee5 --- /dev/null +++ b/product_price_category/i18n/pt.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/pt_BR.po b/product_price_category/i18n/pt_BR.po new file mode 100644 index 0000000..431e604 --- /dev/null +++ b/product_price_category/i18n/pt_BR.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2024-09-20 20:06+0000\n" +"Last-Translator: Rodrigo Sottomaior Macedo " +"\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" +"Language: pt_BR\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" +"X-Generator: Weblate 5.6.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "Aplicar em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Identificação" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoria de Preço" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoria de Preço: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Lista de Preço" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "Item da lista de preços aplicável na opção selecionada" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "Regra da lista de preços" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "Produto" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "Categoria de Preço do Produto" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Especifique uma categoria de preço de produto se esta regra se aplicar " +"somente a uma categoria de preço. Mantenha em branco caso contrário." diff --git a/product_price_category/i18n/pt_PT.po b/product_price_category/i18n/pt_PT.po new file mode 100644 index 0000000..0b8afe2 --- /dev/null +++ b/product_price_category/i18n/pt_PT.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ro.po b/product_price_category/i18n/ro.po new file mode 100644 index 0000000..e019ccc --- /dev/null +++ b/product_price_category/i18n/ro.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nume" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ru.po b/product_price_category/i18n/ru.po new file mode 100644 index 0000000..48ad92b --- /dev/null +++ b/product_price_category/i18n/ru.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Создан" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Название" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sk.po b/product_price_category/i18n/sk.po new file mode 100644 index 0000000..4c32984 --- /dev/null +++ b/product_price_category/i18n/sk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Meno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sl.po b/product_price_category/i18n/sl.po new file mode 100644 index 0000000..9120b91 --- /dev/null +++ b/product_price_category/i18n/sl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2026-01-22 17:04+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" +"X-Generator: Weblate 5.15.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Cenik" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sr.po b/product_price_category/i18n/sr.po new file mode 100644 index 0000000..8155a3e --- /dev/null +++ b/product_price_category/i18n/sr.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ime" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sr@latin.po b/product_price_category/i18n/sr@latin.po new file mode 100644 index 0000000..be8b312 --- /dev/null +++ b/product_price_category/i18n/sr@latin.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ime:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sv.po b/product_price_category/i18n/sv.po new file mode 100644 index 0000000..5333543 --- /dev/null +++ b/product_price_category/i18n/sv.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Namn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/th.po b/product_price_category/i18n/th.po new file mode 100644 index 0000000..41311d9 --- /dev/null +++ b/product_price_category/i18n/th.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "รหัส" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "ชื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/tr.po b/product_price_category/i18n/tr.po new file mode 100644 index 0000000..e33f4df --- /dev/null +++ b/product_price_category/i18n/tr.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Adı" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/tr_TR.po b/product_price_category/i18n/tr_TR.po new file mode 100644 index 0000000..1677a8d --- /dev/null +++ b/product_price_category/i18n/tr_TR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Kimlik" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/uk.po b/product_price_category/i18n/uk.po new file mode 100644 index 0000000..8716d64 --- /dev/null +++ b/product_price_category/i18n/uk.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/vi.po b/product_price_category/i18n/vi.po new file mode 100644 index 0000000..cf8cc76 --- /dev/null +++ b/product_price_category/i18n/vi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Tên" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/vi_VN.po b/product_price_category/i18n/vi_VN.po new file mode 100644 index 0000000..f2f7413 --- /dev/null +++ b/product_price_category/i18n/vi_VN.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Tên" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/zh_CN.po b/product_price_category/i18n/zh_CN.po new file mode 100644 index 0000000..c6c3020 --- /dev/null +++ b/product_price_category/i18n/zh_CN.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "名称" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/zh_TW.po b/product_price_category/i18n/zh_TW.po new file mode 100644 index 0000000..c56e46c --- /dev/null +++ b/product_price_category/i18n/zh_TW.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "建立於" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "編號" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "名稱" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/migrations/18.0.1.0.0/post-migration.py b/product_price_category/migrations/18.0.1.0.0/post-migration.py new file mode 100644 index 0000000..eccf8cf --- /dev/null +++ b/product_price_category/migrations/18.0.1.0.0/post-migration.py @@ -0,0 +1,15 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +_logger = logging.getLogger(__name__) + + +def migrate(cr, version): + if not version: + return + cr.execute(""" + UPDATE product_pricelist_item + SET display_applied_on = '2b_product_price_category' + WHERE applied_on = '2b_product_price_category' + """) diff --git a/product_price_category/models/__init__.py b/product_price_category/models/__init__.py new file mode 100644 index 0000000..e13fbdf --- /dev/null +++ b/product_price_category/models/__init__.py @@ -0,0 +1,4 @@ +from . import product_price_category +from . import product_template +from . import product_pricelist +from . import product_pricelist_item diff --git a/product_price_category/models/product_price_category.py b/product_price_category/models/product_price_category.py new file mode 100644 index 0000000..4c129ad --- /dev/null +++ b/product_price_category/models/product_price_category.py @@ -0,0 +1,13 @@ +# Copyright 2016 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields +from odoo import models + + +class ProductPriceCategory(models.Model): + _name = "product.price.category" + _description = "Product Price Category" + + name = fields.Char(required=True) diff --git a/product_price_category/models/product_pricelist.py b/product_price_category/models/product_pricelist.py new file mode 100644 index 0000000..c8c4517 --- /dev/null +++ b/product_price_category/models/product_pricelist.py @@ -0,0 +1,25 @@ +# Copyright 2017 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +from odoo import models + + +class ProductPricelist(models.Model): + _inherit = "product.pricelist" + + def _get_applicable_rules_domain(self, products, date, **kwargs): + price_categ_ids = [ + p.price_category_id.id for p in products if p.price_category_id + ] + domain = super()._get_applicable_rules_domain(products, date, **kwargs) + if price_categ_ids: + domain.extend( + [ + "|", + ("price_category_id", "=", False), + ("price_category_id", "in", price_categ_ids), + ] + ) + return domain diff --git a/product_price_category/models/product_pricelist_item.py b/product_price_category/models/product_pricelist_item.py new file mode 100644 index 0000000..5e9910f --- /dev/null +++ b/product_price_category/models/product_pricelist_item.py @@ -0,0 +1,74 @@ +# Copyright 2017 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +from odoo import _ +from odoo import api +from odoo import fields +from odoo import models + + +class ProductPricelistItem(models.Model): + _inherit = "product.pricelist.item" + + applied_on = fields.Selection( + selection_add=[("2b_product_price_category", "Price Category")], + ondelete={"2b_product_price_category": "set default"}, + ) + display_applied_on = fields.Selection( + selection_add=[("2b_product_price_category", "Price Category")], + ondelete={"2b_product_price_category": "set default"}, + ) + price_category_id = fields.Many2one( + comodel_name="product.price.category", + string="Price Category", + ondelete="cascade", + help="Specify a product price category if this rule only applies " + "to one price category. Keep empty otherwise.", + compute="_compute_price_category", + store=True, + readonly=False, + ) + + @api.depends("price_category_id") + def _compute_name(self): + result = super()._compute_name() + for item in self: + if item.applied_on == "2b_product_price_category": + item.name = _("Price Category: %s", item.price_category_id.display_name) + return result + + @api.depends("display_applied_on") + def _compute_price_category(self): + """Reset the price_category_id value if applied_on + is not price_category + """ + for rec in self: + if rec.display_applied_on != "2b_product_price_category": + rec.price_category_id = False + + def _is_applicable_for(self, product, qty_in_product_uom): + res = super()._is_applicable_for(product, qty_in_product_uom) + if ( + self.price_category_id + and self.price_category_id != product.price_category_id + ): + return False + return res + + @api.onchange("display_applied_on") + def _onchange_display_applied_on(self): + res = super()._onchange_display_applied_on() + for item in self: + if item.display_applied_on == "2b_product_price_category": + item.update( + dict( + product_id=None, + product_tmpl_id=None, + applied_on="2b_product_price_category", + product_uom=None, + categ_id=None, + ) + ) + return res diff --git a/product_price_category/models/product_template.py b/product_price_category/models/product_template.py new file mode 100644 index 0000000..1791078 --- /dev/null +++ b/product_price_category/models/product_template.py @@ -0,0 +1,14 @@ +# Copyright 2016 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields +from odoo import models + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + price_category_id = fields.Many2one( + "product.price.category", string="Price Category", ondelete="restrict" + ) diff --git a/product_price_category/pyproject.toml b/product_price_category/pyproject.toml new file mode 100644 index 0000000..4231d0c --- /dev/null +++ b/product_price_category/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/product_price_category/security/ir.model.access.csv b/product_price_category/security/ir.model.access.csv new file mode 100644 index 0000000..5afd0ec --- /dev/null +++ b/product_price_category/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_product_price_category_user,access_product_price_category_user,model_product_price_category,product.group_product_pricelist,1,0,0,0 +access_product_price_category_manager,access_product_price_category_manager,model_product_price_category,sales_team.group_sale_manager,1,1,1,1 diff --git a/product_price_category/static/description/icon.png b/product_price_category/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/product_price_category/static/description/icon.png differ diff --git a/product_price_category/static/pricelist_price_category.png b/product_price_category/static/pricelist_price_category.png new file mode 100644 index 0000000..5356cad Binary files /dev/null and b/product_price_category/static/pricelist_price_category.png differ diff --git a/product_price_category/static/product_price_category.png b/product_price_category/static/product_price_category.png new file mode 100644 index 0000000..9f7ce0e Binary files /dev/null and b/product_price_category/static/product_price_category.png differ diff --git a/product_price_category/tests/__init__.py b/product_price_category/tests/__init__.py new file mode 100644 index 0000000..e95d204 --- /dev/null +++ b/product_price_category/tests/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_sale diff --git a/product_price_category/tests/test_sale.py b/product_price_category/tests/test_sale.py new file mode 100644 index 0000000..f26f8ae --- /dev/null +++ b/product_price_category/tests/test_sale.py @@ -0,0 +1,146 @@ +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import Command +from odoo.tests import Form +from odoo.tests.common import TransactionCase + + +class TestSale(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + # activate advanced pricelist + cls.env.user.write( + { + "groups_id": [ + Command.link(cls.env.ref("product.group_product_pricelist").id) + ] + } + ) + cls.tax = cls.env["account.tax"].create( + {"name": "Unittest tax", "amount_type": "percent", "amount": "0"} + ) + + price_category_1 = cls.env["product.price.category"].create( + {"name": "TEST_CAT"} + ) + price_category_2 = cls.env["product.price.category"].create( + {"name": "TEST_CAT_2"} + ) + + cls.pricelist = cls.env["product.pricelist"].create( + { + "name": "Unittest Pricelist", + "item_ids": [ + Command.create( + { + "applied_on": "2b_product_price_category", + "price_category_id": price_category_2.id, + "compute_price": "percentage", + "percent_price": 5, + } + ), + ], + } + ) + + # P1 with price_category_1 + cls.p1 = cls.env["product.product"].create( + { + "name": "Unittest P1", + "price_category_id": price_category_1.id, + "list_price": 10, + "taxes_id": [Command.set(cls.tax.ids)], + } + ) + + # P2 with price_category_2 + cls.p2 = cls.env["product.product"].create( + { + "name": "Unittest P2", + "price_category_id": price_category_2.id, + "list_price": 20, + "taxes_id": [Command.set(cls.tax.ids)], + } + ) + + # P3 without price category + cls.p3 = cls.env["product.product"].create( + { + "name": "Unittest P3", + "list_price": 30, + "taxes_id": [Command.set(cls.tax.ids)], + } + ) + + cls.partner = cls.env["res.partner"].create({"name": "Unittest partner"}) + + cls.sale = cls.env["sale.order"].create( + { + "partner_id": cls.partner.id, + "order_line": [ + Command.create( + { + "name": cls.p1.name, + "product_id": cls.p1.id, + "product_uom_qty": 1, + "product_uom": cls.env.ref("uom.product_uom_unit").id, + }, + ), + Command.create( + { + "name": cls.p1.name, + "product_id": cls.p2.id, + "product_uom_qty": 1, + "product_uom": cls.env.ref("uom.product_uom_unit").id, + }, + ), + Command.create( + { + "name": cls.p1.name, + "product_id": cls.p3.id, + "product_uom_qty": 1, + "product_uom": cls.env.ref("uom.product_uom_unit").id, + }, + ), + ], + } + ) + + def test_sale_without_pricelist(self): + self.sale._recompute_prices() + self.assertEqual(10, self.sale.order_line[0].price_total) + self.assertEqual(20, self.sale.order_line[1].price_total) + self.assertEqual(30, self.sale.order_line[2].price_total) + self.assertEqual(60, self.sale.amount_total) + + def test_sale_with_pricelist(self): + """Pricelist should be applied only on product with price_category_2""" + self.sale.pricelist_id = self.pricelist + self.sale._recompute_prices() + self.assertEqual(10, self.sale.order_line[0].price_total) + self.assertEqual(19, self.sale.order_line[1].price_total) + self.assertEqual(30, self.sale.order_line[2].price_total) + self.assertEqual(59, self.sale.amount_total) + + def test_sale_with_pricelist_and_tax(self): + self.tax.amount = 20 + self.sale.pricelist_id = self.pricelist + self.sale._recompute_prices() + self.assertEqual(12, self.sale.order_line[0].price_total) + self.assertEqual(22.8, self.sale.order_line[1].price_total) + self.assertEqual(36, self.sale.order_line[2].price_total) + self.assertEqual(70.8, self.sale.amount_total) + + def test_onchange_applied_on_price_category(self): + pricelist_form = Form(self.pricelist) + with pricelist_form.item_ids.edit(0) as item_form: + self.assertTrue(item_form.price_category_id) + item_form.display_applied_on = "1_product" + self.assertFalse(item_form.price_category_id) + + def test_name(self): + item = self.pricelist.item_ids[0] + expected_name = f"Price Category: {item.price_category_id.display_name}" + self.assertEqual(expected_name, item.name) diff --git a/product_price_category/views/product_pricelist.xml b/product_price_category/views/product_pricelist.xml new file mode 100644 index 0000000..9c8c40a --- /dev/null +++ b/product_price_category/views/product_pricelist.xml @@ -0,0 +1,19 @@ + + + + product.pricelist.item + + + + + + + + diff --git a/product_price_category/views/product_template.xml b/product_price_category/views/product_template.xml new file mode 100644 index 0000000..2d2216c --- /dev/null +++ b/product_price_category/views/product_template.xml @@ -0,0 +1,23 @@ + + + + product.template + + +
+ +
+
+
+ + + + product.template + + + + + + + +
diff --git a/purchase_triple_discount/README.rst b/purchase_triple_discount/README.rst new file mode 100644 index 0000000..4166895 --- /dev/null +++ b/purchase_triple_discount/README.rst @@ -0,0 +1,119 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +============================== +Purchase Order Triple Discount +============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:fb4779564a8b987350b0ed4d4e6d8035eddc9a8fd341f3e32703640e8e8bd359 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github + :target: https://github.com/OCA/purchase-workflow/tree/18.0/purchase_triple_discount + :alt: OCA/purchase-workflow +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-purchase_triple_discount + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to have three successive discounts on every purchase +order line. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Create a new purchase order and add discounts in any of the three +discount fields given. They go in order of precedence so discount 2 will +be calculated over discount 1 and discount 3 over the result of discount +2. For example, let's divide by two on every discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = 50% -> Amount = 150.00 + - Disc. 3 = 50% -> Amount = 75.00 + +You can also use negative values to charge instead of discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = -5% -> Amount = 315.00 + +- When the purchase order is validated, the discounts will be added to + the corresponding vendor pricelist. +- Vendor pricelists can be edited as well with their corresponding new + second and third discounts. +- A default second or third discount can be set in every vendor *Sale & + Purchases* tab. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa +* GRAP + +Contributors +------------ + +- `Tecnativa `__: + + - David Vidal + - Pedro M. Baeza + +- Sylvain LE GAL (https://twitter.com/legalsylvain) + +- `ForgeFlow S.L. `__: + + - Christopher Ormaza + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/purchase-workflow `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/purchase_triple_discount/__init__.py b/purchase_triple_discount/__init__.py new file mode 100644 index 0000000..cc6b635 --- /dev/null +++ b/purchase_triple_discount/__init__.py @@ -0,0 +1,2 @@ +from . import models +from .hooks import post_init_hook diff --git a/purchase_triple_discount/__manifest__.py b/purchase_triple_discount/__manifest__.py new file mode 100644 index 0000000..0eb72d2 --- /dev/null +++ b/purchase_triple_discount/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Purchase Order Triple Discount", + "version": "18.0.1.0.0", + "category": "Purchase Management", + "author": "Tecnativa," "GRAP," "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/purchase-workflow", + "license": "AGPL-3", + "summary": "Manage triple discount on purchase order lines", + "depends": [ + "purchase", + "account_invoice_triple_discount", + ], + "data": [ + "views/product_supplierinfo_view.xml", + "views/purchase_view.xml", + "views/res_partner_view.xml", + ], + "post_init_hook": "post_init_hook", + "installable": True, +} diff --git a/purchase_triple_discount/hooks.py b/purchase_triple_discount/hooks.py new file mode 100644 index 0000000..047e072 --- /dev/null +++ b/purchase_triple_discount/hooks.py @@ -0,0 +1,24 @@ +def post_init_hook(env): + env.cr.execute(""" + UPDATE purchase_order_line upd + SET discount1=pol.discount + FROM (SELECT * + FROM purchase_order_line + WHERE discount IS NOT NULL + AND discount1 IS NULL + AND discount2 IS NULL + AND discount3 IS NULL) as pol + WHERE upd.id = pol.id + """) + + env.cr.execute(""" + UPDATE product_supplierinfo upd + SET discount1=psi.discount + FROM (SELECT * + FROM product_supplierinfo + WHERE discount IS NOT NULL + AND discount1 IS NULL + AND discount2 IS NULL + AND discount3 IS NULL) as psi + WHERE upd.id = psi.id + """) diff --git a/purchase_triple_discount/i18n/de.po b/purchase_triple_discount/i18n/de.po new file mode 100644 index 0000000..792ee3f --- /dev/null +++ b/purchase_triple_discount/i18n/de.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2017-11-24 07:53+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\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: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Bestellposition" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Bestellposition" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" diff --git a/purchase_triple_discount/i18n/es.po b/purchase_triple_discount/i18n/es.po new file mode 100644 index 0000000..68eddc4 --- /dev/null +++ b/purchase_triple_discount/i18n/es.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2023-07-17 20:10+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\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" +"X-Generator: Weblate 4.17\n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "Descuento. 2 (%)" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "Descuento. 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "Descuento por defecto al proveedor 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "Descuento por defecto al proveedor 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "Descuento. 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "Descuento. 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "Descuento 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "El descuento 2 debe ser inferior al 100%." + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "Descuento 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "El descuento 3 debe ser inferior al 100%." + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Línea orden de compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +msgid "Purchase Report" +msgstr "Informe de compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "Lista de precios para proveedores" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" +"Este valor se utilizará como valor por defecto, para cada nueva línea de " +"información del proveedor que dependa de ese proveedor." diff --git a/purchase_triple_discount/i18n/es_MX.po b/purchase_triple_discount/i18n/es_MX.po new file mode 100644 index 0000000..84e4ed2 --- /dev/null +++ b/purchase_triple_discount/i18n/es_MX.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2017-11-24 07:53+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\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: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Línea de orden de compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Línea de orden de compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" diff --git a/purchase_triple_discount/i18n/es_PE.po b/purchase_triple_discount/i18n/es_PE.po new file mode 100644 index 0000000..1703678 --- /dev/null +++ b/purchase_triple_discount/i18n/es_PE.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# Henry Garcia , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2017-11-24 07:53+0000\n" +"Last-Translator: Henry Garcia , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\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: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linea de orden de compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Linea de orden de compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/purchase_triple_discount/i18n/fi.po b/purchase_triple_discount/i18n/fi.po new file mode 100644 index 0000000..ccd05b3 --- /dev/null +++ b/purchase_triple_discount/i18n/fi.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2017-11-24 07:53+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\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: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Ostotilausrivi" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Ostotilausrivi" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" diff --git a/purchase_triple_discount/i18n/fr.po b/purchase_triple_discount/i18n/fr.po new file mode 100644 index 0000000..eec3e05 --- /dev/null +++ b/purchase_triple_discount/i18n/fr.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-08 08:11+0000\n" +"PO-Revision-Date: 2019-08-08 08:11+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "Remise par défaut n°2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "Remise par défaut n°3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "Rem. 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "Rem. 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "Remise 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "La remise 2 doit être inférieure à 100%." + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "Remise 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "La remise 3 doit être inférieure à 100%." + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Ligne de commande d'achat" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Commande fournisseur" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "Liste de prix du fournisseur" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" + +#~ msgid "Stock Rule" +#~ msgstr "Règle de stock minimum" diff --git a/purchase_triple_discount/i18n/hr.po b/purchase_triple_discount/i18n/hr.po new file mode 100644 index 0000000..00c3e81 --- /dev/null +++ b/purchase_triple_discount/i18n/hr.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-03 03:48+0000\n" +"PO-Revision-Date: 2018-03-03 03:48+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "Pop. 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "Pop. 3(%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +#, fuzzy +msgid "Discount 2 (%)" +msgstr "Pop. 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "Popust 2 mora biti manje od 100%." + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +#, fuzzy +msgid "Discount 3 (%)" +msgstr "Pop. 3(%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "Popust 3 mora biti manje od 100%." + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Stavka naloga za nabavu" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Stavka naloga za nabavu" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/purchase_triple_discount/i18n/it.po b/purchase_triple_discount/i18n/it.po new file mode 100644 index 0000000..6eefa37 --- /dev/null +++ b/purchase_triple_discount/i18n/it.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2023-12-20 18:34+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\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" +"X-Generator: Weblate 4.17\n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "Sc. 2 (%)" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "Sc. 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "Contatto" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "Sconto Fornitore Predefinito 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "Sconto Fornitore Predefinito 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "Sconto 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "Sconto 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "Sconto 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "Sconto 2 deve essere inferiore di 100%." + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "Sconto 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "Sconto 3 deve essere inferiore di 100%." + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Riga ordine di acquisto" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +msgid "Purchase Report" +msgstr "Resoconto di acquisto" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "Listino Fornitore" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" +"Questo valore verrà usato come predefinito per ogni nuova riga d'ordine di " +"acquisto che dipende da questo fornitore." + +#~ msgid "Invoice" +#~ msgstr "Fattura" + +#~ msgid "Stock Rule" +#~ msgstr "Regola Stock" diff --git a/purchase_triple_discount/i18n/nl_NL.po b/purchase_triple_discount/i18n/nl_NL.po new file mode 100644 index 0000000..6dc750b --- /dev/null +++ b/purchase_triple_discount/i18n/nl_NL.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2017-11-24 07:53+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\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: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Inkooporderregel" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Inkooporderregel" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" diff --git a/purchase_triple_discount/i18n/pt_BR.po b/purchase_triple_discount/i18n/pt_BR.po new file mode 100644 index 0000000..6324109 --- /dev/null +++ b/purchase_triple_discount/i18n/pt_BR.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2024-05-29 18:36+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" +"Language: pt_BR\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" +"X-Generator: Weblate 4.17\n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "Desc. 2 (%)" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "Desc. 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "Contato" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "Desconto padrão do fornecedor 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "Desconto padrão do fornecedor 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "Desc. 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "Desc. 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "Desconto 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "O desconto 2 deve ser inferior a 100%." + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "Desconto 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "O desconto 3 deve ser inferior a 100%." + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linha da Ordem de Compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +msgid "Purchase Report" +msgstr "Relatório de Compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "Lista de preços do fornecedor" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" +"Este valor será usado como padrão, para cada nova linha de informações do " +"fornecedor dependendo desse fornecedor." + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/purchase_triple_discount/i18n/pt_PT.po b/purchase_triple_discount/i18n/pt_PT.po new file mode 100644 index 0000000..ffddce5 --- /dev/null +++ b/purchase_triple_discount/i18n/pt_PT.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2017-11-24 07:53+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\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: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linha de Encomenda de Compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Linha de Encomenda de Compra" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" diff --git a/purchase_triple_discount/i18n/purchase_triple_discount.pot b/purchase_triple_discount/i18n/purchase_triple_discount.pot new file mode 100644 index 0000000..3627409 --- /dev/null +++ b/purchase_triple_discount/i18n/purchase_triple_discount.pot @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount1 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount1 +msgid "Default Supplier Discount 1 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount1 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount1 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount1 +msgid "Disc. 1 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount +msgid "Discount" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount +msgid "Discount (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_product_supplierinfo_discount1_limit +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount1_limit +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_triple_discount_mixin_discount1_limit +msgid "Discount 1 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_product_supplierinfo_discount2_limit +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_triple_discount_mixin_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_product_supplierinfo_discount3_limit +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_triple_discount_mixin_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_triple_discount_mixin +msgid "Purchase Triple Discount Mixin" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount1 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount1 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" diff --git a/purchase_triple_discount/i18n/ro.po b/purchase_triple_discount/i18n/ro.po new file mode 100644 index 0000000..99cc235 --- /dev/null +++ b/purchase_triple_discount/i18n/ro.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2017-11-24 07:53+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linie comandă achiziție" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +#, fuzzy +msgid "Purchase Report" +msgstr "Linie comandă achiziție" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" diff --git a/purchase_triple_discount/i18n/sl.po b/purchase_triple_discount/i18n/sl.po new file mode 100644 index 0000000..04ad841 --- /dev/null +++ b/purchase_triple_discount/i18n/sl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-24 07:53+0000\n" +"PO-Revision-Date: 2021-02-24 11:45+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" +"X-Generator: Weblate 4.3.2\n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "Stik" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "Privzeti popust dobavitelja 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "Privzeti popust dobavitelja 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "Pop. 2(%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "Pop. 3(%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "Popust 2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "Popust 2 ne sme presegati 100%." + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "Popust 3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "Popust 3 ne sme presegati 100%." + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Postavka nabavnega naloga" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +msgid "Purchase Report" +msgstr "Poročilo o nabavi" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "Cenik dobavitelja" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "" +"Ta vrednost se bo uporabljala kot privzeta za vsako novo postavko " +"\"supplierinfo\" vezano na tega dobavitelja." + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Stock Rule" +#~ msgstr "Pravilo zaloge" diff --git a/purchase_triple_discount/i18n/zh_CN.po b/purchase_triple_discount/i18n/zh_CN.po new file mode 100644 index 0000000..e7eb1a5 --- /dev/null +++ b/purchase_triple_discount/i18n/zh_CN.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_triple_discount +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2019-09-02 14:40+0000\n" +"Last-Translator: 黎伟杰 <674416404@qq.com>\n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.8\n" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 2 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount +msgid "Disc. 3 (%)" +msgstr "" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_res_partner +msgid "Contact" +msgstr "联系人" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +msgid "Default Supplier Discount 2 (%)" +msgstr "默认供应商折扣2 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "Default Supplier Discount 3 (%)" +msgstr "默认供应商折扣3(%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 +msgid "Disc. 2 (%)" +msgstr "折扣2(%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 +msgid "Disc. 3 (%)" +msgstr "折扣3 (%)" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 +msgid "Discount 2 (%)" +msgstr "折扣2(%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit +msgid "Discount 2 must be lower than 100%." +msgstr "折扣2必须低于100%。" + +#. module: purchase_triple_discount +#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 +#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 +msgid "Discount 3 (%)" +msgstr "折扣3(%)" + +#. module: purchase_triple_discount +#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit +msgid "Discount 3 must be lower than 100%." +msgstr "折扣3必须低于100%。" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "采购订单行" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_purchase_report +msgid "Purchase Report" +msgstr "采购报告" + +#. module: purchase_triple_discount +#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo +msgid "Supplier Pricelist" +msgstr "供应商价格表" + +#. module: purchase_triple_discount +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 +#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 +msgid "" +"This value will be used as the default one, for each new supplierinfo line " +"depending on that supplier." +msgstr "根据供应商的不同,此值将用作每个新供应商信息行的默认值。" + +#~ msgid "Invoice" +#~ msgstr "发票" + +#~ msgid "Stock Rule" +#~ msgstr "库存规则" diff --git a/purchase_triple_discount/models/__init__.py b/purchase_triple_discount/models/__init__.py new file mode 100644 index 0000000..2966b7b --- /dev/null +++ b/purchase_triple_discount/models/__init__.py @@ -0,0 +1,5 @@ +from . import purchase_triple_discount_mixin +from . import product_supplierinfo +from . import purchase_order_line +from . import purchase_order +from . import res_partner diff --git a/purchase_triple_discount/models/product_supplierinfo.py b/purchase_triple_discount/models/product_supplierinfo.py new file mode 100644 index 0000000..c1485ff --- /dev/null +++ b/purchase_triple_discount/models/product_supplierinfo.py @@ -0,0 +1,35 @@ +# Copyright 2019 Tecnativa - David Vidal +# Copyright 2019 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import api +from odoo import models + + +class ProductSupplierInfo(models.Model): + _name = "product.supplierinfo" + _inherit = ["purchase.triple.discount.mixin", "product.supplierinfo"] + + @api.onchange("partner_id") + def _onchange_partner_id(self): + self.update( + { + field: self.partner_id[f"default_supplierinfo_{field}"] + for field in self._get_multiple_discount_field_names() + } + ) + + def default_get(self, fields_list): + res = super().default_get(fields_list) + res.update( + { + field: self.partner_id[f"default_supplierinfo_{field}"] + for field in self._get_multiple_discount_field_names() + } + ) + return res + + @api.model + def _get_po_to_supplierinfo_synced_fields(self): + res = super()._get_po_to_supplierinfo_synced_fields() + res += self._get_multiple_discount_field_names() + return res diff --git a/purchase_triple_discount/models/purchase_order.py b/purchase_triple_discount/models/purchase_order.py new file mode 100644 index 0000000..de23b23 --- /dev/null +++ b/purchase_triple_discount/models/purchase_order.py @@ -0,0 +1,18 @@ +# Copyright 2017-19 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class PurchaseOrder(models.Model): + _inherit = "purchase.order" + + def _prepare_supplier_info(self, partner, line, price, currency): + res = super()._prepare_supplier_info(partner, line, price, currency) + res.update( + { + fname: line[fname] + for fname in line._get_multiple_discount_field_names() + } + ) + return res diff --git a/purchase_triple_discount/models/purchase_order_line.py b/purchase_triple_discount/models/purchase_order_line.py new file mode 100644 index 0000000..0dd635e --- /dev/null +++ b/purchase_triple_discount/models/purchase_order_line.py @@ -0,0 +1,77 @@ +# Copyright 2017-19 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api +from odoo import fields +from odoo import models + + +class PurchaseOrderLine(models.Model): + _name = "purchase.order.line" + _inherit = ["purchase.triple.discount.mixin", "purchase.order.line"] + + @api.depends("product_qty", "product_uom", "company_id") + def _compute_price_unit_and_date_planned_and_name(self): + res = super()._compute_price_unit_and_date_planned_and_name() + self._compute_discounts() + return res + + def _compute_discounts(self): + for line in self: + if not line.company_id or not line.product_id or line.invoice_lines: + continue + params = {"order_id": line.order_id} + seller = line.product_id._select_seller( + partner_id=line.partner_id, + quantity=line.product_qty, + date=line.order_id.date_order + and line.order_id.date_order.date() + or fields.Date.context_today(line), + uom_id=line.product_uom, + params=params, + ) + if not seller: + continue + line.update( + { + fname: seller[fname] or 0.0 + for fname in self._get_multiple_discount_field_names() + } + ) + + def _prepare_account_move_line(self, move=False): + self.ensure_one() + res = super()._prepare_account_move_line(move) + res.update( + { + fname: self[fname] + for fname in self._get_multiple_discount_field_names() + } + ) + return res + + @api.model + def _prepare_purchase_order_line( + self, product_id, product_qty, product_uom, company_id, supplier, po + ): + res = super()._prepare_purchase_order_line( + product_id, product_qty, product_uom, company_id, supplier, po + ) + today = fields.Date.today() + partner = supplier.partner_id + uom_po_qty = product_uom._compute_quantity( + product_qty, product_id.uom_po_id, rounding_method="HALF-UP" + ) + seller = product_id.with_company(company_id)._select_seller( + partner_id=partner, + quantity=uom_po_qty, + date=po.date_order and max(po.date_order.date(), today) or today, + uom_id=product_id.uom_po_id, + ) + res.update( + { + fname: seller[fname] or 0.0 + for fname in self._get_multiple_discount_field_names() + } + ) + return res diff --git a/purchase_triple_discount/models/purchase_triple_discount_mixin.py b/purchase_triple_discount/models/purchase_triple_discount_mixin.py new file mode 100644 index 0000000..d6df615 --- /dev/null +++ b/purchase_triple_discount/models/purchase_triple_discount_mixin.py @@ -0,0 +1,82 @@ +# Copyright 2017-19 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import functools + +from odoo import api +from odoo import fields +from odoo import models + + +class TripleDiscountMixin(models.AbstractModel): + _name = "purchase.triple.discount.mixin" + _description = "Purchase Triple Discount Mixin" + + discount = fields.Float( + compute="_compute_discount", + store=True, + ) + discount1 = fields.Float( + string="Disc. 1 (%)", + digits="Discount", + readonly=False, + ) + + discount2 = fields.Float( + string="Disc. 2 (%)", + digits="Discount", + readonly=False, + ) + discount3 = fields.Float( + string="Disc. 3 (%)", + digits="Discount", + readonly=False, + ) + + _sql_constraints = [ + ( + "discount1_limit", + "CHECK (discount1 <= 100.0)", + "Discount 1 must be lower than 100%.", + ), + ( + "discount2_limit", + "CHECK (discount2 <= 100.0)", + "Discount 2 must be lower than 100%.", + ), + ( + "discount3_limit", + "CHECK (discount3 <= 100.0)", + "Discount 3 must be lower than 100%.", + ), + ] + + @api.depends(lambda self: self._get_multiple_discount_field_names()) + def _compute_discount(self): + for record in self: + record.discount = record._get_aggregated_discount_from_values( + { + fname: record[fname] + for fname in record._get_multiple_discount_field_names() + } + ) + + def _get_aggregated_discount_from_values(self, values): + discount_fnames = self._get_multiple_discount_field_names() + discounts = [] + for discount_fname in discount_fnames: + discounts.append(values.get(discount_fname) or 0.0) + return self._get_aggregated_multiple_discounts(discounts) + + @staticmethod + def _get_multiple_discount_field_names(): + return ["discount1", "discount2", "discount3"] + + @staticmethod + def _get_aggregated_multiple_discounts(discounts): + discount_values = [] + for discount in discounts: + discount_values.append(1 - (discount or 0.0) / 100.0) + aggregated_discount = ( + 1 - functools.reduce((lambda x, y: x * y), discount_values) + ) * 100 + return aggregated_discount diff --git a/purchase_triple_discount/models/res_partner.py b/purchase_triple_discount/models/res_partner.py new file mode 100644 index 0000000..2deb94e --- /dev/null +++ b/purchase_triple_discount/models/res_partner.py @@ -0,0 +1,28 @@ +# Copyright 2019 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import fields +from odoo import models + + +class ResPartner(models.Model): + _inherit = "res.partner" + + default_supplierinfo_discount1 = fields.Float( + string="Default Supplier Discount 1 (%)", + digits="Discount", + help="This value will be used as the default one, for each new " + "supplierinfo line depending on that supplier.", + ) + + default_supplierinfo_discount2 = fields.Float( + string="Default Supplier Discount 2 (%)", + digits="Discount", + help="This value will be used as the default one, for each new " + "supplierinfo line depending on that supplier.", + ) + default_supplierinfo_discount3 = fields.Float( + string="Default Supplier Discount 3 (%)", + digits="Discount", + help="This value will be used as the default one, for each new " + "supplierinfo line depending on that supplier.", + ) diff --git a/purchase_triple_discount/pyproject.toml b/purchase_triple_discount/pyproject.toml new file mode 100644 index 0000000..4231d0c --- /dev/null +++ b/purchase_triple_discount/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/purchase_triple_discount/readme/CONTRIBUTORS.md b/purchase_triple_discount/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..e2a040a --- /dev/null +++ b/purchase_triple_discount/readme/CONTRIBUTORS.md @@ -0,0 +1,9 @@ +- [Tecnativa](https://www.tecnativa.com): + + > - David Vidal + > - Pedro M. Baeza + +- Sylvain LE GAL () + +- [ForgeFlow S.L.](https://www.forgeflow.com): + - Christopher Ormaza \<\> diff --git a/purchase_triple_discount/readme/DESCRIPTION.md b/purchase_triple_discount/readme/DESCRIPTION.md new file mode 100644 index 0000000..737cc29 --- /dev/null +++ b/purchase_triple_discount/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +This module allows to have three successive discounts on every purchase +order line. diff --git a/purchase_triple_discount/readme/USAGE.md b/purchase_triple_discount/readme/USAGE.md new file mode 100644 index 0000000..0ee72b9 --- /dev/null +++ b/purchase_triple_discount/readme/USAGE.md @@ -0,0 +1,24 @@ +Create a new purchase order and add discounts in any of the three +discount fields given. They go in order of precedence so discount 2 will +be calculated over discount 1 and discount 3 over the result of discount +2. For example, let's divide by two on every discount: + +Unit price: 600.00 -\> + +> - Disc. 1 = 50% -\> Amount = 300.00 +> - Disc. 2 = 50% -\> Amount = 150.00 +> - Disc. 3 = 50% -\> Amount = 75.00 + +You can also use negative values to charge instead of discount: + +Unit price: 600.00 -\> + +> - Disc. 1 = 50% -\> Amount = 300.00 +> - Disc. 2 = -5% -\> Amount = 315.00 + +- When the purchase order is validated, the discounts will be added to + the corresponding vendor pricelist. +- Vendor pricelists can be edited as well with their corresponding new + second and third discounts. +- A default second or third discount can be set in every vendor *Sale & + Purchases* tab. diff --git a/purchase_triple_discount/static/description/icon.png b/purchase_triple_discount/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/purchase_triple_discount/static/description/icon.png differ diff --git a/purchase_triple_discount/static/description/index.html b/purchase_triple_discount/static/description/index.html new file mode 100644 index 0000000..8b725af --- /dev/null +++ b/purchase_triple_discount/static/description/index.html @@ -0,0 +1,477 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Purchase Order Triple Discount

+ +

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

+

This module allows to have three successive discounts on every purchase +order line.

+

Table of contents

+ +
+

Usage

+

Create a new purchase order and add discounts in any of the three +discount fields given. They go in order of precedence so discount 2 will +be calculated over discount 1 and discount 3 over the result of discount +2. For example, let’s divide by two on every discount:

+

Unit price: 600.00 ->

+
+
    +
  • Disc. 1 = 50% -> Amount = 300.00
  • +
  • Disc. 2 = 50% -> Amount = 150.00
  • +
  • Disc. 3 = 50% -> Amount = 75.00
  • +
+
+

You can also use negative values to charge instead of discount:

+

Unit price: 600.00 ->

+
+
    +
  • Disc. 1 = 50% -> Amount = 300.00
  • +
  • Disc. 2 = -5% -> Amount = 315.00
  • +
+
+
    +
  • When the purchase order is validated, the discounts will be added to +the corresponding vendor pricelist.
  • +
  • Vendor pricelists can be edited as well with their corresponding new +second and third discounts.
  • +
  • A default second or third discount can be set in every vendor Sale & +Purchases tab.
  • +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
  • GRAP
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/purchase-workflow project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+
+ + diff --git a/purchase_triple_discount/tests/__init__.py b/purchase_triple_discount/tests/__init__.py new file mode 100644 index 0000000..19588b8 --- /dev/null +++ b/purchase_triple_discount/tests/__init__.py @@ -0,0 +1 @@ +from . import test_purchase_discount diff --git a/purchase_triple_discount/tests/test_purchase_discount.py b/purchase_triple_discount/tests/test_purchase_discount.py new file mode 100644 index 0000000..f01e603 --- /dev/null +++ b/purchase_triple_discount/tests/test_purchase_discount.py @@ -0,0 +1,227 @@ +# Copyright 2017-19 Tecnativa - David Vidal +# Copyright 2019 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests import Form +from odoo.tests import common + + +class TestPurchaseOrder(common.TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.supplierinfo_obj = cls.env["product.supplierinfo"] + cls.account_move_model = cls.env["account.move"] + cls.partner = cls.env["res.partner"].create( + { + "name": "Mr. Odoo", + } + ) + cls.partner2 = cls.env["res.partner"].create( + { + "name": "Mrs. Odoo", + } + ) + cls.product1 = cls.env["product.product"].create( + { + "name": "Test Product 1", + "purchase_method": "purchase", + } + ) + cls.product2 = cls.env["product.product"].create( + { + "name": "Test Product 2", + "purchase_method": "purchase", + } + ) + cls.supplierinfo = cls.supplierinfo_obj.create( + { + "min_qty": 0.0, + "partner_id": cls.partner2.id, + "product_tmpl_id": cls.product1.product_tmpl_id.id, + "price": 100, + "discount1": 10, + "discount2": 20, + "discount3": 30, + } + ) + cls.supplierinfo2 = cls.supplierinfo_obj.create( + { + "min_qty": 10.0, + "partner_id": cls.partner2.id, + "product_tmpl_id": cls.product1.product_tmpl_id.id, + "price": 100, + "discount3": 50, + } + ) + cls.tax = cls.env["account.tax"].create( + { + "name": "TAX 15%", + "amount_type": "percent", + "type_tax_use": "purchase", + "amount": 15.0, + } + ) + cls.order = cls.env["purchase.order"].create( + { + "partner_id": cls.partner.id, + } + ) + cls.order2 = cls.env["purchase.order"].create( + { + "partner_id": cls.partner2.id, + } + ) + po_line = cls.env["purchase.order.line"] + cls.po_line1 = po_line.create( + { + "order_id": cls.order.id, + "product_id": cls.product1.id, + "date_planned": "2018-01-19 00:00:00", + "name": "Line 1", + "product_qty": 1.0, + "product_uom": cls.product1.uom_id.id, + "taxes_id": [(6, 0, [cls.tax.id])], + "price_unit": 600.0, + } + ) + cls.po_line2 = po_line.create( + { + "order_id": cls.order.id, + "product_id": cls.product2.id, + "date_planned": "2018-01-19 00:00:00", + "name": "Line 2", + "product_qty": 10.0, + "product_uom": cls.product2.uom_id.id, + "taxes_id": [(6, 0, [cls.tax.id])], + "price_unit": 60.0, + } + ) + cls.po_line3 = po_line.create( + { + "order_id": cls.order2.id, + "product_id": cls.product1.id, + "date_planned": "2020-01-01 00:00:00", + "name": "Line 1", + "product_qty": 1.0, + "product_uom": cls.product1.uom_id.id, + "taxes_id": [(6, 0, [cls.tax.id])], + "price_unit": 600.0, + } + ) + + def test_01_purchase_order_classic_discount(self): + """Tests with single discount""" + self.po_line1.discount1 = 50.0 + self.po_line2.discount1 = 75.0 + self.assertEqual(self.po_line1.price_subtotal, 300.0) + self.assertEqual(self.po_line2.price_subtotal, 150.0) + self.assertEqual(self.order.amount_untaxed, 450.0) + self.assertEqual(self.order.amount_tax, 67.5) + # Mix taxed and untaxed: + self.po_line1.taxes_id = False + self.assertEqual(self.order.amount_tax, 22.5) + + def test_02_purchase_order_simple_triple_discount(self): + """Tests on a single line""" + self.po_line2.unlink() + # Divide by two on every discount: + self.po_line1.discount1 = 50.0 + self.po_line1.discount2 = 50.0 + self.po_line1.discount3 = 50.0 + self.assertEqual(self.po_line1.price_subtotal, 75.0) + self.assertEqual(self.order.amount_untaxed, 75.0) + self.assertEqual(self.order.amount_tax, 11.25) + # Unset first discount: + self.po_line1.discount1 = 0.0 + self.assertEqual(self.po_line1.price_subtotal, 150.0) + self.assertEqual(self.order.amount_untaxed, 150.0) + self.assertEqual(self.order.amount_tax, 22.5) + # Set a charge instead: + self.po_line1.discount2 = -50.0 + self.assertEqual(self.po_line1.price_subtotal, 450.0) + self.assertEqual(self.order.amount_untaxed, 450.0) + self.assertEqual(self.order.amount_tax, 67.5) + + def test_03_purchase_order_complex_triple_discount(self): + """Tests on multiple lines""" + self.po_line1.discount1 = 50.0 + self.po_line1.discount2 = 50.0 + self.po_line1.discount3 = 50.0 + self.assertEqual(self.po_line1.price_subtotal, 75.0) + self.assertEqual(self.order.amount_untaxed, 675.0) + self.assertEqual(self.order.amount_tax, 101.25) + self.po_line2.discount3 = 50.0 + self.assertEqual(self.po_line2.price_subtotal, 300.0) + self.assertEqual(self.order.amount_untaxed, 375.0) + self.assertEqual(self.order.amount_tax, 56.25) + + def test_04_purchase_order_triple_discount_invoicing(self): + """When a confirmed order is invoiced, the resultant invoice + should inherit the discounts""" + self.po_line1.discount1 = 50.0 + self.po_line1.discount2 = 50.0 + self.po_line1.discount3 = 50.0 + self.po_line2.discount3 = 50.0 + self.order.button_confirm() + invoice_form = Form( + self.account_move_model.with_context(default_move_type="in_invoice") + ) + invoice_form.partner_id = self.order.partner_id + + self.invoice = invoice_form.save() + self.invoice.purchase_id = self.order.id + self.invoice._onchange_purchase_auto_complete() + + self.assertEqual( + self.po_line1.discount1, self.invoice.invoice_line_ids[0].discount1 + ) + self.assertEqual( + self.po_line1.discount2, self.invoice.invoice_line_ids[0].discount2 + ) + self.assertEqual( + self.po_line1.discount3, self.invoice.invoice_line_ids[0].discount3 + ) + self.assertEqual( + self.po_line2.discount3, self.invoice.invoice_line_ids[1].discount3 + ) + self.assertEqual(self.order.amount_total, self.invoice.amount_total) + + def test_05_purchase_order_default_discounts(self): + with Form(self.order2).order_line.edit(0) as line: + line.product_qty = 1.0 + self.assertEqual(line.discount1, 10) + self.assertEqual(line.discount2, 20) + self.assertEqual(line.discount3, 30) + line.product_qty = 10 + self.assertFalse(line.discount1) + self.assertFalse(line.discount2) + self.assertEqual(line.discount3, 50) + + def test_06_supplierinfo_from_purchaseorder(self): + self.order2.order_line.create( + { + "order_id": self.order2.id, + "product_id": self.product2.id, + "date_planned": "2020-01-01 00:00:00", + "name": "Line 2", + "product_qty": 1.0, + "product_uom": self.product2.uom_id.id, + "taxes_id": [(6, 0, [self.tax.id])], + "price_unit": 999.0, + "discount1": 11.11, + "discount2": 22.22, + "discount3": 33.33, + } + ) + self.order2.button_confirm() + seller = self.supplierinfo_obj.search( + [ + ("partner_id", "=", self.partner2.id), + ("product_tmpl_id", "=", self.product2.product_tmpl_id.id), + ] + ) + self.assertTrue(seller) + self.assertEqual(seller.discount1, 11.11) + self.assertEqual(seller.discount2, 22.22) + self.assertEqual(seller.discount3, 33.33) diff --git a/purchase_triple_discount/views/product_supplierinfo_view.xml b/purchase_triple_discount/views/product_supplierinfo_view.xml new file mode 100644 index 0000000..c5c5f3d --- /dev/null +++ b/purchase_triple_discount/views/product_supplierinfo_view.xml @@ -0,0 +1,31 @@ + + + product.supplierinfo + + + + 1 + + + + + + + + + + + product.supplierinfo + + + + 1 + + + + + + + + + diff --git a/purchase_triple_discount/views/purchase_view.xml b/purchase_triple_discount/views/purchase_view.xml new file mode 100644 index 0000000..a1dc1d3 --- /dev/null +++ b/purchase_triple_discount/views/purchase_view.xml @@ -0,0 +1,24 @@ + + + + purchase.order.triple.discount.form + purchase.order + + + + 1 + + + + + + + + + diff --git a/purchase_triple_discount/views/res_partner_view.xml b/purchase_triple_discount/views/res_partner_view.xml new file mode 100644 index 0000000..bf22756 --- /dev/null +++ b/purchase_triple_discount/views/res_partner_view.xml @@ -0,0 +1,25 @@ + + + res.partner + + + + + + + + + + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..519b295 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[tool.black] +line-length = 88 +target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] +include = '\.pyi?$' +extend-exclude = ''' +/( + # directories + \.eggs + | \.git + | \.hg + | \.mypy_cache + | \.tox + | \.venv + | build + | dist + | setup +)/ +''' + +[tool.isort] +profile = "black" +force_single_line = true +line_length = 88 +multi_line_output = 3 +include_trailing_comma = true +force_grid_wrap = 0 +use_parentheses = true +ensure_newline_before_comments = true +skip_glob = ["*/__init__.py"] +known_odoo = ["odoo"] +known_odoo_addons = ["odoo.addons"] +sections = ["FUTURE", "STDLIB", "THIRDPARTY", "ODOO", "ODOO_ADDONS", "FIRSTPARTY", "LOCALFOLDER"] +default_section = "THIRDPARTY" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9cd1629 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +# generated from manifests external_dependencies diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..9e0e68e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,20 @@ +[flake8] +max-line-length = 88 +max-complexity = 16 +select = C,E,F,W,B,B9 +ignore = E203,E501,W503,B950 + +[isort] +profile = black +force_single_line = True +line_length = 88 +multi_line_output = 3 +include_trailing_comma = True +force_grid_wrap = 0 +use_parentheses = True +ensure_newline_before_comments = True +skip_glob = */__init__.py +known_odoo=odoo +known_odoo_addons=odoo.addons +sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER +default_section=THIRDPARTY diff --git a/setup/.setuptools-odoo-make-default-ignore b/setup/.setuptools-odoo-make-default-ignore new file mode 100644 index 0000000..207e615 --- /dev/null +++ b/setup/.setuptools-odoo-make-default-ignore @@ -0,0 +1,2 @@ +# addons listed in this file are ignored by +# setuptools-odoo-make-default (one addon per line) diff --git a/setup/README b/setup/README new file mode 100644 index 0000000..a63d633 --- /dev/null +++ b/setup/README @@ -0,0 +1,2 @@ +To learn more about this directory, please visit +https://pypi.python.org/pypi/setuptools-odoo