initial commit
This commit is contained in:
commit
9ae41c29a2
4
__init__.py
Normal file
4
__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import models
|
||||
from . import controllers
|
||||
from . import websocket
|
40
__manifest__.py
Normal file
40
__manifest__.py
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
'name' : 'IM Bus',
|
||||
'version': '1.0',
|
||||
'category': 'Hidden',
|
||||
'description': "Instant Messaging Bus allow you to send messages to users, in live.",
|
||||
'depends': ['base', 'web'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'bus/static/src/*.js',
|
||||
'bus/static/src/services/**/*.js',
|
||||
'bus/static/src/workers/websocket_worker.js',
|
||||
'bus/static/src/workers/websocket_worker_utils.js',
|
||||
],
|
||||
'web.assets_frontend': [
|
||||
'bus/static/src/*.js',
|
||||
'bus/static/src/services/**/*.js',
|
||||
('remove', 'bus/static/src/services/assets_watchdog_service.js'),
|
||||
('remove', 'bus/static/src/simple_notification_service.js'),
|
||||
'bus/static/src/workers/websocket_worker.js',
|
||||
'bus/static/src/workers/websocket_worker_utils.js',
|
||||
],
|
||||
'web.tests_assets': [
|
||||
'bus/static/tests/helpers/**/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'bus/static/tests/**/*.js',
|
||||
('remove', 'bus/static/tests/helpers/**/*'),
|
||||
],
|
||||
'bus.websocket_worker_assets': [
|
||||
'web/static/src/module_loader.js',
|
||||
'bus/static/src/workers/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
BIN
__pycache__/__init__.cpython-311.pyc
Normal file
BIN
__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/websocket.cpython-311.pyc
Normal file
BIN
__pycache__/websocket.cpython-311.pyc
Normal file
Binary file not shown.
5
controllers/__init__.py
Normal file
5
controllers/__init__.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import home
|
||||
from . import main
|
||||
from . import websocket
|
BIN
controllers/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
controllers/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
controllers/__pycache__/home.cpython-311.pyc
Normal file
BIN
controllers/__pycache__/home.cpython-311.pyc
Normal file
Binary file not shown.
BIN
controllers/__pycache__/main.cpython-311.pyc
Normal file
BIN
controllers/__pycache__/main.cpython-311.pyc
Normal file
Binary file not shown.
BIN
controllers/__pycache__/websocket.cpython-311.pyc
Normal file
BIN
controllers/__pycache__/websocket.cpython-311.pyc
Normal file
Binary file not shown.
33
controllers/home.py
Normal file
33
controllers/home.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
# 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
|
||||
user = request.env(user=uid)['res.users']
|
||||
env(context=user.context_get())['bus.bus']._sendone(admin, '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)
|
13
controllers/main.py
Normal file
13
controllers/main.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
|
||||
from odoo.http import Controller, request, route
|
||||
|
||||
|
||||
class BusController(Controller):
|
||||
@route('/bus/get_model_definitions', methods=['POST'], type='http', auth='user')
|
||||
def get_model_definitions(self, model_names_to_fetch, **kwargs):
|
||||
return request.make_response(json.dumps(
|
||||
request.env['ir.model']._get_model_definitions(json.loads(model_names_to_fetch)),
|
||||
))
|
64
controllers/websocket.py
Normal file
64
controllers/websocket.py
Normal file
|
@ -0,0 +1,64 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
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):
|
||||
"""
|
||||
Handle the websocket handshake, upgrade the connection if
|
||||
successfull.
|
||||
"""
|
||||
return WebsocketConnectionHandler.open_connection(request)
|
||||
|
||||
@route('/websocket/health', type='http', auth='none', save_session=False)
|
||||
def health(self):
|
||||
data = json.dumps({
|
||||
'status': 'pass',
|
||||
})
|
||||
headers = [('Content-Type', 'application/json'),
|
||||
('Cache-Control', 'no-store')]
|
||||
return request.make_response(data, headers)
|
||||
|
||||
@route('/websocket/peek_notifications', type='json', 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}
|
||||
|
||||
@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('/bus/websocket_worker_bundle', type='http', auth='public', cors='*')
|
||||
def get_websocket_worker_bundle(self, v=None): # pylint: disable=unused-argument
|
||||
"""
|
||||
:param str v: Version of the worker, frontend only argument used to
|
||||
prevent new worker versions to be loaded from the browser cache.
|
||||
"""
|
||||
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()
|
150
i18n/af.po
Normal file
150
i18n/af.po
Normal file
|
@ -0,0 +1,150 @@
|
|||
# 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.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"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 "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep 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
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. 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 "Laas Opgedateer deur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Boodskap"
|
||||
|
||||
#. 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
|
||||
#, 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 "Gebruiker"
|
||||
|
||||
#. 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 "Gebruikers"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
146
i18n/am.po
Normal file
146
i18n/am.po
Normal file
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
157
i18n/ar.po
Normal file
157
i18n/ar.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 "
|
151
i18n/az.po
Normal file
151
i18n/az.po
Normal file
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\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
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Uzaq"
|
||||
|
||||
#. 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 "Kommunikasiya Şini"
|
||||
|
||||
#. 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 "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
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"
|
||||
|
||||
#. 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 "Son Sorğu- sual"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Son İştirak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/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 "İstifadəçi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "İstifadəçi İştirakı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "İstifadəçilər"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
157
i18n/bg.po
Normal file
157
i18n/bg.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Albena Mincheva <albena_vicheva@abv.bg>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "Статус IM "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
151
i18n/bs.po
Normal file
151
i18n/bs.po
Normal file
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: 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 "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_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 "Prikazani naziv"
|
||||
|
||||
#. 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 "Zadnji ažurirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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/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 "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
150
i18n/bus.pot
Normal file
150
i18n/bus.pot
Normal file
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:55+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
165
i18n/ca.po
Normal file
165
i18n/ca.po
Normal file
|
@ -0,0 +1,165 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Arnau Ros, 2023
|
||||
# Cristian Cruz, 2023
|
||||
# Sandra Franch <sandra.franch@upc.edu>, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# marcescu, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Jonatan Gk, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Quim - eccit <quim@eccit.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
|
||||
#. 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ó "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. 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 "Estat de la conversa"
|
||||
|
||||
#. 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"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Missatge"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Refresca"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuaris"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
160
i18n/cs.po
Normal file
160
i18n/cs.po
Normal file
|
@ -0,0 +1,160 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Jakub Smolka, 2023
|
||||
# Ivana Bartonkova, 2023
|
||||
# Wil Odoo, 2023
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: karolína schusterová <karolina.schusterova@vdp.sk>, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Pryč"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikační sběrnice"
|
||||
|
||||
#. 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 "Vytvořeno uživatelem"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. 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_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 uživatelem"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upraveno dne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Zpráva"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Obnovit"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Uživatelé"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
157
i18n/da.po
Normal file
157
i18n/da.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Væk"
|
||||
|
||||
#. 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 "Kommunikations 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 "Oprettet af"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Vis 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
|
||||
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_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"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Besked"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Genopfrisk"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Brugere"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
158
i18n/de.po
Normal file
158
i18n/de.po
Normal file
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Abwesend"
|
||||
|
||||
#. 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 "Kommunikationsbus"
|
||||
|
||||
#. 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 "Erstellt von"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. 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 "Status der Sofortnachricht"
|
||||
|
||||
#. 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"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Nachricht"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
151
i18n/el.po
Normal file
151
i18n/el.po
Normal file
|
@ -0,0 +1,151 @@
|
|||
# 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
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+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"
|
||||
"Language: el\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
|
||||
#: 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_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 "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/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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
148
i18n/en_AU.po
Normal file
148
i18n/en_AU.po
Normal file
|
@ -0,0 +1,148 @@
|
|||
# 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: 2023-05-16 13:49+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
|
||||
#: 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 "Created by"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/en_GB.po
Normal file
149
i18n/en_GB.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Created by"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
158
i18n/es.po
Normal file
158
i18n/es.po
Normal file
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 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"
|
||||
|
||||
#. 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_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 "Usuario conectado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
||||
"¡Tu contraseña es la predeterminada (admin)! Si este sistema está expuesto a"
|
||||
" usuarios no confiables, es importante cambiarlo de inmediato por razones de"
|
||||
" seguridad. ¡Te seguiré molestando al respecto!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestión de mensajes de WebSocket"
|
158
i18n/es_419.po
Normal file
158
i18n/es_419.po
Normal file
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\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 instantanea"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 predeterminada (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"
|
149
i18n/es_BO.po
Normal file
149
i18n/es_BO.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"Language: es_BO\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
|
||||
#: 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 "Creado por"
|
||||
|
||||
#. 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 "Ú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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_CL.po
Normal file
149
i18n/es_CL.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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"
|
||||
"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 "Creado por"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_CO.po
Normal file
149
i18n/es_CO.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Creado por"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_CR.po
Normal file
149
i18n/es_CR.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_DO.po
Normal file
149
i18n/es_DO.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Creado por"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_EC.po
Normal file
149
i18n/es_EC.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Creado por:"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
148
i18n/es_PA.po
Normal file
148
i18n/es_PA.po
Normal file
|
@ -0,0 +1,148 @@
|
|||
# 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: 2023-05-16 13:49+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
|
||||
#: 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 "Creado por"
|
||||
|
||||
#. 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 "Ú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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_PE.po
Normal file
149
i18n/es_PE.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Creado por"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_PY.po
Normal file
149
i18n/es_PY.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Creado por"
|
||||
|
||||
#. 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 "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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/es_VE.po
Normal file
149
i18n/es_VE.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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 (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 "Creado por"
|
||||
|
||||
#. 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 "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_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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
162
i18n/et.po
Normal file
162
i18n/et.po
Normal file
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# JanaAvalah, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Marek Pontus, 2023
|
||||
# Maidu Targama <m.targama@gmail.com>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Anna, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Martin Aavastik <martin@avalah.ee>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Aavastik <martin@avalah.ee>, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Eemal"
|
||||
|
||||
#. 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_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loodud (kelle poolt?)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. 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 "Kuvatav nimi"
|
||||
|
||||
#. 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_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"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Sõnum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Uuenda"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Kasutajad"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
149
i18n/eu.po
Normal file
149
i18n/eu.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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"
|
||||
"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 "Nork sortua"
|
||||
|
||||
#. 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 "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
|
||||
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 "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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
164
i18n/fa.po
Normal file
164
i18n/fa.po
Normal file
|
@ -0,0 +1,164 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# F Hariri <fhari1234@gmail.com>, 2023
|
||||
# Yousef Shadmanesh <y.shadmanesh@gmail.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
163
i18n/fi.po
Normal file
163
i18n/fi.po
Normal file
|
@ -0,0 +1,163 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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"
|
||||
"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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Poissa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Viestintäväylä"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakti"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. 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 "Pikaviestimen tila"
|
||||
|
||||
#. 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"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Viesti"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Päivitä"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Käyttäjät"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
149
i18n/fo.po
Normal file
149
i18n/fo.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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"
|
||||
"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 "Byrjað av"
|
||||
|
||||
#. 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 "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
|
||||
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 "Seinast dagført av"
|
||||
|
||||
#. module: bus
|
||||
#: 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
|
||||
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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
157
i18n/fr.po
Normal file
157
i18n/fr.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Chaîne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de communication"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. 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 "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
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. 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 "Statut de messagerie instantanée"
|
||||
|
||||
#. 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 "Mis à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "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 "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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Actualiser"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 "
|
148
i18n/fr_BE.po
Normal file
148
i18n/fr_BE.po
Normal file
|
@ -0,0 +1,148 @@
|
|||
# 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: 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: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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 "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
|
||||
#, 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 "Utilisateurs"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/fr_CA.po
Normal file
149
i18n/fr_CA.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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"
|
||||
"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 "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 "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
|
||||
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
|
||||
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 "Dernière mise à 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"
|
||||
|
||||
#. 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/gl.po
Normal file
149
i18n/gl.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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"
|
||||
"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 "Creado por"
|
||||
|
||||
#. 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 "Ú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
|
||||
#: 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
150
i18n/gu.po
Normal file
150
i18n/gu.po
Normal file
|
@ -0,0 +1,150 @@
|
|||
# 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.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"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 "Contact"
|
||||
|
||||
#. 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__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. 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_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
|
||||
#: 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
|
||||
#, 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 "User"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
161
i18n/he.po
Normal file
161
i18n/he.po
Normal file
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# MichaelHadar, 2023
|
||||
# NoaFarkash, 2023
|
||||
# Fishfur A Banter <fishfurbanter@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 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 "מזהה"
|
||||
|
||||
#. 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
153
i18n/hr.po
Normal file
153
i18n/hr.po
Normal file
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+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"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
|
||||
#. 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 "Kanal komunikacije"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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_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"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. 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 "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/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Osvjež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 se čini zastarjela."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
159
i18n/hu.po
Normal file
159
i18n/hu.po
Normal file
|
@ -0,0 +1,159 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Dombos, 2023
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# krnkris, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: krnkris, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Távol"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Csatorna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kommunikációs busz"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kapcsolat"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. 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 "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_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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Üzenet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Frissítés"
|
||||
|
||||
#. 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 "Felhasználó"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Felhasználói jelenlét"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Felhasználók"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
150
i18n/hy.po
Normal file
150
i18n/hy.po
Normal file
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/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
|
||||
#: 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
157
i18n/id.po
Normal file
157
i18n/id.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Menjauh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Saluran"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus Komunikasi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. 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 "Status IM"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir Diperbarui pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Pesan"
|
||||
|
||||
#. 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 "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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
150
i18n/is.po
Normal file
150
i18n/is.po
Normal file
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/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
|
||||
#: 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
157
i18n/it.po
Normal file
157
i18n/it.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Assente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canale"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus di comunicazione"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. 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 "Stato IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Ultimo poll"
|
||||
|
||||
#. 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"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Messaggio"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Fuori 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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Ricarica"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utenti"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
156
i18n/ja.po
Normal file
156
i18n/ja.po
Normal file
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "IMステータス"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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メッセージ処理"
|
149
i18n/ka.po
Normal file
149
i18n/ka.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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"
|
||||
"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 ""
|
||||
|
||||
#. 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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/kab.po
Normal file
149
i18n/kab.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"Language: kab\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
|
||||
#: 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 "Yerna-t"
|
||||
|
||||
#. 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 "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_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 "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: bus
|
||||
#: 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
|
||||
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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
150
i18n/km.po
Normal file
150
i18n/km.po
Normal file
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
# Chan Nath <channath@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \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"
|
||||
"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 "ទំនាក់ទំនង"
|
||||
|
||||
#. 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
156
i18n/ko.po
Normal file
156
i18n/ko.po
Normal file
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 "웹소켓 메시지 처리"
|
146
i18n/lb.po
Normal file
146
i18n/lb.po
Normal file
|
@ -0,0 +1,146 @@
|
|||
# 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: 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"
|
||||
"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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
146
i18n/lo.po
Normal file
146
i18n/lo.po
Normal file
|
@ -0,0 +1,146 @@
|
|||
# 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: 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"
|
||||
"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 ""
|
||||
|
||||
#. 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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
161
i18n/lt.po
Normal file
161
i18n/lt.po
Normal file
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2023
|
||||
# Arunas V. <arunas@devoro.com>, 2023
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2023
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Monika Raciunaite <monika.raciunaite@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Išėjęs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanalas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikacijos magistralė"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontaktas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. 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 būsena"
|
||||
|
||||
#. 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"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Žinutė"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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 "Nuotoliniu Būdu"
|
||||
|
||||
#. 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 "Vartotojas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Vartotojo aktyvumas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Vartotojai"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
159
i18n/lv.po
Normal file
159
i18n/lv.po
Normal file
|
@ -0,0 +1,159 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Projām"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanāls"
|
||||
|
||||
#. 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 "Kontaktpersona"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Attēlotais nosaukums"
|
||||
|
||||
#. 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 "Pēdējoreiz atjaunināja"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunināts"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Ziņojums"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeļi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Bezsaistē"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Tiešsaistē"
|
||||
|
||||
#. 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 "Atsvaidzināt"
|
||||
|
||||
#. 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 "Lietotājs"
|
||||
|
||||
#. 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 "Lietotāji"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/mk.po
Normal file
149
i18n/mk.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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 "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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
148
i18n/ml_IN.po
Normal file
148
i18n/ml_IN.po
Normal file
|
@ -0,0 +1,148 @@
|
|||
# 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: 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: ml_IN\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
|
||||
#: 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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
152
i18n/mn.po
Normal file
152
i18n/mn.po
Normal file
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
151
i18n/nb.po
Normal file
151
i18n/nb.po
Normal file
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \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: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Borte"
|
||||
|
||||
#. 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_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. 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 "Visningsnavn"
|
||||
|
||||
#. 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 "Chattestatus"
|
||||
|
||||
#. 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"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Melding"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/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 "Bruker"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Bruker tilstede"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Brukere"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
146
i18n/ne.po
Normal file
146
i18n/ne.po
Normal file
|
@ -0,0 +1,146 @@
|
|||
# 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: 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"
|
||||
"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_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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
157
i18n/nl.po
Normal file
157
i18n/nl.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Afwezig"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanaal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Communicatiebus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. 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_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"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Bericht"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Vernieuwen"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Gebruikers"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
157
i18n/pl.po
Normal file
157
i18n/pl.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Zaraz wracam"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanał"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Magistrala komunikacyjna"
|
||||
|
||||
#. 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 "Utworzył(a)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. 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 "Status komunikatora"
|
||||
|
||||
#. 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"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Wiadomość"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Odśwież"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Użytkownicy"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 jest domyślne (admin)! Jeśli ten system jest narażony na "
|
||||
"niezaufanych użytkowników, należy go natychmiast zmienić ze względów "
|
||||
"bezpieczeństwa. Będę Cię o to nękał!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "obsługa komunikatów websocket"
|
154
i18n/pt.po
Normal file
154
i18n/pt.po
Normal file
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "Criado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. 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 IM"
|
||||
|
||||
#. 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"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensagem"
|
||||
|
||||
#. 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 "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/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 "Utilizador"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presença de utilizador"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilizadores"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
158
i18n/pt_BR.po
Normal file
158
i18n/pt_BR.po
Normal file
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Layna Nascimento, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Layna Nascimento, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "Barramento de comunicação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contato"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. 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 "Status do mensageiro"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última enquete"
|
||||
|
||||
#. 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"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensagem"
|
||||
|
||||
#. 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 "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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Atualizar"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuários"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
153
i18n/ro.po
Normal file
153
i18n/ro.po
Normal file
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# sharkutz <sharkutz4life@yahoo.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2022\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. 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 "Status IM"
|
||||
|
||||
#. 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"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizare"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilizatori"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
160
i18n/ru.po
Normal file
160
i18n/ru.po
Normal file
|
@ -0,0 +1,160 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
# Alena Vlasova, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "Статус IM"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 "обработка сообщений в сокетах"
|
154
i18n/sk.po
Normal file
154
i18n/sk.po
Normal file
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Neprítomný"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikačná zbernica"
|
||||
|
||||
#. 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 "Vytvoril"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. 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_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"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Správa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Obnoviť"
|
||||
|
||||
#. 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
|
||||
#: 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ť"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Užívatelia"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
157
i18n/sl.po
Normal file
157
i18n/sl.po
Normal file
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# laznikd <laznik@mentis.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsoten"
|
||||
|
||||
#. 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 "Stik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. 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_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"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Sporočilo"
|
||||
|
||||
#. 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 "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/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 "Uporabnik"
|
||||
|
||||
#. 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 "Uporabniki"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
149
i18n/sq.po
Normal file
149
i18n/sq.po
Normal file
|
@ -0,0 +1,149 @@
|
|||
# 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: 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: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"Language: sq\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
|
||||
#: 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 "Krijuar nga"
|
||||
|
||||
#. 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 "Emri i paraqitur"
|
||||
|
||||
#. 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 "Modifikuar per here te fundit nga"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifikuar per here te fundit me"
|
||||
|
||||
#. 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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
160
i18n/sr.po
Normal file
160
i18n/sr.po
Normal file
|
@ -0,0 +1,160 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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_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 "Poslednji put ažurirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednji put ažurirano"
|
||||
|
||||
#. 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 "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/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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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ša lozinka je podrazumevana (admin)! Ako je ovaj sistem izložen "
|
||||
"nepoverljivim korisnicima, važno je da je odmah promenite iz bezbednosnih "
|
||||
"razloga. Nastaviću da vas podsećam na to!"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket rukovanje porukama"
|
152
i18n/sr@latin.po
Normal file
152
i18n/sr@latin.po
Normal file
|
@ -0,0 +1,152 @@
|
|||
# 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
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+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"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
|
||||
#. 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_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. 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 "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_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
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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/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 "Prisustvo korisnika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
166
i18n/sv.po
Normal file
166
i18n/sv.po
Normal file
|
@ -0,0 +1,166 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Moa Nicklasson <Moa.nicklasson@hotmail.se>, 2023
|
||||
# Simon S, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2023
|
||||
# Simon Nilsson, 2023
|
||||
# Mikael Carlsson <mikael.carlsson@vertel.se>, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Borta"
|
||||
|
||||
#. 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 "Kommunikationsbuss"
|
||||
|
||||
#. 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 "Skapad av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. 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_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"
|
||||
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 den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Meddelande"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Frånvarande"
|
||||
|
||||
#. 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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Ladda om"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
148
i18n/ta.po
Normal file
148
i18n/ta.po
Normal file
|
@ -0,0 +1,148 @@
|
|||
# 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: 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"
|
||||
"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 "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
|
||||
#, 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 ""
|
158
i18n/th.po
Normal file
158
i18n/th.po
Normal file
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "สถานะ IM"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
166
i18n/tr.po
Normal file
166
i18n/tr.po
Normal file
|
@ -0,0 +1,166 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2023
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Murat Kaplan <muratk@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Dışarıda"
|
||||
|
||||
#. 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 "İletişim Veriyolu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. 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 "Görünüm 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"
|
||||
|
||||
#. 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_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"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#. 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
|
||||
#: 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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Kullanıcılar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
158
i18n/uk.po
Normal file
158
i18n/uk.po
Normal file
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "Bus комунікація"
|
||||
|
||||
#. 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_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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
158
i18n/vi.po
Normal file
158
i18n/vi.po
Normal file
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Vắng mặt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kênh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "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.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
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
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. 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 "Trạng thái IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Lần thăm dò cuối cùng"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Hiện diện lần cuối"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "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
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Thông báo"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Mô hình"
|
||||
|
||||
#. 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/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Làm mớ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 "Trang này có vẻ đã quá cũ."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Sự hiện diện của 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"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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"
|
154
i18n/zh_CN.po
Normal file
154
i18n/zh_CN.po
Normal file
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "IM的状态"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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消息处理"
|
154
i18n/zh_TW.po
Normal file
154
i18n/zh_TW.po
Normal file
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "IM的狀態"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/bus/controllers/home.py:0
|
||||
#, python-format
|
||||
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 訊息處理"
|
7
models/__init__.py
Normal file
7
models/__init__.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import bus
|
||||
from . import bus_presence
|
||||
from . import ir_model
|
||||
from . import ir_websocket
|
||||
from . import res_users
|
||||
from . import res_partner
|
BIN
models/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
models/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/bus.cpython-311.pyc
Normal file
BIN
models/__pycache__/bus.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/bus_presence.cpython-311.pyc
Normal file
BIN
models/__pycache__/bus_presence.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/ir_model.cpython-311.pyc
Normal file
BIN
models/__pycache__/ir_model.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/ir_websocket.cpython-311.pyc
Normal file
BIN
models/__pycache__/ir_websocket.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/res_partner.cpython-311.pyc
Normal file
BIN
models/__pycache__/res_partner.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/res_users.cpython-311.pyc
Normal file
BIN
models/__pycache__/res_users.cpython-311.pyc
Normal file
Binary file not shown.
238
models/bus.py
Normal file
238
models/bus.py
Normal file
|
@ -0,0 +1,238 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import contextlib
|
||||
import datetime
|
||||
import json
|
||||
import logging
|
||||
import math
|
||||
import os
|
||||
import random
|
||||
import selectors
|
||||
import threading
|
||||
import time
|
||||
from psycopg2 import InterfaceError, sql
|
||||
|
||||
import odoo
|
||||
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
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
# longpolling timeout connection
|
||||
TIMEOUT = 50
|
||||
|
||||
# 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):
|
||||
try:
|
||||
length = int(os.environ.get('ODOO_NOTIFY_PAYLOAD_MAX_LENGTH', default))
|
||||
except ValueError:
|
||||
_logger.warning("ODOO_NOTIFY_PAYLOAD_MAX_LENGTH has to be an integer, "
|
||||
"defaulting to %d bytes", default)
|
||||
length = default
|
||||
return length
|
||||
|
||||
|
||||
# max length in bytes for the NOTIFY query payload
|
||||
NOTIFY_PAYLOAD_MAX_LENGTH = get_notify_payload_max_length()
|
||||
|
||||
|
||||
#----------------------------------------------------------
|
||||
# Bus
|
||||
#----------------------------------------------------------
|
||||
def json_dump(v):
|
||||
return json.dumps(v, separators=(',', ':'), default=date_utils.json_default)
|
||||
|
||||
def hashable(key):
|
||||
if isinstance(key, list):
|
||||
key = tuple(key)
|
||||
return 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
|
||||
|
||||
|
||||
def get_notify_payloads(channels):
|
||||
"""
|
||||
Generates the json payloads for the imbus NOTIFY.
|
||||
Splits recursively payloads that are too large.
|
||||
|
||||
:param list channels:
|
||||
:return: list of payloads of json dumps
|
||||
:rtype: list[str]
|
||||
"""
|
||||
if not channels:
|
||||
return []
|
||||
payload = json_dump(channels)
|
||||
if len(channels) == 1 or len(payload.encode()) < NOTIFY_PAYLOAD_MAX_LENGTH:
|
||||
return [payload]
|
||||
else:
|
||||
pivot = math.ceil(len(channels) / 2)
|
||||
return (get_notify_payloads(channels[:pivot]) +
|
||||
get_notify_payloads(channels[pivot:]))
|
||||
|
||||
|
||||
class ImBus(models.Model):
|
||||
|
||||
_name = 'bus.bus'
|
||||
_description = 'Communication Bus'
|
||||
|
||||
channel = fields.Char('Channel')
|
||||
message = fields.Char('Message')
|
||||
|
||||
@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))]
|
||||
return self.sudo().search(domain).unlink()
|
||||
|
||||
@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:
|
||||
# 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:
|
||||
query = sql.SQL("SELECT {}('imbus', %s)").format(sql.Identifier(ODOO_NOTIFY_FUNCTION))
|
||||
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))
|
||||
for payload in payloads:
|
||||
cr.execute(query, (payload,))
|
||||
|
||||
@api.model
|
||||
def _sendone(self, channel, notification_type, message):
|
||||
self._sendmany([[channel, notification_type, message]])
|
||||
|
||||
@api.model
|
||||
def _poll(self, channels, last=0):
|
||||
# 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))]
|
||||
else: # else returns the unread notifications
|
||||
domain = [('id', '>', last)]
|
||||
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)
|
||||
# list of notification to return
|
||||
result = []
|
||||
for notif in notifications:
|
||||
result.append({
|
||||
'id': notif['id'],
|
||||
'message': json.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):
|
||||
self.last_notification_id = last
|
||||
self.channels = channels
|
||||
|
||||
|
||||
class ImDispatch(threading.Thread):
|
||||
def __init__(self):
|
||||
super().__init__(daemon=True, name=f'{__name__}.Bus')
|
||||
self._channels_to_ws = {}
|
||||
|
||||
def subscribe(self, channels, last, db, websocket):
|
||||
"""
|
||||
Subcribe to bus notifications. Every notification related to the
|
||||
given channels will be sent through the websocket. If a subscription
|
||||
is already present, overwrite it.
|
||||
"""
|
||||
channels = {hashable(channel_with_db(db, c)) for c in channels}
|
||||
for channel in channels:
|
||||
self._channels_to_ws.setdefault(channel, set()).add(websocket)
|
||||
outdated_channels = websocket._channels - channels
|
||||
self._clear_outdated_channels(websocket, outdated_channels)
|
||||
websocket.subscribe(channels, last)
|
||||
with contextlib.suppress(RuntimeError):
|
||||
if not self.is_alive():
|
||||
self.start()
|
||||
|
||||
def unsubscribe(self, websocket):
|
||||
self._clear_outdated_channels(websocket, websocket._channels)
|
||||
|
||||
def _clear_outdated_channels(self, websocket, outdated_channels):
|
||||
""" Remove channels from channel to websocket map. """
|
||||
for channel in outdated_channels:
|
||||
self._channels_to_ws[channel].remove(websocket)
|
||||
if not self._channels_to_ws[channel]:
|
||||
self._channels_to_ws.pop(channel)
|
||||
|
||||
def loop(self):
|
||||
""" Dispatch postgres notifications to the relevant websockets """
|
||||
_logger.info("Bus.loop listen imbus on db postgres")
|
||||
with odoo.sql_db.db_connect('postgres').cursor() as cr, \
|
||||
selectors.DefaultSelector() as sel:
|
||||
cr.execute("listen imbus")
|
||||
cr.commit()
|
||||
conn = cr._cnx
|
||||
sel.register(conn, selectors.EVENT_READ)
|
||||
while not stop_event.is_set():
|
||||
if sel.select(TIMEOUT):
|
||||
conn.poll()
|
||||
channels = []
|
||||
while conn.notifies:
|
||||
channels.extend(json.loads(conn.notifies.pop().payload))
|
||||
# relay notifications to websockets that have
|
||||
# subscribed to the corresponding channels.
|
||||
websockets = set()
|
||||
for channel in channels:
|
||||
websockets.update(self._channels_to_ws.get(hashable(channel), []))
|
||||
for websocket in websockets:
|
||||
websocket.trigger_notification_dispatching()
|
||||
|
||||
def run(self):
|
||||
while not stop_event.is_set():
|
||||
try:
|
||||
self.loop()
|
||||
except Exception as exc:
|
||||
if isinstance(exc, InterfaceError) and stop_event.is_set():
|
||||
continue
|
||||
_logger.exception("Bus.loop error, sleep and retry")
|
||||
time.sleep(TIMEOUT)
|
||||
|
||||
# Partially undo a2ed3d3d5bdb6025a1ba14ad557a115a86413e65
|
||||
# IMDispatch has a lazy start, so we could initialize it anyway
|
||||
# And this avoids the Bus unavailable error messages
|
||||
dispatch = ImDispatch()
|
||||
stop_event = threading.Event()
|
||||
CommonServer.on_stop(stop_event.set)
|
76
models/bus_presence.py
Normal file
76
models/bus_presence.py
Normal file
|
@ -0,0 +1,76 @@
|
|||
# -*- 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_presence' 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_presence(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_presence(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_presence(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)
|
||||
|
||||
@api.autovacuum
|
||||
def _gc_bus_presence(self):
|
||||
self.search([('user_id.active', '=', False)]).unlink()
|
35
models/ir_model.py
Normal file
35
models/ir_model.py
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class IrModel(models.Model):
|
||||
_inherit = 'ir.model'
|
||||
|
||||
def _get_model_definitions(self, model_names_to_fetch):
|
||||
fields_by_model_names = {}
|
||||
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', 'definition_record', 'definition_record_field',
|
||||
},
|
||||
).items()
|
||||
if not field_data.get('relation') or field_data['relation'] in model_names_to_fetch
|
||||
}
|
||||
for fname, field_data in fields_data_by_fname.items():
|
||||
if fname in model._fields:
|
||||
inverse_fields = [
|
||||
field for field in model.pool.field_inverses[model._fields[fname]]
|
||||
if field.model_name in model_names_to_fetch
|
||||
]
|
||||
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
|
63
models/ir_websocket.py
Normal file
63
models/ir_websocket.py
Normal file
|
@ -0,0 +1,63 @@
|
|||
from odoo import models
|
||||
from odoo.http import request, SessionExpiredException
|
||||
from odoo.service import security
|
||||
from ..models.bus import dispatch
|
||||
from ..websocket import wsrequest
|
||||
|
||||
|
||||
class IrWebsocket(models.AbstractModel):
|
||||
_name = 'ir.websocket'
|
||||
_description = 'websocket message handling'
|
||||
|
||||
def _get_im_status(self, im_status_ids_by_model):
|
||||
im_status = {}
|
||||
if 'res.partner' in im_status_ids_by_model:
|
||||
im_status['Persona'] = [{**p, 'type': "partner"} for p in self.env['res.partner'].with_context(active_test=False).search_read(
|
||||
[('id', 'in', im_status_ids_by_model['res.partner'])],
|
||||
['im_status']
|
||||
)]
|
||||
return im_status
|
||||
|
||||
def _build_bus_channel_list(self, channels):
|
||||
"""
|
||||
Return the list of channels to subscribe to. Override this
|
||||
method to add channels in addition to the ones the client
|
||||
sent.
|
||||
|
||||
:param channels: The channel list sent by the client.
|
||||
"""
|
||||
req = request or wsrequest
|
||||
channels.append('broadcast')
|
||||
if req.session.uid:
|
||||
channels.append(self.env.user.partner_id)
|
||||
return channels
|
||||
|
||||
def _subscribe(self, data):
|
||||
if not all(isinstance(c, str) for c in data['channels']):
|
||||
raise ValueError("bus.Bus only string channels are allowed.")
|
||||
last_known_notification_id = self.env['bus.bus'].sudo().search([], limit=1, order='id desc').id or 0
|
||||
if data['last'] > last_known_notification_id:
|
||||
data['last'] = 0
|
||||
channels = set(self._build_bus_channel_list(data['channels']))
|
||||
dispatch.subscribe(channels, data['last'], self.env.registry.db_name, wsrequest.ws)
|
||||
|
||||
def _update_bus_presence(self, inactivity_period, im_status_ids_by_model):
|
||||
if self.env.user and not self.env.user._is_public():
|
||||
self.env['bus.presence'].update_presence(
|
||||
inactivity_period,
|
||||
identity_field='user_id',
|
||||
identity_value=self.env.uid
|
||||
)
|
||||
im_status_notification = self._get_im_status(im_status_ids_by_model)
|
||||
if im_status_notification:
|
||||
self.env['bus.bus']._sendone(self.env.user.partner_id, 'mail.record/insert', im_status_notification)
|
||||
|
||||
@classmethod
|
||||
def _authenticate(cls):
|
||||
if wsrequest.session.uid is not None:
|
||||
if not security.check_session(wsrequest.session, wsrequest.env):
|
||||
wsrequest.session.logout(keep_db=True)
|
||||
raise SessionExpiredException()
|
||||
else:
|
||||
public_user = wsrequest.env.ref('base.public_user')
|
||||
wsrequest.update_env(user=public_user.id)
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user