Compare commits
No commits in common. "16.0" and "8.0" have entirely different histories.
|
@ -1,22 +0,0 @@
|
|||
# Do NOT update manually; changes here will be overwritten by Copier
|
||||
_commit: v1.17.2
|
||||
_src_path: gh:oca/oca-addons-repo-template
|
||||
ci: GitHub
|
||||
generate_requirements_txt: true
|
||||
github_check_license: true
|
||||
github_ci_extra_env: {}
|
||||
github_enable_codecov: true
|
||||
github_enable_makepot: true
|
||||
github_enable_stale_action: true
|
||||
github_enforce_dev_status_compatibility: true
|
||||
include_wkhtmltopdf: false
|
||||
odoo_test_flavor: Both
|
||||
odoo_version: 16.0
|
||||
org_name: Odoo Community Association (OCA)
|
||||
org_slug: OCA
|
||||
rebel_module_groups: []
|
||||
repo_description: 'TODO: add repo description.'
|
||||
repo_name: reporting-engine
|
||||
repo_slug: reporting-engine
|
||||
repo_website: https://github.com/OCA/reporting-engine
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
# Configuration for known file extensions
|
||||
[*.{css,js,json,less,md,py,rst,sass,scss,xml,yaml,yml}]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.{json,yml,yaml,rst,md}]
|
||||
indent_size = 2
|
||||
|
||||
# Do not configure editor for libs and autogenerated content
|
||||
[{*/static/{lib,src/lib}/**,*/static/description/index.html,*/readme/../README.rst}]
|
||||
charset = unset
|
||||
end_of_line = unset
|
||||
indent_size = unset
|
||||
indent_style = unset
|
||||
insert_final_newline = false
|
||||
trim_trailing_whitespace = false
|
188
.eslintrc.yml
188
.eslintrc.yml
|
@ -1,188 +0,0 @@
|
|||
env:
|
||||
browser: true
|
||||
es6: true
|
||||
|
||||
# See https://github.com/OCA/odoo-community.org/issues/37#issuecomment-470686449
|
||||
parserOptions:
|
||||
ecmaVersion: 2019
|
||||
|
||||
overrides:
|
||||
- files:
|
||||
- "**/*.esm.js"
|
||||
parserOptions:
|
||||
sourceType: module
|
||||
|
||||
# Globals available in Odoo that shouldn't produce errorings
|
||||
globals:
|
||||
_: readonly
|
||||
$: readonly
|
||||
fuzzy: readonly
|
||||
jQuery: readonly
|
||||
moment: readonly
|
||||
odoo: readonly
|
||||
openerp: readonly
|
||||
owl: readonly
|
||||
luxon: readonly
|
||||
|
||||
# Styling is handled by Prettier, so we only need to enable AST rules;
|
||||
# see https://github.com/OCA/maintainer-quality-tools/pull/618#issuecomment-558576890
|
||||
rules:
|
||||
accessor-pairs: warn
|
||||
array-callback-return: warn
|
||||
callback-return: warn
|
||||
capitalized-comments:
|
||||
- warn
|
||||
- always
|
||||
- ignoreConsecutiveComments: true
|
||||
ignoreInlineComments: true
|
||||
complexity:
|
||||
- warn
|
||||
- 15
|
||||
constructor-super: warn
|
||||
dot-notation: warn
|
||||
eqeqeq: warn
|
||||
global-require: warn
|
||||
handle-callback-err: warn
|
||||
id-blacklist: warn
|
||||
id-match: warn
|
||||
init-declarations: error
|
||||
max-depth: warn
|
||||
max-nested-callbacks: warn
|
||||
max-statements-per-line: warn
|
||||
no-alert: warn
|
||||
no-array-constructor: warn
|
||||
no-caller: warn
|
||||
no-case-declarations: warn
|
||||
no-class-assign: warn
|
||||
no-cond-assign: error
|
||||
no-const-assign: error
|
||||
no-constant-condition: warn
|
||||
no-control-regex: warn
|
||||
no-debugger: error
|
||||
no-delete-var: warn
|
||||
no-div-regex: warn
|
||||
no-dupe-args: error
|
||||
no-dupe-class-members: error
|
||||
no-dupe-keys: error
|
||||
no-duplicate-case: error
|
||||
no-duplicate-imports: error
|
||||
no-else-return: warn
|
||||
no-empty-character-class: warn
|
||||
no-empty-function: error
|
||||
no-empty-pattern: error
|
||||
no-empty: warn
|
||||
no-eq-null: error
|
||||
no-eval: error
|
||||
no-ex-assign: error
|
||||
no-extend-native: warn
|
||||
no-extra-bind: warn
|
||||
no-extra-boolean-cast: warn
|
||||
no-extra-label: warn
|
||||
no-fallthrough: warn
|
||||
no-func-assign: error
|
||||
no-global-assign: error
|
||||
no-implicit-coercion:
|
||||
- warn
|
||||
- allow: ["~"]
|
||||
no-implicit-globals: warn
|
||||
no-implied-eval: warn
|
||||
no-inline-comments: warn
|
||||
no-inner-declarations: warn
|
||||
no-invalid-regexp: warn
|
||||
no-irregular-whitespace: warn
|
||||
no-iterator: warn
|
||||
no-label-var: warn
|
||||
no-labels: warn
|
||||
no-lone-blocks: warn
|
||||
no-lonely-if: error
|
||||
no-mixed-requires: error
|
||||
no-multi-str: warn
|
||||
no-native-reassign: error
|
||||
no-negated-condition: warn
|
||||
no-negated-in-lhs: error
|
||||
no-new-func: warn
|
||||
no-new-object: warn
|
||||
no-new-require: warn
|
||||
no-new-symbol: warn
|
||||
no-new-wrappers: warn
|
||||
no-new: warn
|
||||
no-obj-calls: warn
|
||||
no-octal-escape: warn
|
||||
no-octal: warn
|
||||
no-param-reassign: warn
|
||||
no-path-concat: warn
|
||||
no-process-env: warn
|
||||
no-process-exit: warn
|
||||
no-proto: warn
|
||||
no-prototype-builtins: warn
|
||||
no-redeclare: warn
|
||||
no-regex-spaces: warn
|
||||
no-restricted-globals: warn
|
||||
no-restricted-imports: warn
|
||||
no-restricted-modules: warn
|
||||
no-restricted-syntax: warn
|
||||
no-return-assign: error
|
||||
no-script-url: warn
|
||||
no-self-assign: warn
|
||||
no-self-compare: warn
|
||||
no-sequences: warn
|
||||
no-shadow-restricted-names: warn
|
||||
no-shadow: warn
|
||||
no-sparse-arrays: warn
|
||||
no-sync: warn
|
||||
no-this-before-super: warn
|
||||
no-throw-literal: warn
|
||||
no-undef-init: warn
|
||||
no-undef: error
|
||||
no-unmodified-loop-condition: warn
|
||||
no-unneeded-ternary: error
|
||||
no-unreachable: error
|
||||
no-unsafe-finally: error
|
||||
no-unused-expressions: error
|
||||
no-unused-labels: error
|
||||
no-unused-vars: error
|
||||
no-use-before-define: error
|
||||
no-useless-call: warn
|
||||
no-useless-computed-key: warn
|
||||
no-useless-concat: warn
|
||||
no-useless-constructor: warn
|
||||
no-useless-escape: warn
|
||||
no-useless-rename: warn
|
||||
no-void: warn
|
||||
no-with: warn
|
||||
operator-assignment: [error, always]
|
||||
prefer-const: warn
|
||||
radix: warn
|
||||
require-yield: warn
|
||||
sort-imports: warn
|
||||
spaced-comment: [error, always]
|
||||
strict: [error, function]
|
||||
use-isnan: error
|
||||
valid-jsdoc:
|
||||
- warn
|
||||
- prefer:
|
||||
arg: param
|
||||
argument: param
|
||||
augments: extends
|
||||
constructor: class
|
||||
exception: throws
|
||||
func: function
|
||||
method: function
|
||||
prop: property
|
||||
return: returns
|
||||
virtual: abstract
|
||||
yield: yields
|
||||
preferType:
|
||||
array: Array
|
||||
bool: Boolean
|
||||
boolean: Boolean
|
||||
number: Number
|
||||
object: Object
|
||||
str: String
|
||||
string: String
|
||||
requireParamDescription: false
|
||||
requireReturn: false
|
||||
requireReturnDescription: false
|
||||
requireReturnType: false
|
||||
valid-typeof: warn
|
||||
yoda: warn
|
12
.flake8
12
.flake8
|
@ -1,12 +0,0 @@
|
|||
[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 behaviour)
|
||||
# E501: flake8 line length (covered by bugbear B950)
|
||||
# W503: line break before binary operator (black behaviour)
|
||||
ignore = E203,E501,W503
|
||||
per-file-ignores=
|
||||
__init__.py:F401
|
|
@ -1,46 +0,0 @@
|
|||
name: pre-commit
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "16.0*"
|
||||
push:
|
||||
branches:
|
||||
- "16.0"
|
||||
- "16.0-ocabot-*"
|
||||
|
||||
jobs:
|
||||
pre-commit:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: "3.11"
|
||||
- name: Get python version
|
||||
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
|
||||
- uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pre-commit
|
||||
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
|
||||
- name: Install pre-commit
|
||||
run: pip install pre-commit
|
||||
- name: Run pre-commit
|
||||
run: pre-commit run --all-files --show-diff-on-failure --color=always
|
||||
env:
|
||||
# Consider valid a PR that changes README fragments but doesn't
|
||||
# change the README.rst file itself. It's not really a problem
|
||||
# because the bot will update it anyway after merge. This way, we
|
||||
# lower the barrier for functional contributors that want to fix the
|
||||
# readme fragments, while still letting developers get README
|
||||
# auto-generated (which also helps functionals when using runboat).
|
||||
# DOCS https://pre-commit.com/#temporarily-disabling-hooks
|
||||
SKIP: oca-gen-addon-readme
|
||||
- name: Check that all files generated by pre-commit are in git
|
||||
run: |
|
||||
newfiles="$(git ls-files --others --exclude-from=.gitignore)"
|
||||
if [ "$newfiles" != "" ] ; then
|
||||
echo "Please check-in the following files:"
|
||||
echo "$newfiles"
|
||||
exit 1
|
||||
fi
|
|
@ -1,69 +0,0 @@
|
|||
name: Mark stale issues and pull requests
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 12 * * 0"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Stale PRs and issues policy
|
||||
uses: actions/stale@v4
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
# General settings.
|
||||
ascending: true
|
||||
remove-stale-when-updated: true
|
||||
# Pull Requests settings.
|
||||
# 120+30 day stale policy for PRs
|
||||
# * Except PRs marked as "no stale"
|
||||
days-before-pr-stale: 120
|
||||
days-before-pr-close: 30
|
||||
exempt-pr-labels: "no stale"
|
||||
stale-pr-label: "stale"
|
||||
stale-pr-message: >
|
||||
There hasn't been any activity on this pull request in the past 4 months, so
|
||||
it has been marked as stale and it will be closed automatically if no
|
||||
further activity occurs in the next 30 days.
|
||||
|
||||
If you want this PR to never become stale, please ask a PSC member to apply
|
||||
the "no stale" label.
|
||||
# Issues settings.
|
||||
# 180+30 day stale policy for open issues
|
||||
# * Except Issues marked as "no stale"
|
||||
days-before-issue-stale: 180
|
||||
days-before-issue-close: 30
|
||||
exempt-issue-labels: "no stale,needs more information"
|
||||
stale-issue-label: "stale"
|
||||
stale-issue-message: >
|
||||
There hasn't been any activity on this issue in the past 6 months, so it has
|
||||
been marked as stale and it will be closed automatically if no further
|
||||
activity occurs in the next 30 days.
|
||||
|
||||
If you want this issue to never become stale, please ask a PSC member to
|
||||
apply the "no stale" label.
|
||||
|
||||
# 15+30 day stale policy for issues pending more information
|
||||
# * Issues that are pending more information
|
||||
# * Except Issues marked as "no stale"
|
||||
- name: Needs more information stale issues policy
|
||||
uses: actions/stale@v4
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
ascending: true
|
||||
only-labels: "needs more information"
|
||||
exempt-issue-labels: "no stale"
|
||||
days-before-stale: 15
|
||||
days-before-close: 30
|
||||
days-before-pr-stale: -1
|
||||
days-before-pr-close: -1
|
||||
remove-stale-when-updated: true
|
||||
stale-issue-label: "stale"
|
||||
stale-issue-message: >
|
||||
This issue needs more information and there hasn't been any activity
|
||||
recently, so it has been marked as stale and it will be closed automatically
|
||||
if no further activity occurs in the next 30 days.
|
||||
|
||||
If you think this is a mistake, please ask a PSC member to remove the "needs
|
||||
more information" label.
|
|
@ -1,69 +0,0 @@
|
|||
name: tests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "16.0*"
|
||||
push:
|
||||
branches:
|
||||
- "16.0"
|
||||
- "16.0-ocabot-*"
|
||||
|
||||
jobs:
|
||||
unreleased-deps:
|
||||
runs-on: ubuntu-latest
|
||||
name: Detect unreleased dependencies
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: |
|
||||
for reqfile in requirements.txt test-requirements.txt ; do
|
||||
if [ -f ${reqfile} ] ; then
|
||||
result=0
|
||||
# reject non-comment lines that contain a / (i.e. URLs, relative paths)
|
||||
grep "^[^#].*/" ${reqfile} || result=$?
|
||||
if [ $result -eq 0 ] ; then
|
||||
echo "Unreleased dependencies found in ${reqfile}."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
test:
|
||||
runs-on: ubuntu-22.04
|
||||
container: ${{ matrix.container }}
|
||||
name: ${{ matrix.name }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-odoo16.0:latest
|
||||
name: test with Odoo
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-ocb16.0:latest
|
||||
name: test with OCB
|
||||
makepot: "true"
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:12.0
|
||||
env:
|
||||
POSTGRES_USER: odoo
|
||||
POSTGRES_PASSWORD: odoo
|
||||
POSTGRES_DB: odoo
|
||||
ports:
|
||||
- 5432:5432
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Install addons and dependencies
|
||||
run: oca_install_addons
|
||||
- name: Check licenses
|
||||
run: manifestoo -d . check-licenses
|
||||
- name: Check development status
|
||||
run: manifestoo -d . check-dev-status --default-dev-status=Beta
|
||||
- name: Initialize test db
|
||||
run: oca_init_test_database
|
||||
- name: Run tests
|
||||
run: oca_run_tests
|
||||
- uses: codecov/codecov-action@v1
|
||||
- name: Update .pot files
|
||||
run: oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }}
|
||||
if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'OCA' }}
|
|
@ -1,8 +1,6 @@
|
|||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
/.venv
|
||||
/.pytest_cache
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
@ -15,6 +13,7 @@ build/
|
|||
develop-eggs/
|
||||
dist/
|
||||
eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
|
@ -22,7 +21,6 @@ var/
|
|||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
*.eggs
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
|
@ -42,19 +40,6 @@ coverage.xml
|
|||
# Pycharm
|
||||
.idea
|
||||
|
||||
# Eclipse
|
||||
.settings
|
||||
|
||||
# Visual Studio cache/options directory
|
||||
.vs/
|
||||
.vscode
|
||||
|
||||
# OSX Files
|
||||
.DS_Store
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
|
||||
# Mr Developer
|
||||
.mr.developer.cfg
|
||||
.project
|
||||
|
@ -69,6 +54,3 @@ docs/_build/
|
|||
# Backup files
|
||||
*~
|
||||
*.swp
|
||||
|
||||
# OCA rules
|
||||
!static/lib/
|
||||
|
|
13
.isort.cfg
13
.isort.cfg
|
@ -1,13 +0,0 @@
|
|||
[settings]
|
||||
; see https://github.com/psf/black
|
||||
multi_line_output=3
|
||||
include_trailing_comma=True
|
||||
force_grid_wrap=0
|
||||
combine_as_imports=True
|
||||
use_parentheses=True
|
||||
line_length=88
|
||||
known_odoo=odoo
|
||||
known_odoo_addons=odoo.addons
|
||||
sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER
|
||||
default_section=THIRDPARTY
|
||||
ensure_newline_before_comments = True
|
|
@ -1,152 +0,0 @@
|
|||
exclude: |
|
||||
(?x)
|
||||
# NOT INSTALLABLE ADDONS
|
||||
# END NOT INSTALLABLE ADDONS
|
||||
# Files and folders generated by bots, to avoid loops
|
||||
^setup/|/static/description/index\.html$|
|
||||
# We don't want to mess with tool-generated files
|
||||
.svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/|
|
||||
# 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$|
|
||||
# Don't bother non-technical authors with formatting issues in docs
|
||||
readme/.*\.(rst|md)$|
|
||||
# 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$"
|
||||
- id: en-po-files
|
||||
name: en.po files cannot exist
|
||||
entry: found a en.po file
|
||||
language: fail
|
||||
files: '[a-zA-Z0-9_]*/i18n/en\.po$'
|
||||
- repo: https://github.com/oca/maintainer-tools
|
||||
rev: 969238e47c07d0c40573acff81d170f63245d738
|
||||
hooks:
|
||||
# update the NOT INSTALLABLE ADDONS section above
|
||||
- id: oca-update-pre-commit-excluded-addons
|
||||
- id: oca-fix-manifest-website
|
||||
args: ["https://github.com/OCA/reporting-engine"]
|
||||
- id: oca-gen-addon-readme
|
||||
args:
|
||||
- --addons-dir=.
|
||||
- --branch=16.0
|
||||
- --org-name=OCA
|
||||
- --repo-name=reporting-engine
|
||||
- --if-source-changed
|
||||
- repo: https://github.com/OCA/odoo-pre-commit-hooks
|
||||
rev: v0.0.25
|
||||
hooks:
|
||||
- id: oca-checks-odoo-module
|
||||
- id: oca-checks-po
|
||||
- repo: https://github.com/myint/autoflake
|
||||
rev: v1.6.1
|
||||
hooks:
|
||||
- id: autoflake
|
||||
args:
|
||||
- --expand-star-imports
|
||||
- --ignore-init-module-imports
|
||||
- --in-place
|
||||
- --remove-all-unused-imports
|
||||
- --remove-duplicate-keys
|
||||
- --remove-unused-variables
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 22.8.0
|
||||
hooks:
|
||||
- id: black
|
||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||
rev: v2.7.1
|
||||
hooks:
|
||||
- id: prettier
|
||||
name: prettier (with 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|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
|
||||
- repo: https://github.com/pre-commit/mirrors-eslint
|
||||
rev: v8.24.0
|
||||
hooks:
|
||||
- id: eslint
|
||||
verbose: true
|
||||
args:
|
||||
- --color
|
||||
- --fix
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.3.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: fix-encoding-pragma
|
||||
args: ["--remove"]
|
||||
- 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: v2.38.2
|
||||
hooks:
|
||||
- id: pyupgrade
|
||||
args: ["--keep-percent-format"]
|
||||
- repo: https://github.com/PyCQA/isort
|
||||
rev: 5.12.0
|
||||
hooks:
|
||||
- id: isort
|
||||
name: isort except __init__.py
|
||||
args:
|
||||
- --settings=.
|
||||
exclude: /__init__\.py$
|
||||
- repo: https://github.com/acsone/setuptools-odoo
|
||||
rev: 3.1.8
|
||||
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: 3.9.2
|
||||
hooks:
|
||||
- id: flake8
|
||||
name: flake8
|
||||
additional_dependencies: ["flake8-bugbear==21.9.2"]
|
||||
- repo: https://github.com/OCA/pylint-odoo
|
||||
rev: v8.0.19
|
||||
hooks:
|
||||
- id: pylint_odoo
|
||||
name: pylint with optional checks
|
||||
args:
|
||||
- --rcfile=.pylintrc
|
||||
- --exit-zero
|
||||
verbose: true
|
||||
- id: pylint_odoo
|
||||
args:
|
||||
- --rcfile=.pylintrc-mandatory
|
|
@ -1,8 +0,0 @@
|
|||
# Defaults for all prettier-supported languages.
|
||||
# Prettier will complete this with settings from .editorconfig file.
|
||||
bracketSpacing: false
|
||||
printWidth: 88
|
||||
proseWrap: always
|
||||
semi: true
|
||||
trailingComma: "es5"
|
||||
xmlWhitespaceSensitivity: "strict"
|
123
.pylintrc
123
.pylintrc
|
@ -1,123 +0,0 @@
|
|||
|
||||
|
||||
[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
|
||||
valid-odoo-versions=16.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 travis to see optional checks that failed.
|
||||
# .pylintrc-mandatory containing only mandatory checks is used the pre-commit
|
||||
# config as a blocking check.
|
||||
|
||||
enable=anomalous-backslash-in-string,
|
||||
api-one-deprecated,
|
||||
api-one-multi-together,
|
||||
assignment-from-none,
|
||||
attribute-deprecated,
|
||||
class-camelcase,
|
||||
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,
|
||||
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,
|
||||
attribute-string-redundant,
|
||||
character-not-valid-in-resource-link,
|
||||
consider-merging-classes-inherited,
|
||||
context-overridden,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
dangerous-qweb-replace-wo-priority,
|
||||
deprecated-data-xml-node,
|
||||
deprecated-openerp-xml-node,
|
||||
duplicate-po-message-definition,
|
||||
except-pass,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
manifest-maintainers-list,
|
||||
missing-newline-extrafiles,
|
||||
missing-readme,
|
||||
missing-return,
|
||||
odoo-addons-relative-import,
|
||||
old-api7-method-defined,
|
||||
po-msgstr-variables,
|
||||
po-syntax-error,
|
||||
renamed-field-parameter,
|
||||
resource-not-exist,
|
||||
str-format-used,
|
||||
test-folder-imported,
|
||||
translation-contains-variable,
|
||||
translation-positional-used,
|
||||
unnecessary-utf8-coding-comment,
|
||||
website-manifest-key-not-valid-uri,
|
||||
xml-attribute-translatable,
|
||||
xml-deprecated-qweb-directive,
|
||||
xml-deprecated-tree-attribute,
|
||||
external-request-timeout,
|
||||
# messages that do not cause the lint step to fail
|
||||
consider-merging-classes-inherited,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
deprecated-module,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
missing-manifest-dependency,
|
||||
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
|
|
@ -1,98 +0,0 @@
|
|||
|
||||
[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
|
||||
valid-odoo-versions=16.0
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
disable=all
|
||||
|
||||
enable=anomalous-backslash-in-string,
|
||||
api-one-deprecated,
|
||||
api-one-multi-together,
|
||||
assignment-from-none,
|
||||
attribute-deprecated,
|
||||
class-camelcase,
|
||||
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,
|
||||
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,
|
||||
attribute-string-redundant,
|
||||
character-not-valid-in-resource-link,
|
||||
consider-merging-classes-inherited,
|
||||
context-overridden,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
dangerous-qweb-replace-wo-priority,
|
||||
deprecated-data-xml-node,
|
||||
deprecated-openerp-xml-node,
|
||||
duplicate-po-message-definition,
|
||||
except-pass,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
manifest-maintainers-list,
|
||||
missing-newline-extrafiles,
|
||||
missing-readme,
|
||||
missing-return,
|
||||
odoo-addons-relative-import,
|
||||
old-api7-method-defined,
|
||||
po-msgstr-variables,
|
||||
po-syntax-error,
|
||||
renamed-field-parameter,
|
||||
resource-not-exist,
|
||||
str-format-used,
|
||||
test-folder-imported,
|
||||
translation-contains-variable,
|
||||
translation-positional-used,
|
||||
unnecessary-utf8-coding-comment,
|
||||
website-manifest-key-not-valid-uri,
|
||||
xml-attribute-translatable,
|
||||
xml-deprecated-qweb-directive,
|
||||
xml-deprecated-tree-attribute,
|
||||
external-request-timeout
|
||||
|
||||
[REPORTS]
|
||||
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
|
||||
output-format=colorized
|
||||
reports=no
|
|
@ -0,0 +1,40 @@
|
|||
language: python
|
||||
sudo: false
|
||||
cache:
|
||||
apt: true
|
||||
directories:
|
||||
- $HOME/.cache/pip
|
||||
|
||||
python:
|
||||
- "2.7"
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- expect-dev # provides unbuffer utility
|
||||
- python-lxml # because pip installation is slow
|
||||
|
||||
env:
|
||||
global:
|
||||
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
|
||||
- TRANSIFEX_USER='transbot@odoo-community.org'
|
||||
- secure: NUsXwVrMntcqge1ozKW+DSkP7dq+Rla6JVvFF2c89/g+zJaIqQRi8EQBLoqNwCdMk+rjpQeZt/JPELjH+EzPcmGddhDxOgVB3nUT9LvFXGCHF+NjmHXqyba4tuc7BnpG1WDD+rSlxVCt1aIjNIhhaZ4ic0rCWpKNYu/yFTsmChc=
|
||||
matrix:
|
||||
- LINT_CHECK="1"
|
||||
- TRANSIFEX="1"
|
||||
- TESTS="1" ODOO_REPO="odoo/odoo"
|
||||
- TESTS="1" ODOO_REPO="OCA/OCB"
|
||||
|
||||
virtualenv:
|
||||
system_site_packages: true
|
||||
|
||||
install:
|
||||
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
||||
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
|
||||
- travis_install_nightly
|
||||
|
||||
script:
|
||||
- travis_run_tests
|
||||
|
||||
after_success:
|
||||
- travis_after_tests_success
|
12
LICENSE
12
LICENSE
|
@ -1,7 +1,7 @@
|
|||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
@ -633,8 +633,8 @@ the "copyright" line and a pointer to where the full notice is found.
|
|||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
it under the terms of the GNU Affero General Public License as published
|
||||
by the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
|
@ -643,7 +643,7 @@ the "copyright" line and a pointer to where the full notice is found.
|
|||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
|
@ -658,4 +658,4 @@ specific requirements.
|
|||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
<http://www.gnu.org/licenses/>.
|
84
README.md
84
README.md
|
@ -1,19 +1,20 @@
|
|||
[](https://runbot.odoo-community.org/runbot/repo/github-com-oca-reporting-engine-143)
|
||||
[](https://travis-ci.org/OCA/reporting-engine)
|
||||
[](https://coveralls.io/r/OCA/reporting-engine?branch=8.0)
|
||||
|
||||
[](https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0)
|
||||
[](https://github.com/OCA/reporting-engine/actions/workflows/pre-commit.yml?query=branch%3A16.0)
|
||||
[](https://github.com/OCA/reporting-engine/actions/workflows/test.yml?query=branch%3A16.0)
|
||||
[](https://codecov.io/gh/OCA/reporting-engine)
|
||||
[](https://translation.odoo-community.org/engage/reporting-engine-16-0/?utm_source=widget)
|
||||
OCA alternative reporting engines and reporting utilities for Odoo
|
||||
==================================================================
|
||||
|
||||
<!-- /!\ do not modify above this line -->
|
||||
This repository hosts alternative reporting engines to the ones included on Odoo core (RML, QWeb and Webkit). It is complemented with the ones that host the reports theirself:
|
||||
|
||||
# reporting-engine
|
||||
https://github.com/OCA/account-financial-reporting
|
||||
https://github.com/OCA/purchase-reporting
|
||||
https://github.com/OCA/sale-reporting
|
||||
...
|
||||
|
||||
TODO: add repo description.
|
||||
The convention is to use a suffix to each module to indicate that it's for using with that report engine (for example, account_invoice_report_birt or sale_order_report_pentaho).
|
||||
|
||||
<!-- /!\ do not modify below this line -->
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
It can contain also another utilities directly involved with reports (like merge/split utils, checkers, signing tools and so on).
|
||||
|
||||
[//]: # (addons)
|
||||
|
||||
|
@ -21,46 +22,29 @@ Available addons
|
|||
----------------
|
||||
addon | version | maintainers | summary
|
||||
--- | --- | --- | ---
|
||||
[base_comment_template](base_comment_template/) | 16.0.2.2.1 | | Add conditional mako template to any reporton models that inherits comment.template.
|
||||
[bi_sql_editor](bi_sql_editor/) | 16.0.1.1.1 | [](https://github.com/legalsylvain) | BI Views builder, based on Materialized or Normal SQL Views
|
||||
[bi_view_editor](bi_view_editor/) | 16.0.1.1.0 | | Graphical BI views builder for Odoo
|
||||
[bi_view_editor_spreadsheet_dashboard](bi_view_editor_spreadsheet_dashboard/) | 16.0.1.0.0 | | Glue module for BI View Editor and Spreadsheet Dashboard
|
||||
[report_async](report_async/) | 16.0.1.0.0 | [](https://github.com/kittiu) | Central place to run reports live or async
|
||||
[report_company_details_translatable](report_company_details_translatable/) | 16.0.1.0.0 | | Report Company Details Translatable
|
||||
[report_context](report_context/) | 16.0.1.0.0 | | Adding context to reports
|
||||
[report_csv](report_csv/) | 16.0.2.0.0 | | Base module to create csv report
|
||||
[report_label](report_label/) | 16.0.1.0.1 | [](https://github.com/ivantodorovich) | Print configurable self-adhesive labels reports
|
||||
[report_py3o](report_py3o/) | 16.0.1.0.1 | | Reporting engine based on Libreoffice (ODT -> ODT, ODT -> PDF, ODT -> DOC, ODT -> DOCX, ODS -> ODS, etc.)
|
||||
[report_py3o_fusion_server](report_py3o_fusion_server/) | 16.0.1.0.0 | | Let the fusion server handle format conversion.
|
||||
[report_qr](report_qr/) | 16.0.1.0.0 | | Web QR Manager
|
||||
[report_qweb_decimal_place](report_qweb_decimal_place/) | 16.0.1.0.0 | | Report Qweb Decimal Place
|
||||
[report_qweb_element_page_visibility](report_qweb_element_page_visibility/) | 16.0.1.0.0 | | Report Qweb Element Page Visibility
|
||||
[report_qweb_encrypt](report_qweb_encrypt/) | 16.0.1.0.2 | [](https://github.com/kittiu) | Allow to encrypt qweb pdfs
|
||||
[report_qweb_parameter](report_qweb_parameter/) | 16.0.1.0.0 | | Add new parameters for qweb templates in order to reduce field length and check minimal length
|
||||
[report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 16.0.1.0.0 | | Add watermarks to your QWEB PDF reports
|
||||
[report_substitute](report_substitute/) | 16.0.1.0.1 | [](https://github.com/sbejaoui) | This module allows to create substitution rules for report actions.
|
||||
[report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 16.0.1.0.0 | | Add new parameters for a paper format to be used by wkhtmltopdf command as arguments.
|
||||
[report_xlsx](report_xlsx/) | 16.0.2.0.0 | | Base module to create xlsx report
|
||||
[report_xlsx_helper](report_xlsx_helper/) | 16.0.1.0.0 | | Report xlsx helpers
|
||||
[report_xml](report_xml/) | 16.0.1.1.1 | | Allow to generate XML reports
|
||||
[sql_export](sql_export/) | 16.0.2.1.0 | [](https://github.com/legalsylvain) | Export data in csv file with SQL requests
|
||||
[sql_export_excel](sql_export_excel/) | 16.0.1.0.1 | | Allow to export a sql query to an excel file.
|
||||
[sql_export_mail](sql_export_mail/) | 16.0.2.0.1 | [](https://github.com/legalsylvain) | Send csv file generated by sql query by mail.
|
||||
[sql_request_abstract](sql_request_abstract/) | 16.0.1.0.0 | [](https://github.com/legalsylvain) | Abstract Model to manage SQL Requests
|
||||
[bi_sql_editor](bi_sql_editor/) | 8.0.1.0.0 | | BI Views builder, based on Materialized or Normal SQL Views
|
||||
[bi_view_editor](bi_view_editor/) | 8.0.1.0.0 | | Graphical BI views builder for Odoo 8
|
||||
[report_custom_filename](report_custom_filename/) | 8.0.1.0.1 | | Configure the filename to use when downloading a report
|
||||
[report_qweb_element_page_visibility](report_qweb_element_page_visibility/) | 8.0.1.0.0 | | Report Qweb Element Page Visibility
|
||||
[report_qweb_signer](report_qweb_signer/) | 8.0.1.0.0 | | Sign Qweb PDFs usign a PKCS#12 certificate
|
||||
[report_xls](report_xls/) | 8.0.0.6.1 | | Excel report engine
|
||||
[report_xlsx](report_xlsx/) | 8.0.1.0.0 | | Base module to create xlsx report
|
||||
[report_xml](report_xml/) | 8.0.1.0.0 | | Allow to generate XML reports
|
||||
[report_xml_sample](report_xml_sample/) | 8.0.1.0.0 | | For developers who want an example
|
||||
|
||||
|
||||
Unported addons
|
||||
---------------
|
||||
addon | version | maintainers | summary
|
||||
--- | --- | --- | ---
|
||||
[base_report_assembler](base_report_assembler/) | 1.0 (unported) | | Base Report Assembler
|
||||
|
||||
[//]: # (end addons)
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
## Licenses
|
||||
|
||||
This repository is licensed under [AGPL-3.0](LICENSE).
|
||||
|
||||
However, each module can have a totally different license, as long as they adhere to Odoo Community Association (OCA)
|
||||
policy. Consult each module's `__manifest__.py` file, which contains a `license` key
|
||||
that explains its license.
|
||||
|
||||
----
|
||||
OCA, or the [Odoo Community Association](http://odoo-community.org/), is a nonprofit
|
||||
organization whose mission is to support the collaborative development of Odoo features
|
||||
and promote its widespread use.
|
||||
|
||||
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.
|
||||
|
||||
http://odoo-community.org/
|
||||
|
|
|
@ -1,187 +0,0 @@
|
|||
=======================
|
||||
Base Comments Templates
|
||||
=======================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:00fc443044a8adc3983e4fd2f2627928cc6fe8001f4115c1a66d70b455ba14ee
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |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%2Freporting--engine-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/reporting-engine/tree/16.0/base_comment_template
|
||||
:alt: OCA/reporting-engine
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-base_comment_template
|
||||
: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/reporting-engine&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
Add a new mixin class to define templates of comments to print on documents.
|
||||
The comment templates can be defined like make templates, so you can use variables from linked models.
|
||||
|
||||
Two positions are available for the comments:
|
||||
|
||||
* above document lines (before_lines)
|
||||
* below document lines (after_lines)
|
||||
|
||||
The template are general, and can be attached to any Model and based on some domain defined in the template.
|
||||
You can define one default template per Model and domain, which can be overwritten for any company and partners.
|
||||
It has a priority field (smaller number = higher priority)
|
||||
|
||||
In existing reports, if you add this line will get the comment template if you created one like
|
||||
|
||||
* <span t-raw="o.get_comment_template('position',company_id=o.company_id, partner_id=o.parnter_id )"/> ( or without any parameter)
|
||||
|
||||
|
||||
This module is the base module for following modules:
|
||||
|
||||
* sale_comment_template
|
||||
* purchase_comment_template
|
||||
* invoice_comment_template
|
||||
* stock_picking_comment_template
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
Go to *Settings > Technical > Reporting > Comment Templates* and start designing you comment templates.
|
||||
|
||||
This module is the base module for following modules:
|
||||
|
||||
* sale_comment_template
|
||||
* purchase_comment_template
|
||||
* invoice_comment_template
|
||||
* stock_picking_comment_template
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
#. Go to *Settings* and activate the developer mode.
|
||||
#. Go to *Settings > Technical > Reporting > Comment Templates*.
|
||||
#. Create a new record.
|
||||
#. Define the Company the template is linked or leave default for all companies.
|
||||
#. Define the Partner the template is linked or leave default for all partners.
|
||||
#. Define the Model, Domain the template is linked.
|
||||
#. Define the Position where the template will be printed:
|
||||
|
||||
* above document lines
|
||||
* below document lines
|
||||
|
||||
You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one.
|
||||
If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one.
|
||||
|
||||
The template is a html field which will be rendered just like a mail template, so you can use variables like {{object}}, {{user}}, {{ctx}} to add dynamic content.
|
||||
|
||||
Change the report related to the model from configuration and add a statement like:
|
||||
|
||||
<t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'before_lines')" t-as="comment_template_top">
|
||||
<div t-raw="o.render_comment(comment_template_top)" />
|
||||
|
||||
</t>
|
||||
|
||||
|
||||
<t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'after_lines')" t-as="comment_template_bottom">
|
||||
<div t-raw="o.render_comment(comment_template_bottom)" />
|
||||
|
||||
</t>
|
||||
|
||||
You should always use t-if since the method returns False if no template is found.
|
||||
|
||||
If you want to use Qweb templates, or different context, you can specify it just like in
|
||||
mail.render.mixin with parameters:
|
||||
|
||||
- engine: "inline_template", "qweb" or "qweb_view",
|
||||
- add_context: dict with your own context,
|
||||
- post_process: perform a post processing on rendered result
|
||||
|
||||
so you could use it :
|
||||
|
||||
<t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'before_lines')" t-as="comment_template_top">
|
||||
<div t-raw="o.render_comment(comment_template_top, engine='qweb', add_context={my dict}, postprocess=True)" />
|
||||
|
||||
</t>
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/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 <https://github.com/OCA/reporting-engine/issues/new?body=module:%20base_comment_template%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Camptocamp
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Xavier Jimenez <xavier.jimenez@qubiq.es>
|
||||
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
|
||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||
* Simone Rubino <simone.rubino@agilebg.com>
|
||||
* `DynApps <https://www.dynapps.be>`_:
|
||||
|
||||
* Raf Ven <raf.ven@dynapps.be>
|
||||
|
||||
* `Druidoo <https://www.druidoo.io>`_:
|
||||
|
||||
* Iván Todorovich <ivan.todorovich@druidoo.io>
|
||||
* Pierre Verkest <pierreverkest84@gmail.com>
|
||||
|
||||
* `NextERP Romania <https://www.nexterp.ro>`_:
|
||||
|
||||
* Fekete Mihai <feketemihai@nexterp.ro>
|
||||
|
||||
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||
|
||||
* Carlos Roca
|
||||
* Víctor Martínez
|
||||
|
||||
* `Jarsa <https://www.jarsa.com>`_:
|
||||
|
||||
* Alan Ramos <alan.ramos@jarsa.com>
|
||||
|
||||
* `Bloopark systems <https://www.bloopark.de/>`_:
|
||||
|
||||
* Achraf Mhadhbi <machraf@bloopark.de>
|
||||
|
||||
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/reporting-engine <https://github.com/OCA/reporting-engine/tree/16.0/base_comment_template>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@ -1,4 +0,0 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
|
@ -1,22 +0,0 @@
|
|||
# © 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
{
|
||||
"name": "Base Comments Templates",
|
||||
"summary": "Add conditional mako template to any report"
|
||||
"on models that inherits comment.template.",
|
||||
"version": "16.0.2.2.1",
|
||||
"category": "Reporting",
|
||||
"website": "https://github.com/OCA/reporting-engine",
|
||||
"author": "Camptocamp, Odoo Community Association (OCA)",
|
||||
"license": "AGPL-3",
|
||||
"installable": True,
|
||||
"depends": ["base", "mail"],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"security/security.xml",
|
||||
"wizard/base_comment_template_preview_views.xml",
|
||||
"views/base_comment_template_view.xml",
|
||||
"views/res_partner_view.xml",
|
||||
],
|
||||
}
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,365 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected "
|
||||
"company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected "
|
||||
"partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2017\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"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentari "
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Veure el nom"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Darrera modificació el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Darrera Actualització per"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Darrera Actualització el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,381 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2022-11-04 14:45+0000\n"
|
||||
"Last-Translator: Maria Sparenberg <maria.sparenberg@gmx.net>\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 4.14.1\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr "Archiviert"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Textbaustein-Vorschau"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Textbaustein-Vorlagen"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Textbaustein-Vorlagen-Vorschau"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Textbaustein-Inhalt"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr "Inhalt"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr "Suffix"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr "Sprache wählen:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr "Beispiel wählen"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Textbaustein"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr "Textbaustein-Vorlage"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Textbaustein-Vorlagen"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr "Textbaustein-Vorlage"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Filter-Domäne"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr "IR Model"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
"Wenn das Häkchen gesetzt ist, ist die Textbaustein-Vorlage nur für das "
|
||||
"ausgewählte Unternehmen verfügbar."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
"Wenn das Häkchen gesetzt ist, ist die Textbaustein-Vorlage nur für die "
|
||||
"ausgewählten Partner verfügbar."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelle"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Bezeichnung"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr "Dies ist die Bezeichnung/Beschreibung der Textbaustein-Vorlage."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Kein Eintrag"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Position im Dokument"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr "Vorschau von"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Objekt-Referenz"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenz"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr "Vorlage"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr "Vorlagen-Vorschau"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr "Sprache für Vorlage-Vorschau"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr "Je kleiner die Nummer, desto höher die Priorität."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
"Die Textbaustein-Vorlage wird für diese Datenmodelle verfügbar sein. Es "
|
||||
"werden nur erlaubte Datenmodell angezeigt."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
"Die Textbaustein-Vorlage wird nur für die Objekte verfügbar sein, die dieser "
|
||||
"Bedingung genügen."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
"Dieses Feld entscheidet, wo im gedruckten Dokument der Textbaustein "
|
||||
"angezeigt wird."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr "Präfix"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,387 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# enjolras <yo@miguelrevilla.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-11-03 08:01+0000\n"
|
||||
"PO-Revision-Date: 2023-09-07 16:37+0000\n"
|
||||
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\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: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">Sin registros\n"
|
||||
" </span>"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr "Archivado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Vista previa de los comentarios sobre la base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Plantilla de comentarios base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Vista previa de la plantilla de comentarios base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Contenido del comentario de base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr "Cuerpo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr "Abajo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr "Elija un idioma:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr "Elija un motor:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr "Elija un ejemplo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr "Plantilla de comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Plantillas de comentarios"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr "Plantillas de comentarios"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr "Motor"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Filtro de dominio"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
"Si se define, la plantilla de comentario va a estar disponible para las "
|
||||
"compañías seleccionadas."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
"Si se define, la plantilla de comentario va a estar disponible para los "
|
||||
"contactos seleccionados."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr "Plantilla en línea"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr "Plantilla en línea"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última modificación por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr "Nombre de la plantilla de comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Sin registro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posición en el documento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Previsualizar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr "Previsualización de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr "Vista de la QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr "Vista de la QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Referencia del registro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr "Algún modelo (%s) no se ha encontrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr "Comentarios de contactos que se pueden incluir en informes"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr "Plantilla de comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr "Vista previa de la plantilla"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr "Motor de previsualización de plantilla"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr "Vista previa de la plantilla Idioma"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr "Cuanto menor sea el número = mayor prioridad"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
"Esta plantilla de comentarios estará disponible en estos modelos. Sólo vas a "
|
||||
"ver los modelos autorizados para configurar la plantilla de comentarios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
"Esta plantilla de comentarios estará disponible solo para objetos que "
|
||||
"satisfagan la condición"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
"Este campo permite seleccionar el motor a utilizar para renderizar la "
|
||||
"plantilla."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
"Este campo permite seleccionar la posición del comentario en los informes."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr "Esta es la plantilla de texto que se insertará en los informes."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr "Superior"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
"Si este modelo admite en los informes, añadir plantillas de comentarios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
"base.comment.template para poner cabecera y pie de página en los informes "
|
||||
"basados en las plantillas de comentarios creadas"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr "registro:"
|
|
@ -1,391 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2023-09-04 04:36+0000\n"
|
||||
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\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"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">Sin registros\n"
|
||||
" </span>"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr "Archivado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Vista previa del Comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Plantilla de Comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Vista Previa de Plantilla de Comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Contenido de comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr "Cuerpo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr "Debajo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr "Elija un idioma:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr "Elija un motor:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr "Elija un ejemplo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr "Plantilla de Comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Plantillas de Comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr "Plantilla de Comentarios"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr "Motor"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Dominio de Filtro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr "Modelo IR"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
"Si está configurado, la plantilla de comentario estará disponible solo para "
|
||||
"la compañía seleccionada."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
"Si está configurado, la plantilla de comentario estará disponisble solo para "
|
||||
"el contacto seleccionado."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr "Plantilla en Línea"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr "Plantilla en línea"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr "Nombre/descripción de esta plantilla de comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Sin Registro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posición en el documento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Vista Previa"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr "Vista Previa de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr "Vista QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr "Vista QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Referencia de registro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr "Algunos modelo (%s) no se han encontrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
"Comentarios específicos de contactos que se pueden incluir en los informes"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr "Plantilla"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr "Vista Previa de Plantilla"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr "Motor de Vista Orevia de Plantillas"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr "Idioma de Vista Previa de Plantilla"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr "Número más chico = Prioridad más alta"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
"Esta plantilla de comentario estará disponible en estos modelos. Puede ver "
|
||||
"aquí solo los modelos autorizados para configurar la plantilla de "
|
||||
"comentarios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
"Esta plantilla de comentario estará disponible solo para objectos que "
|
||||
"cumplan la condición"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
"Este campo permite seleccionar el motor que usar para renderizar la "
|
||||
"plantilla."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
"Este campo permite selección la posición de los comentarios en los reportes."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr "Esta es la plantilla que será insertada en los reportes."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr "Arriba"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
"Si este modelo es compatible con los informes para agregar plantillas de "
|
||||
"comentarios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
"base.comment.template para poner encabezado y pie de página en informes "
|
||||
"basados en plantillas de comentarios creadas"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr "registro:"
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificacion realizada"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizacion por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización realizada"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجاد شده در"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Commentaire"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Modèles de commentaires"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière mise-à-jour le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise-à-jour par"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise-à-jour le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Position sur le document"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2019-02-06 14:50+0000\n"
|
||||
"Last-Translator: Marta Vázquez Rodríguez <vazrodmar@gmail.com>\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"
|
||||
"X-Generator: Weblate 3.4\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentario"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Modelos de comentarios"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ültima actualización por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posición no documento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על ידי"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עודכן לאחרונה על"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,372 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2020-03-05 16:13+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>\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 3.10\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Komentar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Predlošci komentara"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Tvrtka"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Stvorio/la"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Stvoreno dana"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnju izmjenu izvršio/la"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Pozicija na dokumentu"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Készítette"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozás dátuma"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Utoljára frissítve, által"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Utoljára frissítve "
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Diperbaharui oleh"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Diperbaharui pada"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,390 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Paolo Valier <paolo.valier@hotmail.it>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2024-01-18 09:34+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">Nessun record\n"
|
||||
" </span>"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr "In archivio"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Anteprima commento base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Modello commento base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Anteprima modello commento base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Contenuto commento base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr "Corpo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr "In basso"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr "Scegliere una lingua:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr "Scegliere un rogramma:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr "Scegliere un esempio"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Commento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr "Modello commento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Modelli commento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr "Modello Commenti"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr "Abbandona"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr "Programma"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Filtra dominio"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr "Modello IR"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
"Se impostato, il modello commento sarà disponibile solo per l'azienda "
|
||||
"selezionata."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
"Se importato, il modello commento sarà disponibile solo per il contatto "
|
||||
"selezionato."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr "Modello in linea"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr "Modello in linea"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modello"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelli"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr "Nome/descrizione di questo modello commento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Nessun record"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posizione nel documento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Anteprima"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr "Anteprima di"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr "Vista Qweb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr "Vista Qweb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Riferimento record"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenza"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr "Qualche modello (%s) non trovato"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
"Commenti specifici per contatto che possono essere inclusi nelle stampe"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr "Modello"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr "Anteprima modello"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr "Programma anteprima modello"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr "Lingua anteprima modello"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr "Più basso il numero, più alta la priorità"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
"Questo modello commento sarà disponibile in questi modelli. Puoi "
|
||||
"visualizzare solo i modelli in cui è possibile impostare il modello commento."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
"Questo modello commento sarà disponibile solo per i record che soddisfano la "
|
||||
"condizione"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
"Questo file consente di selezionare il programma da utilizzare per "
|
||||
"visualizzare il modello."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
"Questo campo permette la selezione della posizione del commento nella stampa."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr "Questo è il prossimo modello che sarà inserito nelle stampe."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr "In alto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
"Se questo modello supporta o meno l'aggiunta di modelli commento nella "
|
||||
"stampa."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
"base.comment.template per inserire commenti in cima e in fondo alle stampe "
|
||||
"basati su modelli di commento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr "record:"
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2019-07-05 04:42+0000\n"
|
||||
"Last-Translator: Yoshi Tashiro <tashiro@roomsfor.hk>\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"
|
||||
"X-Generator: Weblate 3.7.1\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "コメント"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "コメントテンプレート"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "ドキュメント上の位置"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэгч"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist oppdatert "
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Laget av"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Laget den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Opmerking"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst Aangepast op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Peter Hageman <hageman.p@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2017-06-30 23:41+0000\n"
|
||||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ostatnia zmiana"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,383 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2021-07-01 15:48+0000\n"
|
||||
"Last-Translator: Pedro Castro Silva <pedrocs@exo.pt>\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"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr "Arquivado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr "Fundo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentário"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr "Modelo de Comentário"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Modelos de Comentários"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr "Modelo de Comentários"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Domínio Filtro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr "Modelo IR"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
"Se definido, o modelo de comentário estará disponível apenas para a empresa "
|
||||
"selecionada."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
"Se definido, o modelo de comentário estará disponível apenas para o parceiro "
|
||||
"selecionado."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado a última vez por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr "Nome/descrição deste modelo de comentário"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Parceiro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posição no documento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequência"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
"Comentários específicos de parceiros que podem ser incluídos em relatórios"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr "O número menor = A maior prioridade"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
"Este modelo de comentário estará disponível neste modelo. Pode ver aqui "
|
||||
"apenas os modelos autorizados a definir o modelo de comentário."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
"Este modelo de comentário estará disponível apenas para objetos que "
|
||||
"satisfaçam a condição"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr "Este campo permite selecionar a posição do comentário nos relatórios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr "Este é o modelo de texto que será inserido nos relatórios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr "Topo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
"Se este modelo é compatível em relatórios para adicionar modelos de "
|
||||
"comentários."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
"base.comment.template para colocar cabeçalho e rodapé em relatórios baseados "
|
||||
"em modelos de comentários criados"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2019-11-24 19:57+0000\n"
|
||||
"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\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 3.8\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentário"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Modelos de comentários"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contato"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Mostrar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posição no documento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2020-03-23 17:13+0000\n"
|
||||
"Last-Translator: Pedro Castro Silva <pedrocs@exo.pt>\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"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentário"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Modelos de Comentários"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação Em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posição no documento"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare la"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Создан"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2020-07-04 17:19+0000\n"
|
||||
"Last-Translator: Jan Prokop <jprokop@jackie.sk>\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"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Aktívne"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Komentár"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Šablóny komentárov"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Spoločnosť"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Názov"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Pozícia v dokumente"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,372 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2023-04-11 13:24+0000\n"
|
||||
"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\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.14.1\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Komentar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Predloge komentarjev"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnjič posodobil"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Pozicija na dokumentu"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,371 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
|
||||
"sr@latin/)\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son değişiklik"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son güncelleyen"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son güncelleme"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma tarihi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "En son güncelleyen "
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата створення"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,369 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tạo bởi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tạo vào"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建者"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新者"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,370 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_comment_template
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids
|
||||
#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "建立者"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新:"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid ""
|
||||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
msgid ""
|
||||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
msgid ""
|
||||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
|
@ -1,17 +0,0 @@
|
|||
# Copyright 2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
import re
|
||||
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
|
||||
@openupgrade.migrate()
|
||||
def migrate(env, version):
|
||||
"""In v15 mail engine is inline_template, we try to replace the following:
|
||||
- ${object} > {{object}}
|
||||
- ${user} > {{user}}
|
||||
- ${ctx} > {{ctx}}
|
||||
"""
|
||||
for item in env["base.comment.template"].search([("text", "ilike", "${")]):
|
||||
item.text = re.sub(r"\${(.+)}", r"{{\1}}", item.text)
|
|
@ -1,27 +0,0 @@
|
|||
# Copyright 2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
from odoo.tools.sql import column_exists
|
||||
|
||||
|
||||
@openupgrade.migrate()
|
||||
def migrate(env, version):
|
||||
if not column_exists(env.cr, "base_comment_template", "models"):
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"ALTER TABLE base_comment_template ADD COLUMN IF NOT EXISTS models text",
|
||||
)
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"""
|
||||
UPDATE base_comment_template template
|
||||
SET models = (
|
||||
SELECT string_agg(model.model, ',')
|
||||
FROM base_comment_template_ir_model_rel AS rel
|
||||
JOIN ir_model AS model ON rel.ir_model_id = model.id
|
||||
WHERE rel.base_comment_template_id = template.id
|
||||
)
|
||||
""",
|
||||
)
|
|
@ -1,4 +0,0 @@
|
|||
from . import base_comment_template
|
||||
from . import comment_template
|
||||
from . import ir_model
|
||||
from . import res_partner
|
|
@ -1,136 +0,0 @@
|
|||
# Copyright 2014 Guewen Baconnier (Camptocamp SA)
|
||||
# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||||
# Copyright 2020 NextERP Romania SRL
|
||||
# Copyright 2021-2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class BaseCommentTemplate(models.Model):
|
||||
"""Comment templates printed on reports"""
|
||||
|
||||
_name = "base.comment.template"
|
||||
_description = "Comments Template"
|
||||
_order = "sequence,id"
|
||||
|
||||
active = fields.Boolean(default=True)
|
||||
position = fields.Selection(
|
||||
string="Position on document",
|
||||
selection=[("before_lines", "Top"), ("after_lines", "Bottom")],
|
||||
required=True,
|
||||
default="before_lines",
|
||||
help="This field allows to select the position of the comment on reports.",
|
||||
)
|
||||
name = fields.Char(
|
||||
translate=True,
|
||||
required=True,
|
||||
help="Name/description of this comment template",
|
||||
)
|
||||
text = fields.Html(
|
||||
string="Template",
|
||||
translate=True,
|
||||
required=True,
|
||||
sanitize=False,
|
||||
help="This is the text template that will be inserted into reports.",
|
||||
)
|
||||
company_id = fields.Many2one(
|
||||
comodel_name="res.company",
|
||||
string="Company",
|
||||
ondelete="cascade",
|
||||
index=True,
|
||||
help="If set, the comment template will be available only for the selected "
|
||||
"company.",
|
||||
)
|
||||
partner_ids = fields.Many2many(
|
||||
comodel_name="res.partner",
|
||||
relation="base_comment_template_res_partner_rel",
|
||||
column1="base_comment_template_id",
|
||||
column2="res_partner_id",
|
||||
string="Partner",
|
||||
readonly=True,
|
||||
help="If set, the comment template will be available only for the selected "
|
||||
"partner.",
|
||||
)
|
||||
models = fields.Text(required=True)
|
||||
model_ids = fields.Many2many(
|
||||
comodel_name="ir.model",
|
||||
compute="_compute_model_ids",
|
||||
compute_sudo=True,
|
||||
string="IR Model",
|
||||
help="This comment template will be available on this models. "
|
||||
"You can see here only models allowed to set the coment template.",
|
||||
search="_search_model_ids",
|
||||
)
|
||||
domain = fields.Char(
|
||||
string="Filter Domain",
|
||||
required=True,
|
||||
default="[]",
|
||||
help="This comment template will be available only for objects "
|
||||
"that satisfy the condition",
|
||||
)
|
||||
sequence = fields.Integer(
|
||||
required=True, default=10, help="The smaller number = The higher priority"
|
||||
)
|
||||
engine = fields.Selection(
|
||||
selection=[
|
||||
("inline_template", "Inline Template"),
|
||||
("qweb", "QWeb"),
|
||||
("qweb_view", "QWeb View"),
|
||||
],
|
||||
required=True,
|
||||
default="inline_template",
|
||||
help="This field allows to select the engine to use for rendering the template.",
|
||||
)
|
||||
|
||||
def _get_ir_model_items(self, models):
|
||||
return (
|
||||
self.env["ir.model"]
|
||||
.sudo()
|
||||
.search(
|
||||
[
|
||||
("is_comment_template", "=", True),
|
||||
("model", "!=", "comment.template"),
|
||||
("model", "in", models),
|
||||
]
|
||||
)
|
||||
)
|
||||
|
||||
@api.depends("models")
|
||||
def _compute_model_ids(self):
|
||||
im_model = self.env["ir.model"]
|
||||
for item in self:
|
||||
models = im_model.browse()
|
||||
if item.models:
|
||||
models = self._get_ir_model_items(item.models.split(","))
|
||||
item.model_ids = [(6, 0, models.ids)]
|
||||
|
||||
@api.constrains("models")
|
||||
def check_models(self):
|
||||
"""Avoid non-existing or not allowed models (is_comment_template=True)"""
|
||||
for item in self.filtered("models"):
|
||||
models = item.models.split(",")
|
||||
res = self._get_ir_model_items(item.models.split(","))
|
||||
if not res or len(res) != len(models):
|
||||
raise ValidationError(_("Some model (%s) not found") % item.models)
|
||||
|
||||
def name_get(self):
|
||||
"""Redefine the name_get method to show the template name with the position."""
|
||||
res = []
|
||||
for item in self:
|
||||
name = "{} ({})".format(
|
||||
item.name, dict(self._fields["position"].selection).get(item.position)
|
||||
)
|
||||
if self.env.context.get("comment_template_model_display"):
|
||||
name += " (%s)" % ", ".join(item.model_ids.mapped("name"))
|
||||
res.append((item.id, name))
|
||||
return res
|
||||
|
||||
def _search_model_ids(self, operator, value):
|
||||
# We cannot use model_ids.model in search() method to avoid access errors
|
||||
allowed_items = (
|
||||
self.sudo()
|
||||
.search([])
|
||||
.filtered(lambda x: value in x.model_ids.mapped("model"))
|
||||
)
|
||||
return [("id", "in", allowed_items.ids)]
|
|
@ -1,66 +0,0 @@
|
|||
# Copyright 2014 Guewen Baconnier (Camptocamp SA)
|
||||
# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||||
# Copyright 2020 NextERP Romania SRL
|
||||
# Copyright 2021-2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
import markupsafe
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo.osv import expression
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
|
||||
class CommentTemplate(models.AbstractModel):
|
||||
_name = "comment.template"
|
||||
_description = (
|
||||
"base.comment.template to put header and footer "
|
||||
"in reports based on created comment templates"
|
||||
)
|
||||
# This field allows to set any given field that determines the source partner for
|
||||
# the comment templates downstream.
|
||||
# E.g.: other models where the partner field is called customer_id.
|
||||
_comment_template_partner_field_name = "partner_id"
|
||||
|
||||
comment_template_ids = fields.Many2many(
|
||||
compute="_compute_comment_template_ids",
|
||||
compute_sudo=True,
|
||||
comodel_name="base.comment.template",
|
||||
string="Comment Template",
|
||||
domain=lambda self: [("model_ids", "in", self._name)],
|
||||
store=True,
|
||||
readonly=False,
|
||||
)
|
||||
|
||||
@api.depends(_comment_template_partner_field_name)
|
||||
def _compute_comment_template_ids(self):
|
||||
template_model = self.env["base.comment.template"]
|
||||
template_domain = template_model._search_model_ids("in", self._name)
|
||||
for record in self:
|
||||
partner = record[self._comment_template_partner_field_name]
|
||||
record.comment_template_ids = [(5,)]
|
||||
templates = template_model.search(
|
||||
expression.AND(
|
||||
[
|
||||
[("id", "in", partner.base_comment_template_ids.ids)],
|
||||
template_domain,
|
||||
]
|
||||
)
|
||||
)
|
||||
for template in templates:
|
||||
domain = safe_eval(template.domain)
|
||||
if not domain or record.filtered_domain(domain):
|
||||
record.comment_template_ids = [(4, template.id)]
|
||||
|
||||
def render_comment(
|
||||
self, comment, engine=False, add_context=None, post_process=False
|
||||
):
|
||||
self.ensure_one()
|
||||
comment_texts = self.env["mail.render.mixin"]._render_template(
|
||||
template_src=comment.text,
|
||||
model=self._name,
|
||||
res_ids=[self.id],
|
||||
engine=engine or comment.engine,
|
||||
add_context=add_context,
|
||||
post_process=post_process,
|
||||
)
|
||||
return markupsafe.Markup(comment_texts[self.id]) or ""
|
|
@ -1,33 +0,0 @@
|
|||
# Copyright 2020 NextERP Romania SRL
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class IrModel(models.Model):
|
||||
_inherit = "ir.model"
|
||||
|
||||
is_comment_template = fields.Boolean(
|
||||
string="Comment Template",
|
||||
default=False,
|
||||
help="Whether this model supports in reports to add comment templates.",
|
||||
)
|
||||
|
||||
def _reflect_model_params(self, model):
|
||||
vals = super()._reflect_model_params(model)
|
||||
vals["is_comment_template"] = issubclass(
|
||||
type(model), self.pool["comment.template"]
|
||||
)
|
||||
return vals
|
||||
|
||||
@api.model
|
||||
def _instanciate(self, model_data):
|
||||
model_class = super()._instanciate(model_data)
|
||||
if (
|
||||
model_data.get("is_comment_template")
|
||||
and model_class._name != "comment.template"
|
||||
):
|
||||
parents = model_class._inherit or []
|
||||
parents = [parents] if isinstance(parents, str) else parents
|
||||
model_class._inherit = parents + ["comment.template"]
|
||||
return model_class
|
|
@ -1,23 +0,0 @@
|
|||
# Copyright 2020 NextERP Romania SRL
|
||||
# Copyright 2021 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = "res.partner"
|
||||
|
||||
base_comment_template_ids = fields.Many2many(
|
||||
comodel_name="base.comment.template",
|
||||
relation="base_comment_template_res_partner_rel",
|
||||
column1="res_partner_id",
|
||||
column2="base_comment_template_id",
|
||||
string="Comment Templates",
|
||||
help="Specific partner comments that can be included in reports",
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _commercial_fields(self):
|
||||
"""Add comment templates to commercial fields"""
|
||||
return super()._commercial_fields() + ["base_comment_template_ids"]
|
|
@ -1,8 +0,0 @@
|
|||
Go to *Settings > Technical > Reporting > Comment Templates* and start designing you comment templates.
|
||||
|
||||
This module is the base module for following modules:
|
||||
|
||||
* sale_comment_template
|
||||
* purchase_comment_template
|
||||
* invoice_comment_template
|
||||
* stock_picking_comment_template
|
|
@ -1,30 +0,0 @@
|
|||
* Xavier Jimenez <xavier.jimenez@qubiq.es>
|
||||
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
|
||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||
* Simone Rubino <simone.rubino@agilebg.com>
|
||||
* `DynApps <https://www.dynapps.be>`_:
|
||||
|
||||
* Raf Ven <raf.ven@dynapps.be>
|
||||
|
||||
* `Druidoo <https://www.druidoo.io>`_:
|
||||
|
||||
* Iván Todorovich <ivan.todorovich@druidoo.io>
|
||||
* Pierre Verkest <pierreverkest84@gmail.com>
|
||||
|
||||
* `NextERP Romania <https://www.nexterp.ro>`_:
|
||||
|
||||
* Fekete Mihai <feketemihai@nexterp.ro>
|
||||
|
||||
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||
|
||||
* Carlos Roca
|
||||
* Víctor Martínez
|
||||
|
||||
* `Jarsa <https://www.jarsa.com>`_:
|
||||
|
||||
* Alan Ramos <alan.ramos@jarsa.com>
|
||||
|
||||
* `Bloopark systems <https://www.bloopark.de/>`_:
|
||||
|
||||
* Achraf Mhadhbi <machraf@bloopark.de>
|
|
@ -1,23 +0,0 @@
|
|||
Add a new mixin class to define templates of comments to print on documents.
|
||||
The comment templates can be defined like make templates, so you can use variables from linked models.
|
||||
|
||||
Two positions are available for the comments:
|
||||
|
||||
* above document lines (before_lines)
|
||||
* below document lines (after_lines)
|
||||
|
||||
The template are general, and can be attached to any Model and based on some domain defined in the template.
|
||||
You can define one default template per Model and domain, which can be overwritten for any company and partners.
|
||||
It has a priority field (smaller number = higher priority)
|
||||
|
||||
In existing reports, if you add this line will get the comment template if you created one like
|
||||
|
||||
* <span t-raw="o.get_comment_template('position',company_id=o.company_id, partner_id=o.parnter_id )"/> ( or without any parameter)
|
||||
|
||||
|
||||
This module is the base module for following modules:
|
||||
|
||||
* sale_comment_template
|
||||
* purchase_comment_template
|
||||
* invoice_comment_template
|
||||
* stock_picking_comment_template
|
|
@ -1,44 +0,0 @@
|
|||
#. Go to *Settings* and activate the developer mode.
|
||||
#. Go to *Settings > Technical > Reporting > Comment Templates*.
|
||||
#. Create a new record.
|
||||
#. Define the Company the template is linked or leave default for all companies.
|
||||
#. Define the Partner the template is linked or leave default for all partners.
|
||||
#. Define the Model, Domain the template is linked.
|
||||
#. Define the Position where the template will be printed:
|
||||
|
||||
* above document lines
|
||||
* below document lines
|
||||
|
||||
You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one.
|
||||
If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one.
|
||||
|
||||
The template is a html field which will be rendered just like a mail template, so you can use variables like {{object}}, {{user}}, {{ctx}} to add dynamic content.
|
||||
|
||||
Change the report related to the model from configuration and add a statement like:
|
||||
|
||||
<t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'before_lines')" t-as="comment_template_top">
|
||||
<div t-raw="o.render_comment(comment_template_top)" />
|
||||
|
||||
</t>
|
||||
|
||||
|
||||
<t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'after_lines')" t-as="comment_template_bottom">
|
||||
<div t-raw="o.render_comment(comment_template_bottom)" />
|
||||
|
||||
</t>
|
||||
|
||||
You should always use t-if since the method returns False if no template is found.
|
||||
|
||||
If you want to use Qweb templates, or different context, you can specify it just like in
|
||||
mail.render.mixin with parameters:
|
||||
|
||||
- engine: "inline_template", "qweb" or "qweb_view",
|
||||
- add_context: dict with your own context,
|
||||
- post_process: perform a post processing on rendered result
|
||||
|
||||
so you could use it :
|
||||
|
||||
<t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'before_lines')" t-as="comment_template_top">
|
||||
<div t-raw="o.render_comment(comment_template_top, engine='qweb', add_context={my dict}, postprocess=True)" />
|
||||
|
||||
</t>
|
|
@ -1,4 +0,0 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_base_comment_template_user,access_base_comment_template_user,model_base_comment_template,,1,0,0,0
|
||||
access_base_comment_template,access_base_comment_template no one,model_base_comment_template,base.group_no_one,1,1,1,1
|
||||
access_base_comment_template_preview,access.base.comment.template.preview,model_base_comment_template_preview,base.group_user,1,1,1,0
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue