mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 22:32:07 +02:00
19.0 vanilla
This commit is contained in:
parent
d1963a3c3a
commit
2d3ee4855a
7430 changed files with 2687981 additions and 2965473 deletions
|
|
@ -10,36 +10,15 @@ pip install odoo-bringout-oca-ocb-bus
|
|||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- base
|
||||
- web
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: IM Bus
|
||||
- **Version**: 1.0
|
||||
- **Category**: Hidden
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `bus`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/bus
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import models
|
||||
from . import tools
|
||||
from . import controllers
|
||||
from . import websocket
|
||||
|
|
|
|||
|
|
@ -10,30 +10,30 @@
|
|||
'installable': True,
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'web.assets_common': [
|
||||
'web.assets_backend': [
|
||||
'bus/static/src/*.js',
|
||||
'bus/static/src/debug/**/*',
|
||||
'bus/static/src/services/**/*.js',
|
||||
'bus/static/src/workers/websocket_worker.js',
|
||||
'bus/static/src/workers/websocket_worker_utils.js',
|
||||
'bus/static/src/workers/*',
|
||||
('remove', 'bus/static/src/workers/bus_worker_script.js'),
|
||||
],
|
||||
'web.assets_frontend': [
|
||||
'bus/static/src/*.js',
|
||||
'bus/static/src/services/**/*.js',
|
||||
('remove', 'bus/static/src/services/assets_watchdog_service.js'),
|
||||
'bus/static/src/workers/websocket_worker.js',
|
||||
'bus/static/src/workers/websocket_worker_utils.js',
|
||||
('remove', 'bus/static/src/simple_notification_service.js'),
|
||||
'bus/static/src/workers/*',
|
||||
('remove', 'bus/static/src/workers/bus_worker_script.js'),
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'bus/static/tests/**/*.js',
|
||||
],
|
||||
'web.qunit_mobile_suite_tests': [
|
||||
'bus/static/tests/helpers/**/*.js',
|
||||
# Unit test files
|
||||
'web.assets_unit_tests': [
|
||||
'bus/static/tests/**/*',
|
||||
],
|
||||
'bus.websocket_worker_assets': [
|
||||
'web/static/src/legacy/js/promise_extension.js',
|
||||
'web/static/src/boot.js',
|
||||
'web/static/src/module_loader.js',
|
||||
'bus/static/src/workers/*',
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import home
|
||||
from . import main
|
||||
from . import websocket
|
||||
|
|
|
|||
38
odoo-bringout-oca-ocb-bus/bus/controllers/home.py
Normal file
38
odoo-bringout-oca-ocb-bus/bus/controllers/home.py
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import ipaddress
|
||||
|
||||
from odoo import _, SUPERUSER_ID
|
||||
from odoo.http import request
|
||||
from odoo.addons.web.controllers.home import Home as WebHome
|
||||
|
||||
|
||||
def _admin_password_warn(uid):
|
||||
if request.params['password'] != 'admin':
|
||||
return
|
||||
if ipaddress.ip_address(request.httprequest.remote_addr).is_private:
|
||||
return
|
||||
env = request.env(user=SUPERUSER_ID, su=True)
|
||||
admin = env.ref('base.partner_admin')
|
||||
if uid not in admin.user_ids.ids:
|
||||
return
|
||||
has_demo = bool(env['ir.module.module'].search_count([('demo', '=', True)]))
|
||||
if has_demo:
|
||||
return
|
||||
admin.with_context(request.env(user=uid)["res.users"].context_get())._bus_send(
|
||||
"simple_notification",
|
||||
{
|
||||
"type": "danger",
|
||||
"message": _(
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
),
|
||||
"sticky": True,
|
||||
},
|
||||
)
|
||||
|
||||
|
||||
class Home(WebHome):
|
||||
def _login_redirect(self, uid, redirect=None):
|
||||
if request.params.get('login_success'):
|
||||
_admin_password_warn(uid)
|
||||
return super()._login_redirect(uid, redirect)
|
||||
|
|
@ -11,3 +11,9 @@ class BusController(Controller):
|
|||
return request.make_response(json.dumps(
|
||||
request.env['ir.model']._get_model_definitions(json.loads(model_names_to_fetch)),
|
||||
))
|
||||
|
||||
@route("/bus/has_missed_notifications", type="jsonrpc", auth="public")
|
||||
def has_missed_notifications(self, last_notification_id):
|
||||
# sudo - bus.bus: checking if a notification still exists in order to
|
||||
# detect missed notification during disconnect is allowed.
|
||||
return request.env["bus.bus"].sudo().search_count([("id", "=", last_notification_id)]) == 0
|
||||
|
|
|
|||
|
|
@ -3,19 +3,21 @@
|
|||
import json
|
||||
|
||||
from odoo.http import Controller, request, route, SessionExpiredException
|
||||
from odoo.addons.base.models.assetsbundle import AssetsBundle
|
||||
from ..models.bus import channel_with_db
|
||||
from ..websocket import WebsocketConnectionHandler
|
||||
|
||||
|
||||
class WebsocketController(Controller):
|
||||
@route('/websocket', type="http", auth="public", cors='*', websocket=True)
|
||||
def websocket(self):
|
||||
def websocket(self, version=None):
|
||||
"""
|
||||
Handle the websocket handshake, upgrade the connection if
|
||||
successfull.
|
||||
Handle the websocket handshake, upgrade the connection if successfull.
|
||||
|
||||
:param version: The version of the WebSocket worker that tries to
|
||||
connect. Connections with an outdated version will result in the
|
||||
websocket being closed. See :attr:`WebsocketConnectionHandler._VERSION`.
|
||||
"""
|
||||
return WebsocketConnectionHandler.open_connection(request)
|
||||
return WebsocketConnectionHandler.open_connection(request, version)
|
||||
|
||||
@route('/websocket/health', type='http', auth='none', save_session=False)
|
||||
def health(self):
|
||||
|
|
@ -26,31 +28,24 @@ class WebsocketController(Controller):
|
|||
('Cache-Control', 'no-store')]
|
||||
return request.make_response(data, headers)
|
||||
|
||||
@route('/websocket/peek_notifications', type='json', auth='public', cors='*')
|
||||
@route('/websocket/peek_notifications', type='jsonrpc', auth='public', cors='*')
|
||||
def peek_notifications(self, channels, last, is_first_poll=False):
|
||||
if not all(isinstance(c, str) for c in channels):
|
||||
raise ValueError("bus.Bus only string channels are allowed.")
|
||||
if is_first_poll:
|
||||
# Used to detect when the current session is expired.
|
||||
request.session['is_websocket_session'] = True
|
||||
elif 'is_websocket_session' not in request.session:
|
||||
raise SessionExpiredException()
|
||||
channels = list(set(
|
||||
channel_with_db(request.db, c)
|
||||
for c in request.env['ir.websocket']._build_bus_channel_list(channels)
|
||||
))
|
||||
last_known_notification_id = request.env['bus.bus'].sudo().search([], limit=1, order='id desc').id or 0
|
||||
if last > last_known_notification_id:
|
||||
last = 0
|
||||
notifications = request.env['bus.bus']._poll(channels, last)
|
||||
return {'channels': channels, 'notifications': notifications}
|
||||
subscribe_data = request.env["ir.websocket"]._prepare_subscribe_data(channels, last)
|
||||
request.env["ir.websocket"]._after_subscribe_data(subscribe_data)
|
||||
channels_with_db = [channel_with_db(request.db, c) for c in subscribe_data["channels"]]
|
||||
notifications = request.env["bus.bus"]._poll(channels_with_db, subscribe_data["last"])
|
||||
return {"channels": channels_with_db, "notifications": notifications}
|
||||
|
||||
@route('/websocket/update_bus_presence', type='json', auth='public', cors='*')
|
||||
def update_bus_presence(self, inactivity_period, im_status_ids_by_model):
|
||||
if 'is_websocket_session' not in request.session:
|
||||
raise SessionExpiredException()
|
||||
request.env['ir.websocket']._update_bus_presence(int(inactivity_period), im_status_ids_by_model)
|
||||
return {}
|
||||
@route("/websocket/on_closed", type="jsonrpc", auth="public", cors="*")
|
||||
def on_websocket_closed(self):
|
||||
"""Manually notify the closure of a websocket, useful when implementing custom websocket code.
|
||||
This is mainly used by Odoo.sh."""
|
||||
request.env["ir.websocket"]._on_websocket_closed(request.cookies)
|
||||
|
||||
@route('/bus/websocket_worker_bundle', type='http', auth='public', cors='*')
|
||||
def get_websocket_worker_bundle(self, v=None): # pylint: disable=unused-argument
|
||||
|
|
@ -58,10 +53,7 @@ class WebsocketController(Controller):
|
|||
:param str v: Version of the worker, frontend only argument used to
|
||||
prevent new worker versions to be loaded from the browser cache.
|
||||
"""
|
||||
bundle = 'bus.websocket_worker_assets'
|
||||
files, _ = request.env["ir.qweb"]._get_asset_content(bundle)
|
||||
asset = AssetsBundle(bundle, files)
|
||||
stream = request.env['ir.binary']._get_stream_from(asset.js(
|
||||
is_minified="assets" not in request.session.debug
|
||||
))
|
||||
bundle_name = 'bus.websocket_worker_assets'
|
||||
bundle = request.env["ir.qweb"]._get_asset_bundle(bundle_name, debug_assets="assets" in request.session.debug)
|
||||
stream = request.env['ir.binary']._get_stream_from(bundle.js())
|
||||
return stream.get_response(content_security_policy=None)
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -68,12 +68,6 @@ msgstr "ID"
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -117,15 +111,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -144,6 +135,12 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr "Gebruikers"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -64,12 +64,6 @@ msgstr ""
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -113,15 +107,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -140,6 +131,12 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 13:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/bus/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\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"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "بعيد"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "مجموعات الوصول"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "مرفق"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "يمكن إرسال الرسائل عن طريق bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,6 +52,11 @@ msgstr "ناقل الاتصالات"
|
|||
msgid "Contact"
|
||||
msgstr "جهة الاتصال"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Create a Customer"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,39 +69,49 @@ msgstr "أنشئ في"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "تحميل السجلات"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "تمكين عملية تسجيل تحركات الناقل"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "مسار HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "حالة المحادثات الفورية"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "آخر استطلاع"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "آخر حضور"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -98,37 +125,44 @@ msgstr "آخر تحديث في"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "رسالة "
|
||||
msgstr "الرسالة"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "النماذج "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "غير متصل بالإنترنت "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "عبر الإنترنت "
|
||||
msgstr "النماذج"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "تحديث "
|
||||
msgstr "تحديث"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"احفظ عملك ثم قم بالتحديث حتى تحصل على آخر التحديثات ولتجنب وقوع أي مشاكل "
|
||||
"محتملة."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "يبدو أن هذه الصفحة قديمة. "
|
||||
msgstr "يبدو أن هذه الصفحة قديمة."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "هذه الصفحة غير محدثة"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
|
|
@ -136,16 +170,47 @@ msgid "User"
|
|||
msgstr "المستخدم"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "وجود المستخدم"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "إعدادات المستخدم"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "المستخدمين "
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"كلمة المرور الخاصة بك هي كلمة المرور الافتراضية (admin)! إذا كان هذا النظام "
|
||||
"معرضااً للمستخدمين غير الموثوقين، من المهم تغييرها فورا لأسباب أمنية. سأظل "
|
||||
"ألح عليك حول هذا الموضوع!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "التعامل مع رسائل websocket "
|
||||
msgstr "التعامل مع رسائل websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "بعيد"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "حالة المحادثات الفورية"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "آخر استطلاع"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "آخر حضور"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "غير متصل بالإنترنت "
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "عبر الإنترنت "
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "وجود المستخدم"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "المستخدمين "
|
||||
|
|
|
|||
|
|
@ -1,30 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2025
|
||||
# erpgo translator <jumshud@erpgo.az>, 2025
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-19 13:23+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/bus/"
|
||||
"az/>\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Uzaq"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Qruplara Giriş"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Qoşma"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -41,6 +52,11 @@ msgstr "Kommunikasiya Şini"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -53,38 +69,48 @@ msgstr "Tarixdə yaradıldı"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Loq'ları yükləyin"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Marşrutizasiyası"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Son Sorğu- sual"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Son İştirak"
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
|
|
@ -106,47 +132,77 @@ msgstr "Mesaj"
|
|||
msgid "Models"
|
||||
msgstr "Modellər"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Oflayn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Onlayn"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Yeniləmə"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "İstifadəçi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "İstifadəçi İştirakı"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "İstifadəçilər"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket mesajlarının idarə edilməsi"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Uzaq"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Son Sorğu- sual"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Son İştirak"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Oflayn"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Onlayn"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "İstifadəçi İştirakı"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "İstifadəçilər"
|
||||
|
|
|
|||
|
|
@ -1,150 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Кантакт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Карыстальнік"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
@ -1,32 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Nikola Iliev, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Petko Karamotchev, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/bus/bg/"
|
||||
">\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Извън"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Групи за Достъп"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Прикачен файл"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -43,6 +54,11 @@ msgstr ""
|
|||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -55,39 +71,49 @@ msgstr "Създадено на"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Маршрутизиране"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Статус IM "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Последна анкета"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Последно присъствие"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -108,47 +134,80 @@ msgstr "Съобщение"
|
|||
msgid "Models"
|
||||
msgstr "Модели"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Офлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Опресни"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Потребителско присъствие"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Потребителски настройки"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Потребители"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Извън"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Статус IM "
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Последна анкета"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Последно присъствие"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Офлайн"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Онлайн"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Потребителско присъствие"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Потребители"
|
||||
|
|
|
|||
|
|
@ -1,24 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:34+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bosnian <https://translate.odoo.com/projects/odoo-19/bus/bs/"
|
||||
">\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \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 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -28,13 +47,18 @@ msgstr "Kanal"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Korisnik može imati samo jedan IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -47,39 +71,49 @@ msgstr "Kreirano"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnji pokušaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnja prijava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -100,30 +134,35 @@ msgstr "Poruka"
|
|||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Van mreže"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Na mreži"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Osvježi"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stranica se čini zastarjela."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
|
|
@ -131,16 +170,29 @@ msgid "User"
|
|||
msgstr "Korisnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisutnost korisnika"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "bus.Bus not Dostupan in test mode"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Van mreže"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Na mreži"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Korisnici"
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -16,8 +16,18 @@ msgstr ""
|
|||
"Plural-Forms: \n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -35,6 +45,11 @@ msgstr ""
|
|||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -47,39 +62,49 @@ msgstr ""
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -100,44 +125,53 @@ msgstr ""
|
|||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted"
|
||||
" users it is important to change it immediately for security reasons. I will"
|
||||
" keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# jabelchi, 2022
|
||||
# Arnau Ros, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Sandra Franch <sandra.franch@upc.edu>, 2022
|
||||
# Jonatan Gk, 2022
|
||||
|
|
@ -12,25 +12,38 @@
|
|||
# RGB Consulting <odoo@rgbconsulting.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cristian Cruz, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Cristian Cruz, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/bus/ca/"
|
||||
">\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grups d'accés"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Adjunt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Es poden enviar missatges per mitjà de bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,13 +53,18 @@ msgstr "Canal"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de comunicació "
|
||||
msgstr "Bus de comunicació"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Crear un client"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -59,39 +77,49 @@ msgstr "Creat el"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
msgstr "Nom de visualització"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Descarrega els registres"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutament HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estat de la conversa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última conversa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última presencia"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -112,47 +140,85 @@ msgstr "Missatge"
|
|||
msgid "Models"
|
||||
msgstr "Models"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Fora de línia"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En línia"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Refresca"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Desa el teu treball i actualitza per obtindre les darreres novetats i evitar "
|
||||
"possibles problemes."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sembla que la pàgina està desactualitzada."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "La pàgina està desactualitzada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presència del usuari"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Arranjament d' usuari"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuaris"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"La vostra contrasenya és per omissió (admin)! Si aquest sistema està exposat "
|
||||
"als usuaris que no són de confiança és important canviar-lo immediatament "
|
||||
"per motius de seguretat. Et continuaré molestant!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestió de missatges websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Absent"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Estat de la conversa"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Última conversa"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Última presencia"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Fora de línia"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "En línia"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Presència del usuari"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Usuaris"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Helemik Nemec <nemec@helemik.cz>, 2022
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
|
|
@ -9,26 +9,38 @@
|
|||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
# Michal Veselý <michal@veselyberanek.net>, 2022
|
||||
# Jakub Smolka, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:42+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/bus/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : "
|
||||
"(n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Pryč"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Přístupové skupiny"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Příloha"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Může odesílat zprávy prostřednictvím bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -45,60 +57,75 @@ msgstr "Komunikační sběrnice"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Vytvořit zákazníka"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
msgstr "Vytvořeno uživatelem"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
msgstr "Vytvořeno dne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Stáhnout záznamy"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Poslední průzkum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Poslední přítomnost"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
msgstr "Naposledy upraveno uživatelem"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
msgstr "Naposledy upraveno dne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -110,47 +137,83 @@ msgstr "Zpráva"
|
|||
msgid "Models"
|
||||
msgstr "Modely"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Nepřipojeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Obnovit"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stránka se zdá být zastaralá."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Přítomnost uživatele"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Uživatelské nastavení"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Uživatelé"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Vaše heslo je výchozí (admin)! Pokud je tento systém vystaven nedůvěryhodným "
|
||||
"uživatelům, je důležité jej z bezpečnostních důvodů okamžitě změnit. Budu "
|
||||
"vás o tom pořád otravovat!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "zpráva zpracování websocketu"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Pryč"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM Status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Poslední průzkum"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Poslední přítomnost"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Nepřipojeno"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Přítomnost uživatele"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Uživatelé"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kira Petersen François (peti)" <peti@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/bus/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Væk"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Adgangsgrupper"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Vedhæftning"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -39,6 +53,11 @@ msgstr "Kommunikations Bus"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Opret en kunde"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -51,39 +70,49 @@ msgstr "Oprettet den"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Seneste meningsmåling"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Sidste tilstedeværelse"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -104,47 +133,83 @@ msgstr "Besked"
|
|||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Genopfrisk"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Siden ser ud til at være forældet."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Bruger tilstedeværelse"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Bruger indstillinger"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Brugere"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Dit kodeord er sat til standard (admin)! Det er vigtigt, at du ændre det med "
|
||||
"det samme, af sikkerhedsmæssige årsager, hvis dette system skulle udsættes "
|
||||
"for tvivlsomme brugere. Jeg bliver ved med at irritere dig om det!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
msgstr "Behandling af WebSocket-beskeder"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Væk"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Seneste meningsmåling"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Sidste tilstedeværelse"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Bruger tilstedeværelse"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Brugere"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
# Martin Trigaux, 2022
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-13 09:15+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/bus/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Abwesend"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Zugriffsgruppen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Dateianhang"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Kan Nachrichten über bus.bus senden"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -39,6 +53,11 @@ msgstr "Kommunikationsbus"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Kunden erstellen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -51,39 +70,49 @@ msgstr "Erstellt am"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Protokolle herunterladen"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Bus-Protokoll aktivieren"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-Routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status der Sofortnachricht"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Letzte Befragung"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Letzte Anwesenheit"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -104,47 +133,86 @@ msgstr "Nachricht"
|
|||
msgid "Models"
|
||||
msgstr "Modelle"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Speichern Sie Ihre Arbeit und aktualisieren Sie die Seite, um die neusten "
|
||||
"Aktualisierungen zu erhalten und potenzielle Probleme zu vermeiden."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Die Seite scheint veraltet zu sein."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Die Seite ist veraltet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Benutzer-Anwesenheit"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Benutzereinstellungen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Benutzer"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Ihr Passwort ist das Standardpasswort (admin)! Wenn dieses System für nicht "
|
||||
"vertrauenswürdige Benutzer zugänglich ist, müssen Sie es aus "
|
||||
"Sicherheitsgründen sofort ändern. Ich werde Sie immer wieder darauf "
|
||||
"hinweisen!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Websocket-Nachrichtbearbeitung"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Abwesend"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Sofortnachrichten-Status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Letzte Abstimmung"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Letzte Anwesenheit"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Benutzer Anwesenheit"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Benutzer"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 13:17+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/bus/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr "Ένας χρήστης μπορεί να έχει μόνο μία κατάσταση Άμεσης Συνομιλίας"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Ομάδες Πρόσβασης"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr "Εκτός"
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Συνημμένο"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -38,13 +46,18 @@ msgstr "Κανάλι"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
msgstr "Δίαυλος Επικοινωνίας"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Επαφή"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Δημιουργία Πελάτη"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -57,39 +70,49 @@ msgstr "Δημιουργήθηκε στις"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Κατάσταση Άμεσης Συνομιλίας"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Τελευταία τροποποίηση στις"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Τελευταία Δημοσκόπηση"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Τελευταία Παρουσία"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,28 +129,84 @@ msgid "Message"
|
|||
msgstr "Μήνυμα"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Μοντέλα"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Παρουσία Χρήστη"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Χρήστες"
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#. module: bus
|
||||
#: code:addons/bus/controllers/main.py:41
|
||||
#, python-format
|
||||
msgid "bus.Bus not available in test mode"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Ρυθμίσεις Χρήστη"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Εκτός"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Κατάσταση Άμεσης Συνομιλίας"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Τελευταία Δημοσκόπηση"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Τελευταία Παρουσία"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Παρουσία Χρήστη"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Χρήστες"
|
||||
|
|
|
|||
|
|
@ -1,143 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:42+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/en_AU/)\n"
|
||||
"Language: en_AU\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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Created on"
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:07+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/bus/es/"
|
||||
">\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
|
||||
"0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grupos de acceso"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Archivo adjunto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Puede enviar mensajes mediante bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -41,6 +53,11 @@ msgstr "Bus de comunicación"
|
|||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Crear un cliente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -53,39 +70,49 @@ msgstr "Creado el"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Descargar registros"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Activar registro bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estado de mensajería instantanea"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última encuesta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última conexión"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,47 +133,85 @@ msgstr "Mensaje"
|
|||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Desconectado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En línea"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Guarde su trabajo y actualice la página para obtener las actualizaciones más "
|
||||
"recientes y evitar problemas potenciales."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Parece que la página no está actualizada."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "La página no está actualizada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Conexión del usuario"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Ajustes de usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Está usando la contraseña por defecto (admin). Si se expone este sistema a "
|
||||
"usuarios no confiables, es importante que la cambie inmediatamente por "
|
||||
"motivos de seguridad. Seguiré advirtiéndole al respecto."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestión de mensajes de WebSocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Ausente"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Estado de mensajería instantanea"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Última encuesta"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Última conexión"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Desconectado"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "En línea"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Usuario conectado"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Usuarios"
|
||||
|
|
|
|||
214
odoo-bringout-oca-ocb-bus/bus/i18n/es_419.po
Normal file
214
odoo-bringout-oca-ocb-bus/bus/i18n/es_419.po
Normal file
|
|
@ -0,0 +1,214 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Fernanda Alvarez (mfar)" <mfar@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-30 17:02+0000\n"
|
||||
"Last-Translator: \"Fernanda Alvarez (mfar)\" <mfar@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/bus/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grupos de acceso"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Archivos adjuntos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Puede enviar mensajes mediante bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de comunicación"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Crear un cliente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Descargar registros"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Activar registro de bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensaje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Guarda tu trabajo y actualiza la página para obtener las actualizaciones más "
|
||||
"recientes y evitar que ocurran problemas."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Parece que la página no está actualizada."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "La página no está actualizada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Ajustes de usuario"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Estás usando la contraseña predeterminada (admin). Por motivos de seguridad, "
|
||||
"es importante que la cambies de inmediato si hay usuarios que no deben tener "
|
||||
"acceso al sistema."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestión de mensajes de WebSocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Ausente"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Estado de mensajería instantánea"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Última encuesta"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Última conexión"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Desconectado"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "En línea"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Conexión del usuario"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Usuarios"
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,125 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,152 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2024\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de comunicación"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estado de mensajería instantánea"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última encuesta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última conexión"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensaje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Desconectado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En línea"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Parece que la página no está actualizada."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Conexión del usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestión de mensajes de WebSocket"
|
||||
|
|
@ -1,143 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:42+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_PA/)\n"
|
||||
"Language: es_PA\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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Marek Pontus, 2022
|
||||
# Martin Aavastik <martin@avalah.ee>, 2022
|
||||
|
|
@ -11,26 +11,38 @@
|
|||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Anna, 2024
|
||||
#
|
||||
# Anna, 2023
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Anna, 2024\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:31+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/bus/et/"
|
||||
">\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Eemal"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Ligipääsu grupid"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Manus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Saab sõnumeid saata bus.bus süsteemi kaudu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -47,6 +59,11 @@ msgstr "Kommunikatsioonibuss"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Lisa klient"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -59,39 +76,49 @@ msgstr "Loomise kuupäev"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Laadi alla logid"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Last Poll"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Last Presence"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -112,47 +139,80 @@ msgstr "Sõnum"
|
|||
msgid "Models"
|
||||
msgstr "Mudelid"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Võrguühenduseta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Uuenda"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Leht on aegunud. "
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Kasutaja kohalolek"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Kasutaja seaded"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Kasutajad"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket sõnumite käsitlus"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Eemal"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM Status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Last Poll"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Last Presence"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Võrguühenduseta"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Kasutaja kohalolek"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Kasutajad"
|
||||
|
|
|
|||
|
|
@ -1,125 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,34 +1,45 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# F Hariri <fhari1234@gmail.com>, 2023
|
||||
# Farid Hariri <fhari1234@gmail.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/bus/fa/"
|
||||
">\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "دور از کار"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "گروههای حق دسترسی"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "پیوست"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -45,6 +56,11 @@ msgstr "ارتباطات Bus"
|
|||
msgid "Contact"
|
||||
msgstr "مخاطب"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "ایجاد مشتری"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -57,39 +73,49 @@ msgstr "ایجادشده در"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "دانلود گزارشها"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "مسیریابی HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "وضعیت پیام رسانی"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "آخرین رایگیری"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "آخرین حضور"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -110,47 +136,83 @@ msgstr "پیام"
|
|||
msgid "Models"
|
||||
msgstr "مدل ها"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "آفلاین"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "آنلاین"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "تازه سازی"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "صفحه به نظر میرسد قدیمی است."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "حضور کاربر"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "تنظیمات کاربر"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "کاربران"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"رمز عبور شما پیشفرض است (admin)! اگر این سیستم در معرض کاربران غیرمعتبر قرار "
|
||||
"دارد، مهم است که بهطور فوری آن را به دلایل امنیتی تغییر دهید. من مدام شما را "
|
||||
"در این مورد یادآوری خواهم کرد!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "مدیریت پیام وب سوکت"
|
||||
msgstr "مدیریت پیامهای وبسوکت"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "دور از کار"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "وضعیت پیام رسانی"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "آخرین رایگیری"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "آخرین حضور"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "آفلاین"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "آنلاین"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "حضور کاربر"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "کاربران"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2022
|
||||
|
|
@ -10,25 +10,38 @@
|
|||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Saara Hakanen <sahak@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-19 06:23+0000\n"
|
||||
"Last-Translator: Saara Hakanen <sahak@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/bus/fi/>"
|
||||
"\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Poissa"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Käyttöoikeusryhmät"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Liite"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Voi lähettää viestejä bus.busin kautta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -43,7 +56,12 @@ msgstr "Viestintäväylä"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakti"
|
||||
msgstr "Yhteystiedot"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Luo asiakas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
|
|
@ -57,39 +75,49 @@ msgstr "Luotu"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Lataa lokit"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Ota käyttöön Bus-kirjaaminen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-reititys"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Pikaviestimen tila"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Viimeisin kysely"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Viimeksi läsnä"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -110,47 +138,85 @@ msgstr "Viesti"
|
|||
msgid "Models"
|
||||
msgstr "Mallit"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Poissa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Verkossa"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Päivitä"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Tallenna työsi ja päivitä se, jotta saat uusimmat päivitykset ja vältät "
|
||||
"mahdolliset ongelmat."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sivu näyttää vanhentuneelta."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Sivu on vanhentunut"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Käyttäjän läsnäolo"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Käyttäjäasetukset"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Käyttäjät"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Salasanasi on oletussalasana (admin)! Jos tämä järjestelmä on alttiina "
|
||||
"epäluotettaville käyttäjille, on tärkeää vaihtaa se välittömästi "
|
||||
"turvallisuussyistä. Jatkan siitä nalkuttamista!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket-viestien käsittely"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Poissa"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Pikaviestimen tila"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Viimeisin kysely"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Viimeksi läsnä"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Poissa"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Verkossa"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Käyttäjän läsnäolo"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Käyttäjät"
|
||||
|
|
|
|||
|
|
@ -1,125 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,34 +1,47 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:18+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/bus/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Groupes d'accès"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Pièce jointe"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Peut envoyer des messages via bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
msgstr "Chaîne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
|
|
@ -40,6 +53,11 @@ msgstr "Bus de communication"
|
|||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Créer un client"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,48 +70,58 @@ msgstr "Créé le"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Télécharger les journaux"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Activer le protocole BUS"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Routage HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Statut de messagerie instantanée"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Dernier sondage"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Dernière présence en ligne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
msgstr "Mis à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
msgstr "Mis à jour le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -105,47 +133,85 @@ msgstr "Message"
|
|||
msgid "Models"
|
||||
msgstr "Modèles"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Hors ligne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En ligne"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Actualiser"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Sauvegardez votre travail et actualisez-le pour obtenir les dernières mises "
|
||||
"à jour et éviter de potentiels problèmes."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "La page semble obsolète."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "La page est obsolète."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Présence de l'utilisateur"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Paramètres utilisateur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Votre mot de passe est celui par défaut (admin)! Si ce système est exposé à "
|
||||
"des utilisateurs non fiables, il est important de le changer immédiatement "
|
||||
"pour des raisons de sécurité. Je continuer à vous le rappeler !"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "traitement des messages du websocket "
|
||||
msgstr "traitement des messages du websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Absent"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Statut de messagerie instantanée"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Dernier sondage"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Dernière présence en ligne"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Hors ligne"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "En ligne"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Présence de l'utilisateur"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Utilisateurs"
|
||||
|
|
|
|||
|
|
@ -7,11 +7,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:42+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_BE/)\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -19,109 +18,110 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partenaire"
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
|
|
@ -129,15 +129,17 @@ msgid "User Presence"
|
|||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Créé le"
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,125 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,125 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -68,12 +68,6 @@ msgstr "ID"
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -97,7 +91,7 @@ msgstr "Last Updated on"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
msgstr "સંદેશ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
|
|
@ -117,15 +111,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -142,6 +133,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "વપરાશકર્તાઓ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2022
|
||||
# Fishfur A Banter <fishfurbanter@gmail.com>, 2022
|
||||
|
|
@ -10,25 +10,38 @@
|
|||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# or balmas <or@laylinetech.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-20 09:33+0000\n"
|
||||
"Last-Translator: or balmas <or@laylinetech.com>\n"
|
||||
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/bus/he/>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "רחוק"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "קבוצות הרשאה"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "קובץ מצורף"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -45,6 +58,11 @@ msgstr "אפיק תקשורת"
|
|||
msgid "Contact"
|
||||
msgstr "איש קשר"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "יצירת לקוח"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -57,39 +75,49 @@ msgstr "נוצר ב-"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "הורדת יומנים"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "ניתוב HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "סטטוס IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "סקר אחרון"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "נוכחות אחרונה"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -110,47 +138,80 @@ msgstr "הודעה"
|
|||
msgid "Models"
|
||||
msgstr "דגמים"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "לא מקוון"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "מקוון"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "רענן"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "נראה שהדף הינו מיושן."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "נוכחות משתמש"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "הגדרות משתמש"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "משתמשים"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "רחוק"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "סטטוס IM"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "סקר אחרון"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "נוכחות אחרונה"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "לא מקוון"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "מקוון"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "נוכחות משתמש"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "משתמשים"
|
||||
|
|
|
|||
|
|
@ -1,35 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/bus/hi/>\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "ऐक्सेस ग्रुप्स"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "अटैचमेंट"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
msgstr "चैनल"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
|
|
@ -41,10 +48,15 @@ msgstr ""
|
|||
msgid "Contact"
|
||||
msgstr "संपर्क"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "ग्राहक बनाएं"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
msgstr "इन्होंने बनाया"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
|
|
@ -53,39 +65,49 @@ msgstr "इस तारीख को बनाया गया"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
msgstr "डिस्प्ले का नाम"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "एचटीपीपी राउटिंग"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,44 +128,53 @@ msgstr "मैसेज"
|
|||
msgid "Models"
|
||||
msgstr "मॉडल"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "रीफ्रेश करें"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "उपयोगकर्ता"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "यूज़र सेटिंग"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
|
|||
|
|
@ -1,30 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Vojislav Opačić <vojislav.opacic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/bus/hr/"
|
||||
">\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\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"
|
||||
"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 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grupe"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -41,6 +55,11 @@ msgstr "Kanal komunikacije"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Kreiraj kupca"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -53,39 +72,49 @@ msgstr "Kreirano"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Preuzmi logove"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmjeravanje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnji pokušaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnja prijava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,47 +135,80 @@ msgstr "Poruka"
|
|||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Odspojen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Osvježi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stranica se čini zastarjela."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisutnost korisnika"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Korisničke postavke"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "upravljanje porukama websocketa"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Odsutan"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM Status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Zadnji pokušaj"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Zadnja prijava"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Odspojen"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Prisutnost korisnika"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Korisnici"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
|
|
@ -9,25 +9,38 @@
|
|||
# krnkris, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/bus/hu/"
|
||||
">\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Távol"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Csoport hozzáférés"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Melléklet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -44,6 +57,11 @@ msgstr "Kommunikációs busz"
|
|||
msgid "Contact"
|
||||
msgstr "Kapcsolat"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -56,38 +74,48 @@ msgstr "Létrehozva"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Naplók letöltése"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP irányítás"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Üzenetküldési állapot"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Utolsó szavazás"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Utolsó jelenlét"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
|
|
@ -97,7 +125,7 @@ msgstr "Frissítette"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve "
|
||||
msgstr "Frissítve"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -109,47 +137,80 @@ msgstr "Üzenet"
|
|||
msgid "Models"
|
||||
msgstr "Modellek"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Frissítés"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Felhasználói jelenlét"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Felhasználói beállítások"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Felhasználók"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Távol"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Üzenetküldési állapot"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Utolsó szavazás"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Utolsó jelenlét"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Felhasználói jelenlét"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Felhasználók"
|
||||
|
|
|
|||
|
|
@ -1,18 +1,20 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Armenian (http://www.transifex.com/odoo/odoo-9/language/hy/)\n"
|
||||
"Language: hy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -64,12 +66,6 @@ msgstr ""
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -93,7 +89,7 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
msgstr "Հաղորդագրություն"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
|
|
@ -113,15 +109,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -138,6 +131,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Օգտագործողներ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
|
|||
|
|
@ -1,29 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
# Abe Manyo, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:38+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/bus/"
|
||||
"id/>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Menjauh"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Kelompok Akses"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Lampiran"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Dapat mengirim pesan melalui bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,6 +53,11 @@ msgstr "Bus Komunikasi"
|
|||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Buat Pelanggan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,48 +70,58 @@ msgstr "Dibuat pada"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Unduh log"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Aktifkan BuS logging"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Poll terakhir"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Kehadiran terakhir"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
msgstr "Terakhir Diperbarui oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
msgstr "Terakhir Diperbarui pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -105,47 +133,85 @@ msgstr "Pesan"
|
|||
msgid "Models"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Luring"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Daring"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Simpan pekerjaan Anda dan refresh untuk mendapatkan update terkini dan "
|
||||
"menghindari potensi masalah."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Halaman tersebut tampaknya sudah usang."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Halaman sudah tidak berlaku lagi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Kehadiran Pengguna"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Pengaturan User"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Pengguna"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Password Anda adalah default (admin)! Bila sistem ini terbuka ke user yang "
|
||||
"tidak dipercaya penting bagi Anda untuk langsung merubahnya untuk alasan "
|
||||
"keamanan. Saya akan terus mengingatkan Anda mengenai hal ini!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "penanganan pesan websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Menjauh"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Status IM"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Poll terakhir"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Kehadiran terakhir"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Luring"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Daring"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Kehadiran Pengguna"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Pengguna"
|
||||
|
|
|
|||
|
|
@ -1,22 +1,18 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -27,7 +23,7 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
msgstr "farvegur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
|
|
@ -37,7 +33,7 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Hafa samband"
|
||||
msgstr "Tengiliður"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
|
|
@ -47,19 +43,19 @@ msgstr "Búið til af"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
msgstr "Stofnað þann"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
msgstr "Nafn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
msgstr "Auðkenni"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
|
|
@ -68,12 +64,6 @@ msgstr "Auðkenni (ID)"
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -107,7 +97,7 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
msgstr "Ótengt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
|
|
@ -117,22 +107,19 @@ msgstr ""
|
|||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Notandi"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
|
|
@ -142,6 +129,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Notendur"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
|
|||
|
|
@ -1,30 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2022
|
||||
# Luca Carlo, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:09+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/bus/it/"
|
||||
">\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
|
||||
"0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Assente"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Gruppi di accesso"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Allegato"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Può inviare messaggi via bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -41,6 +54,11 @@ msgstr "Bus di comunicazione"
|
|||
msgid "Contact"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Crea cliente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -53,39 +71,49 @@ msgstr "Data creazione"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Scarica registri"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Attiva accesso bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Instradamento HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Stato IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Ultima interrogazione"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Ultima presenza"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,47 +134,85 @@ msgstr "Messaggio"
|
|||
msgid "Models"
|
||||
msgstr "Modelli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Non in linea"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "In linea"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Ricarica"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Salva il tuo lavoro e ricarica la pagina per ottenere gli ultimi "
|
||||
"aggiornamenti ed evitare problemi."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "La pagina non sembra essere aggiornata."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "La pagina non è aggiornata"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presenza utente"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Impostazioni utente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utenti"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"La password risulta quella predefinita (admin). Se il sistema viene esposto "
|
||||
"a utenti non fidati, è essenziale cambiarla immediatamente per motivi di "
|
||||
"sicurezza. Tale avviso verrà riproposto in modo insistente."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Gestione dei messaggi websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Assente"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Stato IM"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Ultimo poll"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Ultima presenza"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Fuori linea"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "In linea"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Presenza utente"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Utenti"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 江口和志 <sandwhale1010@gmail.com>, 2022
|
||||
# Andy Yiu, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:15+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/bus/ja/"
|
||||
">\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "外出"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "アクセスグループ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "添付ファイル"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "bus.bus経由でメッセージを送ることができます"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -42,6 +53,11 @@ msgstr "コミュニケーションバス"
|
|||
msgid "Contact"
|
||||
msgstr "連絡先"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "顧客を作成する"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -54,39 +70,49 @@ msgstr "作成日"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "ログのダウンロード"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "バスログを有効にする"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTPルーティング"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IMステータス"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "最終返信"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "最終在席"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -107,47 +133,84 @@ msgstr "メッセージ"
|
|||
msgid "Models"
|
||||
msgstr "モデル"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "オフライン"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "オンライン"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "更新"
|
||||
msgstr "リフレッシュ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"作業を保存して更新すると、最新の更新が表示され、潜在的な問題を回避できます。"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "ページが古くなっているようです。"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "ページが古くなっています"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "ユーザプレゼンス"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "ユーザ設定"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "ユーザ"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"パスワードはデフォルト(管理者の)です! このシステムが信頼できないユーザーに"
|
||||
"公開されている場合、セキュリティ上の理由からすぐに変更することが重要です。 私"
|
||||
"はそれについてあなたをしつこくリマインドします!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "WebSocketメッセージ処理"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "外出"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IMステータス"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "最終返信"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "最終在席"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "オフライン"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "オンライン"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "ユーザプレゼンス"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "ユーザ"
|
||||
|
|
|
|||
|
|
@ -1,125 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,125 +1,186 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-19 13:24+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kabyle <https://translate.odoo.com/projects/odoo-19/bus/kab/"
|
||||
">\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Abadu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Anermis"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr "Aseqdac"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,24 +1,22 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
# Chan Nath <channath@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Chan Nath <channath@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -34,7 +32,7 @@ msgstr "ឆានែល"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "រថយន្តទំនាក់ទំនង"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
|
|
@ -61,30 +59,24 @@ msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
|||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "ស្ថានភាព IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "ការស្ទង់មតិចុងក្រោយ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "វត្តមានចុងក្រោយ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
|
|
@ -99,53 +91,56 @@ msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "សារ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "ម៉ូត"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "បិទប្រពន្ឋ័សេវា"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "បើកប្រពន្ឋ័ទាក់ទង"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "អ្នកប្រើប្រាស់"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "វត្តមានរបស់អ្នកប្រើ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "អ្នកប្រើ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:38+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/bus/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "자리 비움"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "사용 가능 그룹"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "첨부 파일"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "bus.bus를 통해 메시지 전송 가능"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,6 +51,11 @@ msgstr "커뮤니케이션 버스"
|
|||
msgid "Contact"
|
||||
msgstr "연락처"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "고객 만들기"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,39 +68,49 @@ msgstr "작성일자"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "다운로드 로그"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "버스 로깅 활성화"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 라우팅"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "메신저 상태"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "최근 투표"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "최근 출석"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -105,47 +131,85 @@ msgstr "메시지"
|
|||
msgid "Models"
|
||||
msgstr "모델"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "오프라인"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "온라인"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "새로 고침"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"작업을 저장한 후 페이지를 새로고침하세요. 최신 업데이트가 적용되어 문제 발생"
|
||||
"을 사전에 예방합니다."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "페이지가 오래된 것 같습니다."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "페이지가 오래되었습니다."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "사용자 출석"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "사용자 설정"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "사용자"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"비밀번호는 기본(admin)입니다! 이 시스템이 신뢰할 수 없는 사용자에게 노출된 경"
|
||||
"우 보안상의 이유로 즉시 변경해야합니다. 나는 이 문제에 대해 계속 잔소리를 할"
|
||||
"겁니다!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "웹소켓 메시지 처리"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "자리 비움"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "메신저 상태"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "최근 투표"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "최근 출석"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "오프라인"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "온라인"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "사용자 출석"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "사용자"
|
||||
|
|
|
|||
184
odoo-bringout-oca-ocb-bus/bus/i18n/ku.po
Normal file
184
odoo-bringout-oca-ocb-bus/bus/i18n/ku.po
Normal file
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/bus/ckb/>\n"
|
||||
"Language: ku\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "هاوپێچ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "پەیوەندی"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "دروستکراوە لەلایەن..."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "دروستکراوە لە"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "دوایین نوێکردنەوە لەلایەن..."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "دوایین نوێکردنەوە لە..."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "نامە"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "بەکارهێنەر"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +1,20 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.constraint,message:bus.constraint_bus_presence_bus_user_presence_unique
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_autovacuum
|
||||
msgid "Automatic Vacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
|
|
@ -74,12 +64,6 @@ msgstr ""
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -105,6 +89,11 @@ msgstr ""
|
|||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
|
|
@ -115,19 +104,40 @@ msgstr ""
|
|||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: code:addons/bus/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "bus.Bus not available in test mode"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,23 +1,18 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -28,7 +23,7 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ຊ່ອງ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
|
|
@ -38,29 +33,29 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ຂໍ້ມູນຕິດຕໍ່ພົວພັນ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
|
|
@ -69,12 +64,6 @@ msgstr "ເລກລຳດັບ"
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -88,12 +77,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -118,22 +107,19 @@ msgstr ""
|
|||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ຜູ້ໃຊ້"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
|
|
@ -143,7 +129,13 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "ຜູ້ໃຊ້ງານ"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2022
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2022
|
||||
|
|
@ -10,25 +10,40 @@
|
|||
# Martin Trigaux, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:06+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/bus/"
|
||||
"lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
|
||||
"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
|
||||
"1 : n % 1 != 0 ? 2: 3);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Išėjęs"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Prieigos grupės"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Prisegtukas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -45,6 +60,11 @@ msgstr "Komunikacijos magistralė"
|
|||
msgid "Contact"
|
||||
msgstr "Kontaktas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -57,39 +77,49 @@ msgstr "Sukurta"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP nukreipimas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM būsena"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Paskutinė apklausa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Paskutinį kartą matytas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -111,46 +141,79 @@ msgid "Models"
|
|||
msgstr "Modeliai"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Atsijungęs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Prisijungęs"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Atnaujinti"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Vartotojo aktyvumas"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Vartotojai"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Išėjęs"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM būsena"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Paskutinė apklausa"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Paskutinį kartą matytas"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Atsijungęs"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Prisijungęs"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Vartotojo aktyvumas"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Vartotojai"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Anzelika Adejanova, 2022
|
||||
# JanisJanis <jbojars@gmail.com>, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-22 09:22+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>\n"
|
||||
"Language-Team: Latvian <https://translate.odoo.com/projects/odoo-19/bus/lv/"
|
||||
">\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Projām"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -43,6 +55,11 @@ msgstr ""
|
|||
msgid "Contact"
|
||||
msgstr "Kontakts"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -55,39 +72,49 @@ msgstr "Izveidots"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -108,47 +135,71 @@ msgstr "Ziņojums"
|
|||
msgid "Models"
|
||||
msgstr "Models"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Bezsaiste"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Tiešsaiste"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Atsvaidzināt"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Šī lappuse izskatās, ka ir novecojusi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Lietotāji"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Jūsu parole ir noklusējuma (administrators)! Ja šī sistēma ir pakļauta "
|
||||
"neuzticamiem lietotājiem, drošības apsvērumu dēļ ir svarīgi to nekavējoties "
|
||||
"nomainīt. Mēs Jums par to turpināsim atgādināt!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Ārpus biroja"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Bezsaiste"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Tiešsaiste"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Lietotāji"
|
||||
|
|
|
|||
|
|
@ -1,125 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,150 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ചാനൽ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "കോൺടാക്ട് "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "സന്ദേശം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "മോഡൽസ്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "ഓഫ്ലൈൻ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "യൂസർ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "യൂസർ സാന്നിധ്യം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "യൂസേഴ്സ് "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
@ -7,11 +7,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2016-04-22 12:13+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/ml_IN/)\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/language/ml_IN/)\n"
|
||||
"Language: ml_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -19,108 +18,109 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "രൂപപ്പെടുത്തിയത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "രൂപപ്പെടുത്തിയത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -129,15 +129,17 @@ msgid "User Presence"
|
|||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "നിർമിച്ച ദിവസം"
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,30 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
#
|
||||
# Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Mongolian <https://translate.odoo.com/projects/odoo-19/bus/mn/"
|
||||
">\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Хол байна"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Хандалтын бүлгүүд"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Хавсралт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -41,6 +53,11 @@ msgstr "Харилцааны цуваа"
|
|||
msgid "Contact"
|
||||
msgstr "Харилцах хаяг"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -53,39 +70,49 @@ msgstr "Үүсгэсэн огноо"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "ШХ Төлөв"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Сүүлийн Санал"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Сүүлийн Оролцоо"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,47 +133,80 @@ msgstr "Зурвас"
|
|||
msgid "Models"
|
||||
msgstr "Модел"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Оффлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Хэрэглэгч"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Хэрэглэгчийн Оролцоо"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Хэрэглэгчид"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Хол байна"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "ШХ Төлөв"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Сүүлийн Санал"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Сүүлийн Оролцоо"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Оффлайн"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Онлайн"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Хэрэглэгчийн Оролцоо"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Хэрэглэгчид"
|
||||
|
|
|
|||
|
|
@ -1,150 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kenalan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesej"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Dalam talian"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
185
odoo-bringout-oca-ocb-bus/bus/i18n/my.po
Normal file
185
odoo-bringout-oca-ocb-bus/bus/i18n/my.po
Normal file
|
|
@ -0,0 +1,185 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Oakarmin Iron <oakarminiron@gmail.com>, 2025, 2026.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-04 07:54+0000\n"
|
||||
"Last-Translator: Oakarmin Iron <oakarminiron@gmail.com>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/bus/my/>"
|
||||
"\n"
|
||||
"Language: my\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 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "အသုံးပြုခွင့် အဖွဲ့များ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "ပူးတွဲ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ချယ်နယ်"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ဆက်သွယ်ရန်"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ဖန်တီးသူ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "တည်ဆောက်သည့်အချိန်"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ပြသသော အမည်"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "အိုင်ဒီ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "နောက်ဆုံးပြင်ဆင်သူ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "နောက်ဆုံးပြင်ဆင်ချိန်"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "မက်ဆေ့ဂျ်"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "မော်ဒယ်များ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "အသုံးပြုသူ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2025
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:28+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"bus/nb_NO/>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Borte"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Tilgangsgrupper"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Vedlegg"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -41,6 +52,11 @@ msgstr ""
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -49,43 +65,53 @@ msgstr "Opprettet av"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Last ned logger"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-ruting"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Chattestatus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Sist kontaktet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Sist tilstede"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,47 +132,80 @@ msgstr "Melding"
|
|||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Frakoblet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "På nett"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Oppdater"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Bruker tilstede"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Bruker innstillinger"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Brukere"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Håndtering av WebSocket-meldinger"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Borte"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Chattestatus"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Sist kontaktet"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Sist tilstede"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Frakoblet"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "På nett"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Bruker tilstede"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Brukere"
|
||||
|
|
|
|||
|
|
@ -1,122 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,29 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
#
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Bren Driesen <brdri@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-14 08:58+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/bus/nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Afwezig"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Toegangsgroepen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Bijlage"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Kan berichten versturen via bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,6 +52,11 @@ msgstr "Communicatiebus"
|
|||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Een klant aanmaken"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,39 +69,49 @@ msgstr "Aangemaakt op"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Logboeken downloaden"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Bus-loggen inschakelen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Laatste pol"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Laatst aanwezig"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -105,47 +132,85 @@ msgstr "Bericht"
|
|||
msgid "Models"
|
||||
msgstr "Modellen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Vernieuw"
|
||||
msgstr "Vernieuwen"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Sla je werk op en vernieuw het om de laatste updates te krijgen en mogelijke "
|
||||
"problemen te voorkomen."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "De pagina lijkt verouderd."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "De pagina is verouderd"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Gebruiker aanwezig"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Gebruikersinstellingen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Gebruikers"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Je wachtwoord is het standaard (admin)! Als dit systeem wordt blootgesteld "
|
||||
"aan niet-vertrouwde gebruikers, is het belangrijk om het om "
|
||||
"veiligheidsredenen onmiddellijk te wijzigen. Ik zal er over blijven zeuren!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket berichtafhandeling"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Afwezig"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM Status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Laatste pol"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Laatst aanwezig"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Gebruiker aanwezig"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Gebruikers"
|
||||
|
|
|
|||
|
|
@ -1,146 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
|
|
@ -11,25 +11,39 @@
|
|||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-21 08:00+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/bus/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Zaraz wracam"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grupy dostępu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Załącznik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Może wysyłać wiadomości przez bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -46,6 +60,11 @@ msgstr "Magistrala komunikacyjna"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Utwórz klienta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -58,39 +77,49 @@ msgstr "Data utworzenia"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Dziennik Pobranych"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Włącz rejestrowanie magistrali"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Wytyczanie HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status komunikatora"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Ostatnia ankieta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Ostatnia obecność"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -111,47 +140,85 @@ msgstr "Wiadomość"
|
|||
msgid "Models"
|
||||
msgstr "Modele"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Niedostępny"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Dostępny"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Odśwież"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Zapisz swoją pracę i odśwież stronę, aby otrzymać najnowsze aktualizacje i "
|
||||
"uniknąć potencjalnych błędów."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Strona wydaje się być nieaktualna."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Ta strona nie jest aktualna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Obecność użytkownika"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Ustawienia użytkownika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Użytkownicy"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Twoje hasło to domyślne \"admin\"! Jeśli system jest dostępny dla innych "
|
||||
"użytkowników, zmień je jak najszybciej, aby zapewnić bezpieczeństwo danych. "
|
||||
"Będę Ci o tym przypominać!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "obsługa komunikatów websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Zaraz wracam"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Status komunikatora"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Ostatnia ankieta"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Ostatnia obecność"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Niedostępny"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Dostępny"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Obecność użytkownika"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Użytkownicy"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
|
|
@ -9,26 +9,39 @@
|
|||
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2024
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Nuno Silva <nuno.silva@arxi.pt>, 2024\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/bus/"
|
||||
"pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grupos de Acesso"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Pode enviar mensagens via bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -38,13 +51,18 @@ msgstr "Canal"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
msgstr "Barramento de comunicação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Criar um cliente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -57,39 +75,49 @@ msgstr "Criado em"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Transferir registos"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Rotas HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estado IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última Votação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última Presença"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -110,47 +138,83 @@ msgstr "Mensagem"
|
|||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Desligado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Atualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "A página parece estar desatualizada."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presença de utilizador"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Configurações do Utilizador"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilizadores"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Sua senha é o padrão (admin). Se este sistema for exposto a usuários não "
|
||||
"confiáveis, é importante alterá-la imediatamente por motivos de segurança. "
|
||||
"Eu vou continuar te importunando acerca disso!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
msgstr "Tratamento de mensagens via websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Ausente"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Estado IM"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Última Votação"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Última Presença"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Desligado"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Presença de utilizador"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Utilizadores"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 10:03+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/bus/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grupos de acesso"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Pode enviar mensagens via bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -33,13 +46,18 @@ msgstr "Canal"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Barramento de Comunicação"
|
||||
msgstr "Barramento de comunicação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contato"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Criar um cliente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,39 +70,49 @@ msgstr "Criado em"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Logs de download"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Ativar registro de barramento"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Roteamento HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status do mensageiro"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última votação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última presença"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -105,47 +133,85 @@ msgstr "Mensagem"
|
|||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Atualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Salve o seu trabalho e atualize-o para obter as últimas atualizações e "
|
||||
"evitar potenciais problemas."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "A página parece estar desatualizada."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "A página está desatualizada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presença do Usuário"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Configurações do usuário"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuários"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Sua senha é o padrão (admin). Se este sistema for exposto a usuários não "
|
||||
"confiáveis, é importante alterá-la imediatamente por motivos de segurança. "
|
||||
"Eu vou continuar te importunando acerca disso!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Tratamento de mensagens via websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Ausente"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Status do mensageiro"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Última votação"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Última presença"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Presença do Usuário"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Usuários"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# sharkutz <sharkutz4life@yahoo.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Alin Miclea, 2024
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Alin Miclea, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/bus/ro/"
|
||||
">\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Acces Grupuri"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Atașament"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Poate trimite mesaje prin bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -42,6 +55,11 @@ msgstr "Magistrală de comunicații"
|
|||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Creează un client"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -54,39 +72,49 @@ msgstr "Creat în"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Descarcă jurnale"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Rutare HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Ultimul sondaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Ultima prezență"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -107,47 +135,85 @@ msgstr "Mesaj"
|
|||
msgid "Models"
|
||||
msgstr "Modele"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Deconectat"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Activ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizare"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Salvați-vă munca și reîmprospătați pentru a primi cele mai recente "
|
||||
"actualizări și pentru a evita eventualele probleme."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Pagina pare să nu fie actualizată."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Pagina este depășită"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prezență utilizator"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Setări utilizator"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilizatori"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Parola dvs. este implicită (administrator)! Dacă acest sistem este expus "
|
||||
"utilizatorilor de încredere, este important să îl schimbați imediat din "
|
||||
"motive de securitate. Voi continua să te enervez în legătură cu asta!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestionarea mesajelor websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Absent"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Status IM"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Ultimul sondaj"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Ultima prezență"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Deconectat"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Activ"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Prezență utilizator"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Utilizatori"
|
||||
|
|
|
|||
|
|
@ -1,33 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2024
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Anastasiia Koroleva (koan)" <koan@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-05 18:08+0000\n"
|
||||
"Last-Translator: \"Anastasiia Koroleva (koan)\" <koan@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/bus/ru/"
|
||||
">\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Далеко"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Группы доступа"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Вложение"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Может отправлять сообщения через bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -37,67 +47,82 @@ msgstr "Канал"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus коммуникация"
|
||||
msgstr "Коммуникационная шина"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
msgstr "Контакты"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Создать клиента"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
msgstr "Создано:"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
msgstr "Дата создания:"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Скачать журналы"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Включить логирование шины"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Маршрутизация HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM статус"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Последний опрос"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Последнее присутствие"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
msgstr "Последнее обновление:"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
msgstr "Дата последнего обновления:"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -109,30 +134,37 @@ msgstr "Сообщение"
|
|||
msgid "Models"
|
||||
msgstr "Модели"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Офлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Обновить"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Чтобы обновить данные и избежать ошибок, сохраните свою работу и обновите "
|
||||
"страницу."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Система была обновлена на сервере."
|
||||
msgstr "Похоже, что эта страница устарела."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Эта страница устарела"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
|
|
@ -140,16 +172,47 @@ msgid "User"
|
|||
msgstr "Пользователь"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Присутствие пользователя"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Настройки пользователя"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Пользователи"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Ваш пароль по умолчанию (admin)! Если эта система подвергается воздействию "
|
||||
"недоверенных пользователей, важно немедленно изменить настройки по "
|
||||
"соображениям безопасности. Я буду продолжать докучать Вам по этому поводу!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "обработка сообщений в сокетах"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Нет на месте"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Статус IM"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Последний опрос"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Последнее присутствие"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Не в сети"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Онлайн"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Присутствие пользователя"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Пользователи"
|
||||
|
|
|
|||
|
|
@ -1,28 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n "
|
||||
">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Neprítomný"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -39,6 +50,11 @@ msgstr "Komunikačná zbernica"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -51,39 +67,49 @@ msgstr "Vytvorené"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Posledný prieskum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Posledná prítomnosť"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -104,47 +130,80 @@ msgstr "Správa"
|
|||
msgid "Models"
|
||||
msgstr "Modely"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Obnoviť"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Zdá sa, že stránka je zastaraná."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Užívateľova prítomnosť"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Užívatelia"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Neprítomný"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Posledný prieskum"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Posledná prítomnosť"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Užívateľova prítomnosť"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Užívatelia"
|
||||
|
|
|
|||
|
|
@ -1,33 +1,45 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Katja Deržič, 2024
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:22+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/bus/sl/"
|
||||
">\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsoten"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Skupine pravic"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Priponka"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Sporočila lahko pošiljate preko bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -44,6 +56,11 @@ msgstr "Komunikacija Bus"
|
|||
msgid "Contact"
|
||||
msgstr "Stik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Ustvari stranko"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -56,39 +73,49 @@ msgstr "Ustvarjeno"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Prenesi dnevnike"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Omogoči beleženje vodila"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmerjanje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnje glasovanje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnja prisotnost"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -109,47 +136,82 @@ msgstr "Sporočilo"
|
|||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Brez povezave"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Spletno"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Osvežite"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Shranite svoje delo in osvežite stran, da dobite najnovejše posodobitve in "
|
||||
"se izognete morebitnim težavam."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Zdi se, da je stran zastarela."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Stran je zastarela"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Uporabniške nastavitve"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Uporabniki"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Vaše geslo je privzeto (admin)! Če je ta sistem izpostavljen nezaupanja "
|
||||
"vrednim uporabnikom, ga je zaradi varnostnih razlogov pomembno takoj "
|
||||
"spremeniti. Še naprej vas bom spraševal o tem!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "obravnavanje sporočil spletnega vtičnika"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Odsoten"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Zadnje glasovanje"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Zadnja prisotnost"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Brez povezave"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Spletno"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Uporabniki"
|
||||
|
|
|
|||
|
|
@ -1,23 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -35,6 +46,11 @@ msgstr ""
|
|||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -47,39 +63,49 @@ msgstr ""
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -100,44 +126,53 @@ msgstr ""
|
|||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
|
|||
|
|
@ -1,154 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\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: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Daleko"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikacioni Bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Poslednje istraživanje."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Poslednja prisutnost"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Poruka"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Van mreže"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Osveži"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stranica izgleda zastarelo."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisustvo korisnika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket rukovanje porukama"
|
||||
|
|
@ -1,128 +1,213 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/bus/sr_Latn/>\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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"
|
||||
"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 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr "Korisnik može imati samo jedan IM status."
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Grupe za pristup"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr "Datum kreiranja"
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP rutiranje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnja dojava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnji put prisutan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Poruka"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Osveži"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisustvo korisnika"
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr "bus.bus"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Podešavanja korisnika"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Odsutan"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Zadnja dojava"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Zadnji put prisutan"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Online"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Prisustvo korisnika"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Korisnici"
|
||||
|
|
|
|||
|
|
@ -1,35 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Simon S, 2022
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2022, 2025.
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Moa Nicklasson <Moa.nicklasson@hotmail.se>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Simon Nilsson, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Hanna Kharraziha <hakha@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Simon Nilsson, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-27 09:17+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/bus/sv/>"
|
||||
"\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Borta"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Rättighetsgrupper"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Bilaga"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Kan skicka meddelanden via bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -46,6 +59,11 @@ msgstr "Kommunikationsbuss"
|
|||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Skapa en kund"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -54,43 +72,53 @@ msgstr "Skapad av"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Ladda ner loggar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Aktivera Bus-logging"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-routing"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM-status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Senaste undersökning"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Sågs senast"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -99,7 +127,7 @@ msgstr "Senast uppdaterad av"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
msgstr "Senast uppdaterad den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -111,47 +139,85 @@ msgstr "Meddelande"
|
|||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Uppkopplad"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Ladda om"
|
||||
msgstr "Uppdatera"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Spara ditt arbete och uppdatera för att få de senaste uppdateringarna och "
|
||||
"undvika potentiella problem."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sidan verkar vara föråldrad."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Sidan är inaktuell"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Användarens närvaro/status"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Användarinställningar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Användare"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Ditt lösenord är standard (admin)! Om systemet utsätts för otillförlitliga "
|
||||
"användare är det av säkerhetsskäl viktigt att omedelbart ändra lösenordet. "
|
||||
"Jag kommer att fortsätta tjata på dig om det!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket meddelandehantering"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Borta"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM-status"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Senaste undersökning"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Sågs senast"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Offline"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Uppkopplad"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Användarens närvaro/status"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Användare"
|
||||
|
|
|
|||
|
|
@ -1,146 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
|
|
@ -1,18 +1,20 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2016-02-11 12:51+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n"
|
||||
"Language: ta\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
|
|
@ -23,7 +25,7 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
msgstr "சேனல்"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
|
|
@ -38,7 +40,7 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "உருவாக்கியவர்"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
|
|
@ -49,13 +51,13 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
msgstr "காட்சி பெயர்"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
|
|
@ -64,12 +66,6 @@ msgstr ""
|
|||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
|
|
@ -83,12 +79,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -113,15 +109,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -138,6 +131,12 @@ msgstr ""
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "பயனர்கள்"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid "Your password is the default (admin)! If this system is exposed to untrusted users it is important to change it immediately for security reasons. I will keep nagging you about it!"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
|
|
|
|||
|
|
@ -1,30 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:22+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/bus/th/>\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "ห่างออกไป"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "กลุ่มการเข้าถึง"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "การแนบ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "สามารถส่งข้อความผ่าน bus.bus ได้"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -41,6 +52,11 @@ msgstr "รถบัสสื่อสาร"
|
|||
msgid "Contact"
|
||||
msgstr "ติดต่อ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "สร้างลูกค้า"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -53,39 +69,49 @@ msgstr "สร้างเมื่อ"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "ดาวน์โหลดบันทึก"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "การกำหนด HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "สถานะ IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "โพลครั้งล่าสุด"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "การแสดงตนครั้งสุดท้าย"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -106,47 +132,71 @@ msgstr "ข้อความ"
|
|||
msgid "Models"
|
||||
msgstr "โมเดล"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "ออฟไลน์"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "ออนไลน์"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "รีเฟรช"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr "บันทึกงานของคุณและรีเฟรชเพื่อรับการอัปเดตล่าสุดและหลีกเลี่ยงปัญหาที่อาจเกิดขึ้น"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "ดูเหมือนเพจจะล้าสมัยแล้ว"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "หน้านี้เลิกใช้งานแล้ว"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "การแสดงตนของผู้ใช้"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "การตั้งค่าผู้ใช้"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "ผู้ใช้"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"รหัสผ่านของคุณเป็นค่าเริ่มต้น (admin+)! "
|
||||
"หากระบบนี้เปิดเผยต่อผู้ใช้ที่ไม่น่าเชื่อถือสิ่งสำคัญคือต้องเปลี่ยนทันทีด้วยเหตุผลด้านความปลอดภัย "
|
||||
"ฉันจะจู้จี้คุณเกี่ยวกับเรื่องนี้!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "การจัดการข้อความของ websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "ห่างออกไป"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "ออฟไลน์"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "ออนไลน์"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "ผู้ใช้"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2022
|
||||
|
|
@ -13,25 +14,41 @@
|
|||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
# "Malaz Siddig Elsayed Abuidris (msea)" <msea@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-28 12:47+0000\n"
|
||||
"Last-Translator: \"Malaz Siddig Elsayed Abuidris (msea)\" <msea@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/bus/tr/"
|
||||
">\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Dışarıda"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Erişim Grupları"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Ek"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "bus.bus aracılığıyla mesaj gönderebilir"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -48,51 +65,66 @@ msgstr "İletişim Veriyolu"
|
|||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Müşteri Oluştur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
msgstr "Tarafından oluşturuldu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Kayıtları indirme"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Otobüs Kayıtlarını Etkinleştir"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Yönlendirme"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Anlık İleti Durumu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Son Anket"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Son Durum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -113,47 +145,85 @@ msgstr "Mesaj"
|
|||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Çevrimdışı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Çevrimiçi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"En son güncellemeleri almak ve olası sorunları önlemek için çalışmanızı "
|
||||
"kaydedin ve yenileyin."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sayfa güncel değil gibi görünüyor."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Sayfa güncel değil"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Kullanıcı Durumu"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Kullanıcı ayarları"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Kullanıcılar"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Şifreniz varsayılan (admin)! Bu sistem güvenilmeyen kullanıcılara maruz "
|
||||
"kalırsa, güvenlik nedenleriyle derhal değiştirilmesi önemlidir. Bu konuda "
|
||||
"seni rahatsız etmeye devam edeceğim!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket mesaj işleme"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Dışarıda"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Anlık İleti Durumu"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Son Anket"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Son Durum"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Çevrimdışı"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Çevrimiçi"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Kullanıcı Durumu"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Kullanıcılar"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/bus/uk/"
|
||||
">\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
|
||||
"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
|
||||
"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
|
||||
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Відійшов"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Групи доступу"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Прикріплення"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Можна надіслати повідомлення через bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,6 +55,11 @@ msgstr "Bus комунікація"
|
|||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,39 +72,49 @@ msgstr "Створено"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Завантажити журнали"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Маршрутизація HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Статус у миттєвих повідомленнях"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Останнє опитування"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Остання присутність"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -105,47 +135,85 @@ msgstr "Повідомлення"
|
|||
msgid "Models"
|
||||
msgstr "Моделі"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Офлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Оновити"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Збережіть свою роботу та оновіть сторінку, щоб отримати останні оновлення та "
|
||||
"уникнути потенційних проблем."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Сторінка, здається, застаріла."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Сторінка застаріла"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Присутність користувача"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Налаштування користувача"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Користувачі"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Ваш пароль за замовчуванням (admin)! Якщо ця система наражається на "
|
||||
"ненадійних користувачів, важливо її негайно змінити з міркувань безпеки. Ми "
|
||||
"будемо тримати вас в курсі!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "обробка повідомлень websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Відійшов"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Статус у миттєвих повідомленнях"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Останнє опитування"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Остання присутність"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Офлайн"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Онлайн"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Присутність користувача"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Користувачі"
|
||||
|
|
|
|||
220
odoo-bringout-oca-ocb-bus/bus/i18n/uz.po
Normal file
220
odoo-bringout-oca-ocb-bus/bus/i18n/uz.po
Normal file
|
|
@ -0,0 +1,220 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
#, fuzzy
|
||||
msgid "Access Groups"
|
||||
msgstr "Kirish guruhlari"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
#, fuzzy
|
||||
msgid "Attachment"
|
||||
msgstr "Ilova"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
#, fuzzy
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "bus.bus orqali xabarlar yuborish mumkin"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
#, fuzzy
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
#, fuzzy
|
||||
msgid "Communication Bus"
|
||||
msgstr "Aloqa shinasi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
#, fuzzy
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
#, fuzzy
|
||||
msgid "Create a Customer"
|
||||
msgstr "Mijoz yaratish"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
#, fuzzy
|
||||
msgid "Created by"
|
||||
msgstr "Yaratuvchi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
#, fuzzy
|
||||
msgid "Created on"
|
||||
msgstr "Yaratilgan sana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
#, fuzzy
|
||||
msgid "Download logs"
|
||||
msgstr "Jurnallarni yuklab olish"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
#, fuzzy
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "Shina jurnalini yoqish"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
#, fuzzy
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP yo‘naltirish"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
#, fuzzy
|
||||
msgid "Last Updated by"
|
||||
msgstr "Oxirgi yangilovchi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
#, fuzzy
|
||||
msgid "Last Updated on"
|
||||
msgstr "Oxirgi yangilangan sana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
#, fuzzy
|
||||
msgid "Message"
|
||||
msgstr "Xabar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
#, fuzzy
|
||||
msgid "Models"
|
||||
msgstr "Modellar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
#, fuzzy
|
||||
msgid "Refresh"
|
||||
msgstr "Yangilash"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Oxirgi yangilanishlarni olish va yuzaga kelishi mumkin bo‘lgan muammolarning "
|
||||
"oldini olish uchun ishingizni saqlang va sahifani yangilang."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, fuzzy
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sahifa eskirgan ko‘rinadi."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
#, fuzzy
|
||||
msgid "The page is out of date"
|
||||
msgstr "Sahifa eskirgan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#, fuzzy
|
||||
msgid "User"
|
||||
msgstr "Foydalanuvchi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
#, fuzzy
|
||||
msgid "User Settings"
|
||||
msgstr "Foydalanuvchi sozlamalari"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Parolingiz standart (admin)! Agar bu tizim ishonchsiz foydalanuvchilarga "
|
||||
"ochiq bo‘lsa, xavfsizlik nuqtai nazaridan uni darhol o‘zgartirish muhim. Bu "
|
||||
"haqda sizga eslatishda davom etaman!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
#, fuzzy
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket xabarlarini qayta ishlash"
|
||||
|
|
@ -1,29 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:38+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/bus/"
|
||||
"vi/>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Away"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "Nhóm truy cập"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Tệp đính kèm"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "Có thể gửi tin nhắn qua bus.bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -33,13 +46,18 @@ msgstr "Kênh"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Communication Bus"
|
||||
msgstr "Bus thông tin trao đổi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Liên hệ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "Tạo một khách hàng"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -52,43 +70,53 @@ msgstr "Được tạo vào"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "Tải xuống nhật ký"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Định tuyến HTTP"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Tình trạng IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Last Poll"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Xuất hiện lần cuối"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
|
|
@ -105,30 +133,37 @@ msgstr "Thông báo"
|
|||
msgid "Models"
|
||||
msgstr "Mô hình"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Ngoại tuyến"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Trực tuyến"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
msgstr "Làm mới"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Lưu thao tác của bạn và làm mới để có được cập nhật mới nhất cũng như tránh "
|
||||
"các sự cố tiềm ẩn."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "The page appears to be out of date."
|
||||
msgstr "Trang này có vẻ đã quá cũ."
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "Trang này đã quá cũ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
|
|
@ -136,16 +171,47 @@ msgid "User"
|
|||
msgstr "Người dùng"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Người dùng hiện diện"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "Cài đặt người dùng"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Người dùng"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"Mật khẩu của bạn đang là mặc định (admin)! Nếu có người dùng không đáng tin "
|
||||
"cậy sử dụng hệ thống này, thì việc quan trọng là đổi mật khẩu ngay lập tức "
|
||||
"để bảo mật thông tin. Chúng tôi sẽ tiếp tục nhắc bạn về việc này!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "xử lý thông báo websocket"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "Away"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "Tình trạng IM"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "Last Poll"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "Xuất hiện lần cuối"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "Ngoại tuyến"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "Trực tuyến"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "Người dùng hiện diện"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Người dùng"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Raymond Yu <cl_yu@hotmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:21+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/bus/zh_Hans/>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "离开"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "访问组"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "附件"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "可以通过 bus.bus 发送消息"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,6 +52,11 @@ msgstr "通讯总线"
|
|||
msgid "Contact"
|
||||
msgstr "联系人"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "创建客户"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
|
|
@ -48,43 +65,53 @@ msgstr "创建人"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
msgstr "创建日期"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "下载日志"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "启用总线记录"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 路由"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM的状态"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "最后在线"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "最后登录"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -93,7 +120,7 @@ msgstr "最后更新人"
|
|||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
|
|
@ -105,47 +132,82 @@ msgstr "消息"
|
|||
msgid "Models"
|
||||
msgstr "模型"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "离线"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "线上"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "刷新"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr "保存您的工作并刷新,以获得最新的更新,并避免出现潜在问题。"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "该页面似乎已过期。"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "该页面已过期"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "用户上线"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "用户设置"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "用户"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"您的密码是默认密码(admin)! 如果此系统暴露给不受信任的用户,则出于安全原因"
|
||||
"立即更改它很重要。 我会继续唠叨您!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "网页登录消息处理"
|
||||
msgstr "websocket消息处理"
|
||||
|
||||
#~ msgid "Away"
|
||||
#~ msgstr "离开"
|
||||
|
||||
#~ msgid "IM Status"
|
||||
#~ msgstr "IM的状态"
|
||||
|
||||
#~ msgid "Last Poll"
|
||||
#~ msgstr "最后在线"
|
||||
|
||||
#~ msgid "Last Presence"
|
||||
#~ msgstr "最后登录"
|
||||
|
||||
#~ msgid "Offline"
|
||||
#~ msgstr "离线"
|
||||
|
||||
#~ msgid "Online"
|
||||
#~ msgstr "线上"
|
||||
|
||||
#~ msgid "User Presence"
|
||||
#~ msgstr "用户上线"
|
||||
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "用户"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
# Wil Odoo, 2025
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 08:10+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/bus/zh_Hant/>\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "離開"
|
||||
#: model:ir.model,name:bus.model_res_groups
|
||||
msgid "Access Groups"
|
||||
msgstr "存取組"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "附件"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_listener_mixin
|
||||
msgid "Can send messages via bus.bus"
|
||||
msgstr "可透過 bus.bus 傳送訊息"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
|
|
@ -40,10 +53,15 @@ msgstr "通信匯流排"
|
|||
msgid "Contact"
|
||||
msgstr "聯絡人"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,website_form_label:bus.model_res_partner
|
||||
msgid "Create a Customer"
|
||||
msgstr "建立客戶"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
msgstr "建立人員"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
|
|
@ -52,38 +70,48 @@ msgstr "建立於"
|
|||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Download logs"
|
||||
msgstr "下載日誌"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/debug/bus_logs_menu_item.xml:0
|
||||
msgid "Enable Bus Logging"
|
||||
msgstr "啟用匯流排記錄"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "http路由"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_listener_mixin__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_attachment__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_http__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:bus.field_ir_websocket__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_groups__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__id
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM的狀態"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "最後線上"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "最後出席"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
|
|
@ -103,47 +131,58 @@ msgstr "消息"
|
|||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "模型"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "離線"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "線上"
|
||||
msgstr "型號"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "Refresh"
|
||||
msgstr "重新載入"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid ""
|
||||
"Save your work and refresh to get the latest updates and avoid potential "
|
||||
"issues."
|
||||
msgstr "儲存你的工作並重新載入頁面,以獲得最新的更新,及避免出現潛在問題。"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "該頁面似乎已逾時"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/outdated_page_watcher_service.js:0
|
||||
#: code:addons/bus/static/src/services/bus_service.js:0
|
||||
msgid "The page is out of date"
|
||||
msgstr "此頁面已過期"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "使用者出現"
|
||||
#: model:ir.model,name:bus.model_res_users_settings
|
||||
msgid "User Settings"
|
||||
msgstr "使用者設定"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "使用者"
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
msgid ""
|
||||
"Your password is the default (admin)! If this system is exposed to untrusted "
|
||||
"users it is important to change it immediately for security reasons. I will "
|
||||
"keep nagging you about it!"
|
||||
msgstr ""
|
||||
"您的密碼是預設(admin)!如果此系統向不受信任的使用者公開,出於安全原因,非常重"
|
||||
"要請立即更改! (將一直提醒!)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
|
|
|
|||
|
|
@ -1,7 +1,12 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import bus
|
||||
from . import bus_presence
|
||||
from . import bus_listener_mixin
|
||||
from . import ir_attachment
|
||||
from . import ir_http
|
||||
from . import ir_model
|
||||
from . import ir_websocket
|
||||
from . import res_groups
|
||||
from . import res_users
|
||||
from . import res_users_settings
|
||||
from . import res_partner
|
||||
|
|
|
|||
|
|
@ -5,25 +5,28 @@ import json
|
|||
import logging
|
||||
import math
|
||||
import os
|
||||
import random
|
||||
import selectors
|
||||
import threading
|
||||
import time
|
||||
from psycopg2 import InterfaceError, sql
|
||||
from psycopg2 import InterfaceError
|
||||
from psycopg2.pool import PoolError
|
||||
|
||||
import odoo
|
||||
from ..tools import orjson
|
||||
from odoo import api, fields, models
|
||||
from odoo.service.server import CommonServer
|
||||
from odoo.tools.misc import DEFAULT_SERVER_DATETIME_FORMAT
|
||||
from odoo.tools import date_utils
|
||||
from odoo.tools import json_default, SQL
|
||||
from odoo.tools.constants import GC_UNLINK_LIMIT
|
||||
from odoo.tools.misc import OrderedSet
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
# longpolling timeout connection
|
||||
TIMEOUT = 50
|
||||
DEFAULT_GC_RETENTION_SECONDS = 60 * 60 * 24 # 24 hours
|
||||
|
||||
# custom function to call instead of NOTIFY postgresql command (opt-in)
|
||||
ODOO_NOTIFY_FUNCTION = os.environ.get('ODOO_NOTIFY_FUNCTION')
|
||||
# custom function to call instead of default PostgreSQL's `pg_notify`
|
||||
ODOO_NOTIFY_FUNCTION = os.getenv('ODOO_NOTIFY_FUNCTION', 'pg_notify')
|
||||
|
||||
|
||||
def get_notify_payload_max_length(default=8000):
|
||||
|
|
@ -40,11 +43,11 @@ def get_notify_payload_max_length(default=8000):
|
|||
NOTIFY_PAYLOAD_MAX_LENGTH = get_notify_payload_max_length()
|
||||
|
||||
|
||||
#----------------------------------------------------------
|
||||
# ---------------------------------------------------------
|
||||
# Bus
|
||||
#----------------------------------------------------------
|
||||
# ---------------------------------------------------------
|
||||
def json_dump(v):
|
||||
return json.dumps(v, separators=(',', ':'), default=date_utils.json_default)
|
||||
return json.dumps(v, separators=(',', ':'), default=json_default)
|
||||
|
||||
def hashable(key):
|
||||
if isinstance(key, list):
|
||||
|
|
@ -55,6 +58,8 @@ def hashable(key):
|
|||
def channel_with_db(dbname, channel):
|
||||
if isinstance(channel, models.Model):
|
||||
return (dbname, channel._name, channel.id)
|
||||
if isinstance(channel, tuple) and len(channel) == 2 and isinstance(channel[0], models.Model):
|
||||
return (dbname, channel[0]._name, channel[0].id, channel[1])
|
||||
if isinstance(channel, str):
|
||||
return (dbname, channel)
|
||||
return channel
|
||||
|
|
@ -80,9 +85,9 @@ def get_notify_payloads(channels):
|
|||
get_notify_payloads(channels[pivot:]))
|
||||
|
||||
|
||||
class ImBus(models.Model):
|
||||
|
||||
class BusBus(models.Model):
|
||||
_name = 'bus.bus'
|
||||
|
||||
_description = 'Communication Bus'
|
||||
|
||||
channel = fields.Char('Channel')
|
||||
|
|
@ -90,75 +95,107 @@ class ImBus(models.Model):
|
|||
|
||||
@api.autovacuum
|
||||
def _gc_messages(self):
|
||||
timeout_ago = datetime.datetime.utcnow()-datetime.timedelta(seconds=TIMEOUT*2)
|
||||
domain = [('create_date', '<', timeout_ago.strftime(DEFAULT_SERVER_DATETIME_FORMAT))]
|
||||
records = self.search(domain, limit=models.GC_UNLINK_LIMIT)
|
||||
if len(records) >= models.GC_UNLINK_LIMIT:
|
||||
self.env.ref('base.autovacuum_job')._trigger()
|
||||
return records.unlink()
|
||||
gc_retention_seconds = int(
|
||||
self.env["ir.config_parameter"]
|
||||
.sudo()
|
||||
.get_param("bus.gc_retention_seconds", DEFAULT_GC_RETENTION_SECONDS)
|
||||
)
|
||||
timeout_ago = fields.Datetime.now() - datetime.timedelta(seconds=gc_retention_seconds)
|
||||
# Direct SQL to avoid ORM overhead; this way we can delete millions of rows quickly.
|
||||
# This is a low-level table with no expected references, and doing this avoids
|
||||
# the need to split or reschedule this GC job.
|
||||
self.env.cr.execute("DELETE FROM bus_bus WHERE create_date < %s", (timeout_ago,))
|
||||
|
||||
@api.model
|
||||
def _sendmany(self, notifications):
|
||||
channels = set()
|
||||
values = []
|
||||
for target, notification_type, message in notifications:
|
||||
channel = channel_with_db(self.env.cr.dbname, target)
|
||||
channels.add(channel)
|
||||
values.append({
|
||||
'channel': json_dump(channel),
|
||||
'message': json_dump({
|
||||
'type': notification_type,
|
||||
'payload': message,
|
||||
})
|
||||
})
|
||||
self.sudo().create(values)
|
||||
if channels:
|
||||
def _sendone(self, target, notification_type, message):
|
||||
"""Low-level method to send ``notification_type`` and ``message`` to ``target``.
|
||||
|
||||
Using ``_bus_send()`` from ``bus.listener.mixin`` is recommended for simplicity and
|
||||
security.
|
||||
|
||||
When using ``_sendone`` directly, ``target`` (if str) should not be guessable by an
|
||||
attacker.
|
||||
"""
|
||||
self._ensure_hooks()
|
||||
channel = channel_with_db(self.env.cr.dbname, target)
|
||||
self.env.cr.precommit.data["bus.bus.values"].append(
|
||||
{
|
||||
"channel": json_dump(channel),
|
||||
"message": json_dump(
|
||||
{
|
||||
"type": notification_type,
|
||||
"payload": message,
|
||||
}
|
||||
),
|
||||
}
|
||||
)
|
||||
self.env.cr.postcommit.data["bus.bus.channels"].add(channel)
|
||||
|
||||
def _ensure_hooks(self):
|
||||
if "bus.bus.values" not in self.env.cr.precommit.data:
|
||||
self.env.cr.precommit.data["bus.bus.values"] = []
|
||||
|
||||
@self.env.cr.precommit.add
|
||||
def create_bus():
|
||||
self.sudo().create(self.env.cr.precommit.data.pop("bus.bus.values"))
|
||||
|
||||
if "bus.bus.channels" not in self.env.cr.postcommit.data:
|
||||
self.env.cr.postcommit.data["bus.bus.channels"] = OrderedSet()
|
||||
|
||||
# We have to wait until the notifications are commited in database.
|
||||
# When calling `NOTIFY imbus`, notifications will be fetched in the
|
||||
# bus table. If the transaction is not commited yet, there will be
|
||||
# nothing to fetch, and the websocket will return no notification.
|
||||
@self.env.cr.postcommit.add
|
||||
def notify():
|
||||
with odoo.sql_db.db_connect('postgres').cursor() as cr:
|
||||
if ODOO_NOTIFY_FUNCTION:
|
||||
query = sql.SQL("SELECT {}('imbus', %s)").format(sql.Identifier(ODOO_NOTIFY_FUNCTION))
|
||||
else:
|
||||
query = "NOTIFY imbus, %s"
|
||||
payloads = get_notify_payloads(list(channels))
|
||||
if len(payloads) > 1:
|
||||
_logger.info("The imbus notification payload was too large, "
|
||||
"it's been split into %d payloads.", len(payloads))
|
||||
payloads = get_notify_payloads(
|
||||
list(self.env.cr.postcommit.data.pop("bus.bus.channels"))
|
||||
)
|
||||
if len(payloads) > 1:
|
||||
_logger.info(
|
||||
"The imbus notification payload was too large, it's been split into %d payloads.",
|
||||
len(payloads),
|
||||
)
|
||||
with odoo.sql_db.db_connect("postgres").cursor() as cr:
|
||||
for payload in payloads:
|
||||
cr.execute(query, (payload,))
|
||||
cr.execute(
|
||||
SQL(
|
||||
"SELECT %s('imbus', %s)",
|
||||
SQL.identifier(ODOO_NOTIFY_FUNCTION),
|
||||
payload,
|
||||
)
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _sendone(self, channel, notification_type, message):
|
||||
self._sendmany([[channel, notification_type, message]])
|
||||
|
||||
@api.model
|
||||
def _poll(self, channels, last=0):
|
||||
def _poll(self, channels, last=0, ignore_ids=None):
|
||||
# first poll return the notification in the 'buffer'
|
||||
if last == 0:
|
||||
timeout_ago = datetime.datetime.utcnow()-datetime.timedelta(seconds=TIMEOUT)
|
||||
domain = [('create_date', '>', timeout_ago.strftime(DEFAULT_SERVER_DATETIME_FORMAT))]
|
||||
timeout_ago = fields.Datetime.now() - datetime.timedelta(seconds=TIMEOUT)
|
||||
domain = [('create_date', '>', timeout_ago)]
|
||||
else: # else returns the unread notifications
|
||||
domain = [('id', '>', last)]
|
||||
if ignore_ids:
|
||||
domain.append(("id", "not in", ignore_ids))
|
||||
channels = [json_dump(channel_with_db(self.env.cr.dbname, c)) for c in channels]
|
||||
domain.append(('channel', 'in', channels))
|
||||
notifications = self.sudo().search_read(domain)
|
||||
notifications = self.sudo().search_read(domain, ["message"])
|
||||
# list of notification to return
|
||||
result = []
|
||||
for notif in notifications:
|
||||
result.append({
|
||||
'id': notif['id'],
|
||||
'message': json.loads(notif['message']),
|
||||
'message': orjson.loads(notif['message']),
|
||||
})
|
||||
return result
|
||||
|
||||
def _bus_last_id(self):
|
||||
last = self.env['bus.bus'].search([], order='id desc', limit=1)
|
||||
return last.id if last else 0
|
||||
|
||||
#----------------------------------------------------------
|
||||
|
||||
# ---------------------------------------------------------
|
||||
# Dispatcher
|
||||
#----------------------------------------------------------
|
||||
# ---------------------------------------------------------
|
||||
|
||||
class BusSubscription:
|
||||
def __init__(self, channels, last):
|
||||
|
|
@ -211,7 +248,7 @@ class ImDispatch(threading.Thread):
|
|||
conn.poll()
|
||||
channels = []
|
||||
while conn.notifies:
|
||||
channels.extend(json.loads(conn.notifies.pop().payload))
|
||||
channels.extend(orjson.loads(conn.notifies.pop().payload))
|
||||
# relay notifications to websockets that have
|
||||
# subscribed to the corresponding channels.
|
||||
websockets = set()
|
||||
|
|
@ -225,7 +262,7 @@ class ImDispatch(threading.Thread):
|
|||
try:
|
||||
self.loop()
|
||||
except Exception as exc:
|
||||
if isinstance(exc, InterfaceError) and stop_event.is_set():
|
||||
if isinstance(exc, (InterfaceError, PoolError)) and stop_event.is_set():
|
||||
continue
|
||||
_logger.exception("Bus.loop error, sleep and retry")
|
||||
time.sleep(TIMEOUT)
|
||||
|
|
|
|||
30
odoo-bringout-oca-ocb-bus/bus/models/bus_listener_mixin.py
Normal file
30
odoo-bringout-oca-ocb-bus/bus/models/bus_listener_mixin.py
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class BusListenerMixin(models.AbstractModel):
|
||||
"""Allow sending messages related to the current model via as a bus.bus channel.
|
||||
|
||||
The model needs to be allowed as a valid channel for the bus in `_build_bus_channel_list`.
|
||||
"""
|
||||
|
||||
_name = 'bus.listener.mixin'
|
||||
_description = "Can send messages via bus.bus"
|
||||
|
||||
def _bus_send(self, notification_type, message, /, *, subchannel=None):
|
||||
"""Send a notification to the webclient."""
|
||||
for record in self:
|
||||
main_channel = record
|
||||
while (new_main_channel := main_channel._bus_channel()) != main_channel:
|
||||
main_channel = new_main_channel
|
||||
assert isinstance(main_channel, models.Model)
|
||||
if not main_channel:
|
||||
continue
|
||||
main_channel.ensure_one()
|
||||
channel = main_channel if subchannel is None else (main_channel, subchannel)
|
||||
# _sendone: channel is safe (record or tuple with record)
|
||||
self.env["bus.bus"]._sendone(channel, notification_type, message)
|
||||
|
||||
def _bus_channel(self):
|
||||
return self
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import datetime
|
||||
import time
|
||||
|
||||
from psycopg2 import OperationalError
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo import tools
|
||||
from odoo.service.model import PG_CONCURRENCY_ERRORS_TO_RETRY
|
||||
from odoo.tools.misc import DEFAULT_SERVER_DATETIME_FORMAT
|
||||
|
||||
UPDATE_PRESENCE_DELAY = 60
|
||||
DISCONNECTION_TIMER = UPDATE_PRESENCE_DELAY + 5
|
||||
AWAY_TIMER = 1800 # 30 minutes
|
||||
|
||||
|
||||
class BusPresence(models.Model):
|
||||
""" User Presence
|
||||
Its status is 'online', 'away' or 'offline'. This model should be a one2one, but is not
|
||||
attached to res_users to avoid database concurrence errors. Since the 'update' method is executed
|
||||
at each poll, if the user have multiple opened tabs, concurrence errors can happend, but are 'muted-logged'.
|
||||
"""
|
||||
|
||||
_name = 'bus.presence'
|
||||
_description = 'User Presence'
|
||||
_log_access = False
|
||||
|
||||
user_id = fields.Many2one('res.users', 'Users', ondelete='cascade')
|
||||
last_poll = fields.Datetime('Last Poll', default=lambda self: fields.Datetime.now())
|
||||
last_presence = fields.Datetime('Last Presence', default=lambda self: fields.Datetime.now())
|
||||
status = fields.Selection([('online', 'Online'), ('away', 'Away'), ('offline', 'Offline')], 'IM Status', default='offline')
|
||||
|
||||
def init(self):
|
||||
self.env.cr.execute("CREATE UNIQUE INDEX IF NOT EXISTS bus_presence_user_unique ON %s (user_id) WHERE user_id IS NOT NULL" % self._table)
|
||||
|
||||
@api.model
|
||||
def update(self, inactivity_period, identity_field, identity_value):
|
||||
""" Updates the last_poll and last_presence of the current user
|
||||
:param inactivity_period: duration in milliseconds
|
||||
"""
|
||||
# This method is called in method _poll() and cursor is closed right
|
||||
# after; see bus/controllers/main.py.
|
||||
try:
|
||||
# Hide transaction serialization errors, which can be ignored, the presence update is not essential
|
||||
# The errors are supposed from presence.write(...) call only
|
||||
with tools.mute_logger('odoo.sql_db'):
|
||||
self._update(inactivity_period=inactivity_period, identity_field=identity_field, identity_value=identity_value)
|
||||
# commit on success
|
||||
self.env.cr.commit()
|
||||
except OperationalError as e:
|
||||
if e.pgcode in PG_CONCURRENCY_ERRORS_TO_RETRY:
|
||||
# ignore concurrency error
|
||||
return self.env.cr.rollback()
|
||||
raise
|
||||
|
||||
@api.model
|
||||
def _update(self, inactivity_period, identity_field, identity_value):
|
||||
presence = self.search([(identity_field, '=', identity_value)], limit=1)
|
||||
# compute last_presence timestamp
|
||||
last_presence = datetime.datetime.now() - datetime.timedelta(milliseconds=inactivity_period)
|
||||
values = {
|
||||
'last_poll': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT),
|
||||
}
|
||||
# update the presence or a create a new one
|
||||
if not presence: # create a new presence for the user
|
||||
values[identity_field] = identity_value
|
||||
values['last_presence'] = last_presence
|
||||
self.create(values)
|
||||
else: # update the last_presence if necessary, and write values
|
||||
if presence.last_presence < last_presence:
|
||||
values['last_presence'] = last_presence
|
||||
presence.write(values)
|
||||
11
odoo-bringout-oca-ocb-bus/bus/models/ir_attachment.py
Normal file
11
odoo-bringout-oca-ocb-bus/bus/models/ir_attachment.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class IrAttachment(models.Model):
|
||||
_name = 'ir.attachment'
|
||||
_inherit = ["ir.attachment", "bus.listener.mixin"]
|
||||
|
||||
def _bus_channel(self):
|
||||
return self.env.user
|
||||
19
odoo-bringout-oca-ocb-bus/bus/models/ir_http.py
Normal file
19
odoo-bringout-oca-ocb-bus/bus/models/ir_http.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, models
|
||||
from ..websocket import WebsocketConnectionHandler
|
||||
|
||||
|
||||
class IrHttp(models.AbstractModel):
|
||||
_inherit = "ir.http"
|
||||
|
||||
@api.model
|
||||
def get_frontend_session_info(self):
|
||||
session_info = super().get_frontend_session_info()
|
||||
session_info["websocket_worker_version"] = WebsocketConnectionHandler._VERSION
|
||||
return session_info
|
||||
|
||||
def session_info(self):
|
||||
session_info = super().session_info()
|
||||
session_info["websocket_worker_version"] = WebsocketConnectionHandler._VERSION
|
||||
return session_info
|
||||
|
|
@ -7,14 +7,17 @@ class IrModel(models.Model):
|
|||
_inherit = 'ir.model'
|
||||
|
||||
def _get_model_definitions(self, model_names_to_fetch):
|
||||
fields_by_model_names = {}
|
||||
model_definitions = {}
|
||||
for model_name in model_names_to_fetch:
|
||||
model = self.env[model_name]
|
||||
# get fields, relational fields are kept only if the related model is in model_names_to_fetch
|
||||
fields_data_by_fname = {
|
||||
fname: field_data
|
||||
for fname, field_data in model.fields_get(
|
||||
attributes=['name', 'type', 'relation', 'required', 'readonly', 'selection', 'string']
|
||||
attributes={
|
||||
'name', 'type', 'relation', 'required', 'readonly', 'selection',
|
||||
'string', 'definition_record', 'definition_record_field', 'model_field',
|
||||
},
|
||||
).items()
|
||||
if not field_data.get('relation') or field_data['relation'] in model_names_to_fetch
|
||||
}
|
||||
|
|
@ -23,10 +26,11 @@ class IrModel(models.Model):
|
|||
inverse_fields = [
|
||||
field for field in model.pool.field_inverses[model._fields[fname]]
|
||||
if field.model_name in model_names_to_fetch
|
||||
and model.env[field.model_name]._has_field_access(field, 'read')
|
||||
]
|
||||
if inverse_fields:
|
||||
field_data['inverse_fname_by_model_name'] = {field.model_name: field.name for field in inverse_fields}
|
||||
if field_data['type'] == 'many2one_reference':
|
||||
field_data['model_name_ref_fname'] = model._fields[fname].model_field
|
||||
fields_by_model_names[model_name] = fields_data_by_fname
|
||||
return fields_by_model_names
|
||||
model_definitions[model_name] = {"fields": fields_data_by_fname}
|
||||
return model_definitions
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue