text
stringlengths
1
2.83M
id
stringlengths
16
152
metadata
dict
__index_level_0__
int64
0
949
# © 2010-2013 OpenERP s.a. (<http://openerp.com>). # © 2014 initOS GmbH & Co. KG (<http://www.initos.com>). # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html { "name": "Overview Dashboard (Tiles)", "summary": "Add Overview Dashboards with Tiles", "version": "16.0.1.0.2", "depends": [ "web", "spreadsheet_dashboard", ], "author": "initOS GmbH & Co. KG, " "GRAP, " "Iván Todorovich <ivan.todorovich@gmail.com>, " "Odoo Community Association (OCA)", "maintainers": ["legalsylvain"], "website": "https://github.com/OCA/web", "category": "web", "license": "AGPL-3", "data": [ "security/ir.model.access.csv", "security/ir_rule.xml", "views/menu.xml", "views/tile_tile.xml", "views/tile_category.xml", ], "assets": { "web.assets_common": [ "web_dashboard_tile/static/src/css/web_dashboard_tile.css", ], }, "demo": [ "demo/tile_category.xml", "demo/tile_tile.xml", ], }
OCA/web/web_dashboard_tile/__manifest__.py/0
{ "file_path": "OCA/web/web_dashboard_tile/__manifest__.py", "repo_id": "OCA", "token_count": 514 }
50
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_dialog_size # msgid "" msgstr "" "Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2021-10-13 20:46+0000\n" "Last-Translator: Corneliuus <cornelius@clk-it.de>\n" "Language-Team: none\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3.2\n" #. module: web_dialog_size #: model:ir.model,name:web_dialog_size.model_ir_config_parameter msgid "System Parameter" msgstr "Systemparameter" #~ msgid "Display Name" #~ msgstr "Anzeigename" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Last Modified on" #~ msgstr "Zuletzt bearbeitet am"
OCA/web/web_dialog_size/i18n/de.po/0
{ "file_path": "OCA/web/web_dialog_size/i18n/de.po", "repo_id": "OCA", "token_count": 342 }
51
/** @odoo-module **/ import {ActionDialog} from "@web/webclient/actions/action_dialog"; import {patch} from "@web/core/utils/patch"; import rpc from "web.rpc"; import {Component, onMounted} from "@odoo/owl"; import {Dialog} from "@web/core/dialog/dialog"; import {SelectCreateDialog} from "@web/views/view_dialogs/select_create_dialog"; export class ExpandButton extends Component { setup() { this.last_size = this.props.getsize(); this.config = rpc.query({ model: "ir.config_parameter", method: "get_web_dialog_size_config", }); onMounted(() => { var self = this; this.config.then(function (r) { if (r.default_maximize && stop) { self.dialog_button_extend(); } }); }); } dialog_button_extend() { this.props.setsize("dialog_full_screen"); this.render(); } dialog_button_restore() { this.props.setsize(this.last_size); this.render(); } } ExpandButton.template = "web_dialog_size.ExpandButton"; patch(Dialog.prototype, "web_dialog_size.Dialog", { setup() { this._super(...arguments); this.setSize = this.setSize.bind(this); this.getSize = this.getSize.bind(this); }, setSize(size) { this.props.size = size; this.render(); }, getSize() { return this.props.size; }, }); patch(SelectCreateDialog.prototype, "web_dialog_size.SelectCreateDialog", { setup() { this._super(...arguments); this.setSize = this.setSize.bind(this); this.getSize = this.getSize.bind(this); }, setSize(size) { this.props.size = size; this.render(); }, getSize() { return this.props.size; }, }); Object.assign(ActionDialog.components, {ExpandButton}); SelectCreateDialog.components = Object.assign(SelectCreateDialog.components || {}, { ExpandButton, }); Dialog.components = Object.assign(Dialog.components || {}, {ExpandButton}); // Patch annoying validation method Dialog.props.size.validate = (s) => ["sm", "md", "lg", "xl", "dialog_full_screen"].includes(s);
OCA/web/web_dialog_size/static/src/js/web_dialog_size.esm.js/0
{ "file_path": "OCA/web/web_dialog_size/static/src/js/web_dialog_size.esm.js", "repo_id": "OCA", "token_count": 969 }
52
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_disable_export_group # msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2019-09-01 12:52+0000\n" "Last-Translator: 黎伟杰 <674416404@qq.com>\n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.8\n" #. module: web_disable_export_group #: model:ir.model,name:web_disable_export_group.model_base msgid "Base" msgstr "" #. module: web_disable_export_group #: model:res.groups,name:web_disable_export_group.group_export_xlsx_data msgid "Direct Export (xlsx)" msgstr "" #. module: web_disable_export_group #: model:ir.model,name:web_disable_export_group.model_ir_http msgid "HTTP Routing" msgstr "HTTP路由" #. module: web_disable_export_group #. openerp-web #: code:addons/web_disable_export_group/static/src/xml/export_xls_views.xml:0 #, python-format msgid "widget.is_action_enabled('export_xlsx') and widget.isExportXlsEnable" msgstr "" #, python-format #~ msgid "Export" #~ msgstr "导出" #~ msgid "Export Data" #~ msgstr "导出数据"
OCA/web/web_disable_export_group/i18n/zh_CN.po/0
{ "file_path": "OCA/web/web_disable_export_group/i18n/zh_CN.po", "repo_id": "OCA", "token_count": 523 }
53
from . import test_tour
OCA/web/web_disable_export_group/tests/__init__.py/0
{ "file_path": "OCA/web/web_disable_export_group/tests/__init__.py", "repo_id": "OCA", "token_count": 8 }
54
====================== Web Environment Ribbon ====================== .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:f15d70ea4272155560e696d4677c06aac24b47b303f75ea305d9c4e5a3991476 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github :target: https://github.com/OCA/web/tree/16.0/web_environment_ribbon :alt: OCA/web .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_environment_ribbon :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| Mark a Test Environment with a red ribbon on the top left corner in every page **Table of contents** .. contents:: :local: Configuration ============= * You can change the ribbon's name ("TEST") by editing the default system parameter "ribbon.name" (in the menu Settings > Parameters > System Parameters) To hide the ribbon, set this parameter to "False" or delete it. * You can customize the ribbon color and background color through system parameters: "ribbon.color", "ribbon.background.color". Fill with valid CSS colors or just set to "False" to use default values. * You can add the database name in the ribbon by adding "{db_name}" in the system parameter "ribbon.name". Usage ===== To use this module, you need only to install it. After installation, a red ribbon will be visible on top left corner of every Odoo backend page Bug Tracker =========== Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed `feedback <https://github.com/OCA/web/issues/new?body=module:%20web_environment_ribbon%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. Do not contact contributors directly about support or help with technical issues. Credits ======= Authors ~~~~~~~ * Francesco OpenCode Apruzzese * Tecnativa Contributors ~~~~~~~~~~~~ * Francesco Apruzzese <cescoap@gmail.com> * Javi Melendez <javimelex@gmail.com> * Antonio Espinosa <antonio.espinosa@tecnativa.com> * Thomas Binsfeld <thomas.binsfeld@acsone.eu> * Xavier Jiménez <xavier.jimenez@qubiq.es> * Dennis Sluijk <d.sluijk@onestein.nl> * Eric Lembregts <eric@lembregts.eu> Maintainers ~~~~~~~~~~~ This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_environment_ribbon>`_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
OCA/web/web_environment_ribbon/README.rst/0
{ "file_path": "OCA/web/web_environment_ribbon/README.rst", "repo_id": "OCA", "token_count": 1294 }
55
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_environment_ribbon # msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: zh\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: web_environment_ribbon #: model:ir.model,name:web_environment_ribbon.model_web_environment_ribbon_backend msgid "Web Environment Ribbon Backend" msgstr ""
OCA/web/web_environment_ribbon/i18n/zh.po/0
{ "file_path": "OCA/web/web_environment_ribbon/i18n/zh.po", "repo_id": "OCA", "token_count": 226 }
56
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_group_expand # msgid "" msgstr "" "Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2021-10-13 20:46+0000\n" "Last-Translator: Corneliuus <cornelius@clk-it.de>\n" "Language-Team: none\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3.2\n" #. module: web_group_expand #. odoo-javascript #: code:addons/web_group_expand/static/src/xml/list_controller.xml:0 #, python-format msgid "Compress" msgstr "" #. module: web_group_expand #. odoo-javascript #: code:addons/web_group_expand/static/src/xml/list_controller.xml:0 #, python-format msgid "Expand" msgstr "" #, python-format #~ msgid "Collapse groups" #~ msgstr "Gruppen einklappen" #, python-format #~ msgid "Expand groups" #~ msgstr "Gruppen ausklappen"
OCA/web/web_group_expand/i18n/de.po/0
{ "file_path": "OCA/web/web_group_expand/i18n/de.po", "repo_id": "OCA", "token_count": 416 }
57
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_help # msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2023-04-03 13:22+0000\n" "Last-Translator: Bole <bole@dajmi5.com>\n" "Language-Team: none\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.14.1\n" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 #, python-format msgid "Cancel" msgstr "Odustani" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/change_password_trip.esm.js:0 #, python-format msgid "Change the password here, make sure it's secure." msgstr "Ovdje promijenite lozinku, pobrinite se da je sigurna." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/change_password_trip.esm.js:0 #, python-format msgid "Click here to confirm it." msgstr "Klikne ovdje za potvrdu." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/trip.esm.js:0 #, python-format msgid "Close" msgstr "Zatvori" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/trip.esm.js:0 #, python-format msgid "Finish" msgstr "Završi" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/trip.esm.js:0 #, python-format msgid "Got it" msgstr "Shvatio" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 #, python-format msgid "Next" msgstr "Sljedeće" #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 #, python-format msgid "To create a new user click here." msgstr "Za kreiranje novog korisnika kliknite ovdje." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 #, python-format msgid "Use the searchbar to find specific users." msgstr "Koristite traku pretrage za traženje određenog korisnika." #. module: web_help #. odoo-javascript #: code:addons/web_help/static/src/user_trip.esm.js:0 #, python-format msgid "You can switch to different views here." msgstr "Ovdje se možete prebaciti u različite poglede."
OCA/web/web_help/i18n/hr.po/0
{ "file_path": "OCA/web/web_help/i18n/hr.po", "repo_id": "OCA", "token_count": 989 }
58
.web_help_overlay { top: 0px; left: 0px; width: 100%; height: 100%; position: fixed; z-index: 1151; .web_help_highlight { position: absolute; outline: 1000vw solid rgba(0, 0, 0, 0.7); } .popover { background-color: transparent; border: none; .popover-body { color: #fff; font-size: 1.2rem; } } }
OCA/web/web_help/static/src/components/highlighter/highlighter.scss/0
{ "file_path": "OCA/web/web_help/static/src/components/highlighter/highlighter.scss", "repo_id": "OCA", "token_count": 220 }
59
================= Web Actions Multi ================= .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:6e9f7ee51281d6578d60492d6f8973b4e90a3802e50aa5c3f1e6e0fe017c9327 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta .. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github :target: https://github.com/OCA/web/tree/16.0/web_ir_actions_act_multi :alt: OCA/web .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_ir_actions_act_multi :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| This module provides a way to trigger more than one action on ActionManager **Table of contents** .. contents:: :local: Usage ===== To use this functionality you need to return following action with list of actions to execute: .. code-block:: python def foo(self): self.ensure_one() return { 'type': 'ir.actions.act_multi', 'actions': [ {'type': 'ir.actions.act_window_close'}, {'type': 'ir.actions.client', 'tag': 'reload'}, ] } Bug Tracker =========== Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed `feedback <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_multi%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. Do not contact contributors directly about support or help with technical issues. Credits ======= Authors ~~~~~~~ * Modoolar * CorporateHub Contributors ~~~~~~~~~~~~ * Petar Najman <petar.najman@modoolar.com> * Mladen Meseldzija <mladen.meseldzija@modoolar.com> * `CorporateHub <https://corporatehub.eu/>`__ * Alexey Pelykh <alexey.pelykh@corphub.eu> * Manuel Calero - Tecnativa * Matias Peralta, Juan Rivero - Adhoc Maintainers ~~~~~~~~~~~ This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_ir_actions_act_multi>`_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
OCA/web/web_ir_actions_act_multi/README.rst/0
{ "file_path": "OCA/web/web_ir_actions_act_multi/README.rst", "repo_id": "OCA", "token_count": 1302 }
60
========================= Client side message boxes ========================= .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:c6ab6322d92b7ec73af6324032ed00e8a974d28ad30f78d025febc67e5976bf7 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github :target: https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message :alt: OCA/web .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_ir_actions_act_window_message :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| This module allows to show a message popup on the client side as result of a button. **Table of contents** .. contents:: :local: Usage ===== Depend on this module and return .. code:: python { 'type': 'ir.actions.act_window.message', 'title': _('My title'), 'message': _('My message'), # optional title of the close button, if not set, will be _('Close') # if set False, no close button will be shown # you can create your own close button with an action of type # ir.actions.act_window_close 'close_button_title': 'Make this window go away', # Use HTML instead of text 'is_html_message': True, # this is an optional list of buttons to show 'buttons': [ # a button can be any action (also ir.actions.report.xml et al) { 'type': 'ir.actions.act_window', 'name': 'All customers', 'res_model': 'res.partner', 'view_mode': 'form', 'views': [[False, 'list'], [False, 'form']], 'domain': [('customer', '=', True)], }, # or if type == method, you need to pass a model, a method name and # parameters { 'type': 'method', 'name': _('Yes, do it'), 'model': self._name, 'method': 'myfunction', # list of arguments to pass positionally 'args': [self.ids], # dictionary of keyword arguments 'kwargs': {'force': True}, # button style 'classes': 'btn-primary', } ] } You are responsible for translating the messages. Known issues / Roadmap ====================== * add `message_type` to differenciate between warnings, errors, etc. * have one `message_type` to show a nonmodal warning on top right Bug Tracker =========== Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed `feedback <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. Do not contact contributors directly about support or help with technical issues. Credits ======= Authors ~~~~~~~ * Therp BV * ACSONE SA/NV Contributors ~~~~~~~~~~~~ * Holger Brunn <hbrunn@therp.nl> * Zakaria Makrelouf (ACSONE SA/NV) <z.makrelouf@gmail.com> * Benjamin Willig (ACSONE SA/NV) <benjamin.willig@acsone.eu> * Ioan Galan (Studio73) <ioan@studio73.es> * Abraham Anes (Studio73) <abraham@studio73.es> * Miguel Gandia (Studio73) <miguel@studio73.es> * `DynApps NV <https://www.dynapps.be>`_: * Koen Loodts * Raf Ven Maintainers ~~~~~~~~~~~ This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message>`_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
OCA/web/web_ir_actions_act_window_message/README.rst/0
{ "file_path": "OCA/web/web_ir_actions_act_window_message/README.rst", "repo_id": "OCA", "token_count": 2011 }
61
# © 2013-2015 Therp BV (<http://therp.nl>) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) { "name": "Window actions for client side paging", "summary": ( "Allows a developer to trigger a pager to show the previous " "or next next record in the form view" ), "author": "Hunki Enterprises BV, Therp BV,Odoo Community Association (OCA)", "version": "16.0.1.0.0", "category": "Technical", "depends": ["web"], "assets": { "web.assets_backend": [ "web_ir_actions_act_window_page/static/src/web_ir_actions_act_window_page.esm.js", ] }, "demo": ["demo/demo_action.xml"], "installable": True, "license": "AGPL-3", "website": "https://github.com/OCA/web", }
OCA/web/web_ir_actions_act_window_page/__manifest__.py/0
{ "file_path": "OCA/web/web_ir_actions_act_window_page/__manifest__.py", "repo_id": "OCA", "token_count": 333 }
62
# © 2017 Onestein (<http://www.onestein.eu>) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "List Range Selection", "summary": """ Enables selecting a range of records using the shift key """, "version": "16.0.1.0.0", "category": "Web", "author": "Onestein, Odoo Community Association (OCA)", "website": "https://github.com/OCA/web", "license": "AGPL-3", "depends": ["web"], "installable": True, "application": False, "assets": { "web.assets_backend": [ "web_listview_range_select/static/src/js/web_listview_range_select.esm.js", "web_listview_range_select/static/src/xml/web_listview_range_select.xml", ], }, }
OCA/web/web_listview_range_select/__manifest__.py/0
{ "file_path": "OCA/web/web_listview_range_select/__manifest__.py", "repo_id": "OCA", "token_count": 326 }
63
# Copyright 2015 0k.io # Copyright 2016 ACSONE SA/NV # Copyright 2017 Tecnativa # Copyright 2020 initOS GmbH. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "web_m2x_options", "version": "16.0.1.1.2", "category": "Web", "author": "initOS GmbH," "ACSONE SA/NV, " "0k.io, " "Tecnativa, " "Odoo Community Association (OCA)", "website": "https://github.com/OCA/web", "license": "AGPL-3", "depends": ["web"], "assets": {"web.assets_backend": ["web_m2x_options/static/src/components/*"]}, "installable": True, }
OCA/web/web_m2x_options/__manifest__.py/0
{ "file_path": "OCA/web/web_m2x_options/__manifest__.py", "repo_id": "OCA", "token_count": 259 }
64
from . import ir_config_parameter from . import ir_http
OCA/web/web_m2x_options/models/__init__.py/0
{ "file_path": "OCA/web/web_m2x_options/models/__init__.py", "repo_id": "OCA", "token_count": 17 }
65
from . import mail_channel
OCA/web/web_notify_channel_message/models/__init__.py/0
{ "file_path": "OCA/web/web_notify_channel_message/models/__init__.py", "repo_id": "OCA", "token_count": 7 }
66
Adds support for computed measures on the pivot view.
OCA/web/web_pivot_computed_measure/readme/DESCRIPTION.rst/0
{ "file_path": "OCA/web/web_pivot_computed_measure/readme/DESCRIPTION.rst", "repo_id": "OCA", "token_count": 11 }
67
# Copyright 2022 Tecnativa - Carlos Roca # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) from odoo import fields, models class ResUsersFake(models.Model): _inherit = "res.users" user_year_born = fields.Integer() user_year_now = fields.Integer()
OCA/web/web_pivot_computed_measure/tests/res_users_fake.py/0
{ "file_path": "OCA/web/web_pivot_computed_measure/tests/res_users_fake.py", "repo_id": "OCA", "token_count": 101 }
68
* `TAKOBI <https://takobi.online>`_: * Lorenzo Battistini * `Tecnativa <https://tecnativa.com>`_: * Alexandre D. Díaz * João Marques * Sergio Teruel
OCA/web/web_pwa_oca/readme/CONTRIBUTORS.rst/0
{ "file_path": "OCA/web/web_pwa_oca/readme/CONTRIBUTORS.rst", "repo_id": "OCA", "token_count": 69 }
69
/* Copyright 2020 Tecnativa - Alexandre D. Díaz /* Copyright 2022 Tecnativa - Sergio Teruel * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ odoo.define("web_pwa_oca.pwa_launch", function (require) { "use strict"; var core = require("web.core"); var PWAManager = require("web_pwa_oca.PWAManager"); core.bus.on("web_client_ready", null, function () { this.pwa_manager = new PWAManager(this); const def = this.pwa_manager.start(); return Promise.all([def]); }); });
OCA/web/web_pwa_oca/static/src/js/webclient.js/0
{ "file_path": "OCA/web/web_pwa_oca/static/src/js/webclient.js", "repo_id": "OCA", "token_count": 209 }
70
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_refresher # msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: web_refresher #. odoo-javascript #: code:addons/web_refresher/static/src/xml/refresher.xml:0 #, python-format msgid "Pager" msgstr "" #. module: web_refresher #. odoo-javascript #: code:addons/web_refresher/static/src/xml/refresher.xml:0 #: code:addons/web_refresher/static/src/xml/refresher.xml:0 #, python-format msgid "Refresh" msgstr ""
OCA/web/web_refresher/i18n/web_refresher.pot/0
{ "file_path": "OCA/web/web_refresher/i18n/web_refresher.pot", "repo_id": "OCA", "token_count": 294 }
71
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_responsive # # Translators: # Pedro M. Baeza <pedro.baeza@gmail.com>, 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-01-10 10:49+0000\n" "PO-Revision-Date: 2023-09-20 17:50+0000\n" "Last-Translator: kikopeiro <francisco.peiro@factorlibre.com>\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.17\n" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/chatter_topbar/chatter_topbar.xml:0 #, python-format msgid "Activities" msgstr "Actividades" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/search_panel/search_panel.xml:0 #, python-format msgid "All" msgstr "Todos" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/chatter_topbar/chatter_topbar.xml:0 #, python-format msgid "Attachment counter loading..." msgstr "Carga del contador de archivos adjuntos..." #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/chatter_topbar/chatter_topbar.xml:0 #, python-format msgid "Attachments" msgstr "Archivos adjuntos" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/control_panel/control_panel.xml:0 #, python-format msgid "CLEAR" msgstr "LIMPIAR" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 #, python-format msgid "Discard" msgstr "Descartar" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/control_panel/control_panel.xml:0 #: code:addons/web_responsive/static/src/components/search_panel/search_panel.xml:0 #, python-format msgid "FILTER" msgstr "FILTRAR" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/apps_menu/apps_menu.xml:0 #, python-format msgid "Home Menu" msgstr "Menú de Inicio" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/chatter_topbar/chatter_topbar.xml:0 #, python-format msgid "Log note" msgstr "Nota de registro" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/attachment_viewer/attachment_viewer.xml:0 #, python-format msgid "Maximize" msgstr "Maximizar" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/attachment_viewer/attachment_viewer.xml:0 #, python-format msgid "Minimize" msgstr "Minimizar" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 #, python-format msgid "New" msgstr "Nuevo" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/control_panel/control_panel.xml:0 #: code:addons/web_responsive/static/src/components/search_panel/search_panel.xml:0 #, python-format msgid "SEE RESULT" msgstr "VER RESULTADO" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/legacy/xml/form_buttons.xml:0 #, python-format msgid "Save" msgstr "Guardar" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/apps_menu/apps_menu.xml:0 #, python-format msgid "Search menus..." msgstr "Buscar menús..." #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/control_panel/control_panel.xml:0 #, python-format msgid "Search..." msgstr "Búsqueda..." #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/chatter_topbar/chatter_topbar.xml:0 #, python-format msgid "Send message" msgstr "Enviar mensaje" #. module: web_responsive #. odoo-javascript #: code:addons/web_responsive/static/src/components/control_panel/control_panel.xml:0 #, python-format msgid "View switcher" msgstr "Vista del conmutador" #, python-format #~ msgid "Create" #~ msgstr "Crear" #~ msgid "Chatter Position" #~ msgstr "Posición del chatter" #, python-format #~ msgid "Edit" #~ msgstr "Editar" #~ msgid "Normal" #~ msgstr "Normal" #, python-format #~ msgid "Quick actions" #~ msgstr "Acciones rápidas" #~ msgid "Sided" #~ msgstr "Lateral" #~ msgid "Users" #~ msgstr "Usuarios" #~ msgid "#menu_id=#{app.menuID}&action_id=#{app.actionID}" #~ msgstr "#menu_id=#{app.menuID}&action_id=#{app.actionID}" #~ msgid "Close" #~ msgstr "Cerrar" #~ msgid "Shift" #~ msgstr "Turno" #~ msgid "" #~ "btn btn-secondary o_mail_discuss_button_multi_user_channel d-md-block d-" #~ "none" #~ msgstr "" #~ "btn btn-secondary o_mail_discuss_button_multi_user_channel d-md-block d-" #~ "none" #~ msgid "false" #~ msgstr "falso" #~ msgid "" #~ "modal o_modal_fullscreen o_document_viewer o_responsive_document_viewer" #~ msgstr "" #~ "modal o_modal_fullscreen o_document_viewer o_responsive_document_viewer"
OCA/web/web_responsive/i18n/es.po/0
{ "file_path": "OCA/web/web_responsive/i18n/es.po", "repo_id": "OCA", "token_count": 2016 }
72
The following keyboard shortcuts are implemented: * Navigate app search results - Arrow keys * Choose app result - ``Enter`` * ``Esc`` to close app drawer
OCA/web/web_responsive/readme/USAGE.rst/0
{ "file_path": "OCA/web/web_responsive/readme/USAGE.rst", "repo_id": "OCA", "token_count": 37 }
73
/* Copyright 2019 Tecnativa - Alexandre Díaz * Copyright 2021 ITerra - Sergey Shebanin * License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */ // Attachment Viewer .o_web_client .o_DialogManager_dialog { /* Show sided viewer on large screens */ @media (min-width: 1533px) { &:has(.o_AttachmentViewer) { position: static; } .o_AttachmentViewer_main { padding-bottom: 20px; } .o_AttachmentViewer { // On-top of navbar z-index: 10; position: absolute; right: 0; top: 0; bottom: 0; margin-left: auto; background-color: rgba(0, 0, 0, 0.7); width: $chatter_zone_width; &.o_AttachmentViewer_maximized { width: 100% !important; } /* Show/Hide control buttons (next, prev, etc..) */ &:hover .o_AttachmentViewer_buttonNavigation, &:hover .o_AttachmentViewer_toolbar { display: flex; } .o_AttachmentViewer_buttonNavigation, .o_AttachmentViewer_toolbar { display: none; } .o_AttachmentViewer_viewIframe { width: 95%; } } } @media (max-width: 1533px) { .o_AttachmentViewer_headerItemButtonMinimize, .o_AttachmentViewer_headerItemButtonMaximize { display: none !important; } } } /* Attachment Viewer Max/Min buttons only are useful in sided mode */ .o_FormRenderer_chatterContainer:not(.o-aside) { .o_AttachmentViewer_headerItemButtonMinimize, .o_AttachmentViewer_headerItemButtonMaximize { display: none !important; } } .o_apps_menu_opened .o_AttachmentViewer { display: none !important; }
OCA/web/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss/0
{ "file_path": "OCA/web/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss", "repo_id": "OCA", "token_count": 927 }
74
<?xml version="1.0" encoding="utf-8" ?> <!-- Copyright 2017 LasLabs Inc. Copyright 2018 Alexandre Díaz Copyright 2018 Tecnativa - Jairo Llopis Copyright 2021 ITerra - Sergey Shebanin Copyright 2023 Onestein - Anjeel Haria License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). --> <templates id="form_view" xml:space="preserve"> <!-- Template for buttons that display only the icon in xs --> <t t-name="web_responsive.icon_button_create" owl="1"> <i t-attf-class="fa fa-plus" title="New" /> <span class="d-none d-sm-inline"> New</span> </t> <t t-name="web_responsive.icon_button_save" owl="1"> <i t-attf-class="fa fa-check" title="Save" /> <span class="d-none d-sm-inline"> Save</span> </t> <t t-name="web_responsive.icon_button_discard" owl="1"> <i t-attf-class="fa fa-times" title="Discard" /> <span class="d-none d-sm-inline"> Discard</span> </t> <t t-name="web.ResponsiveFormView.Buttons" t-inherit="web.FormView.Buttons" owl="1" t-inherit-mode="extension" > <!-- Change "Discard" button hotkey to "D" --> <xpath expr="//button[contains(@class, 'o_form_button_cancel')]" position="attributes" > <attribute name="data-hotkey">d</attribute> </xpath> <xpath expr="//button[contains(@class, 'o_form_button_create')]" position="replace" > <button type="button" class="btn btn-secondary o_form_button_create" data-hotkey="c" t-on-click.stop="create" > <t t-call="web_responsive.icon_button_create" /> </button> </xpath> </t> <t t-name="web.ResponsiveFormView" t-inherit="web.FormView" owl="1" t-inherit-mode="extension" > <xpath expr="//button[contains(@class, 'o_form_button_create')]" position="replace" > <button type="button" class="btn btn-outline-primary o_form_button_create" data-hotkey="c" t-on-click.stop="create" t-att-disabled="state.isDisabled" > <t t-call="web_responsive.icon_button_create" /> </button> </xpath> </t> <t t-name="web.ResponsiveFormStatusIndicator" t-inherit="web.FormStatusIndicator" owl="1" > <!-- Change "Discard" button hotkey to "D" --> <xpath expr="//button[contains(@class, 'o_form_button_cancel')]" position="attributes" > <attribute name="data-hotkey">d</attribute> </xpath> </t> <t t-name="web.ResponsiveKanbanView.Buttons" t-inherit="web.KanbanView.Buttons" owl="1" t-inherit-mode="extension" > <!-- Add responsive icons to buttons --> <xpath expr="//button[contains(@class, 'o-kanban-button-new')]" position="replace" > <button type="button" class="btn btn-primary o-kanban-button-new" accesskey="c" t-on-click="() => this.createRecord(null)" data-bounce-button="" > <t t-call="web_responsive.icon_button_create" /> </button> </xpath> </t> <t t-name="web.ResponsiveListView.Buttons" t-inherit="web.ListView.Buttons" owl="1" t-inherit-mode="extension" > <!-- Add responsive icons to buttons --> <xpath expr="//button[contains(@class, 'o_list_button_add')]" position="replace" > <button type="button" class="btn btn-primary o_list_button_add" data-hotkey="c" t-on-click="onClickCreate" data-bounce-button="" > <t t-call="web_responsive.icon_button_create" /> </button> </xpath> <xpath expr="//button[contains(@class, 'o_list_button_save')]" position="replace" > <button type="button" class="btn btn-primary o_list_button_save" data-hotkey="s" t-on-click.stop="onClickSave" > <t t-call="web_responsive.icon_button_save" /> </button> </xpath> <xpath expr="//button[contains(@class, 'o_list_button_discard')]" position="replace" > <button type="button" class="btn btn-secondary o_list_button_discard" data-hotkey="d" t-on-click="onClickDiscard" t-on-mousedown="onMouseDownDiscard" > <t t-call="web_responsive.icon_button_discard" /> </button> </xpath> </t> </templates>
OCA/web/web_responsive/static/src/legacy/xml/form_buttons.xml/0
{ "file_path": "OCA/web/web_responsive/static/src/legacy/xml/form_buttons.xml", "repo_id": "OCA", "token_count": 2802 }
75
Change Save & Discard Button style. .. image:: ../static/description/save_button.png
OCA/web/web_save_discard_button/readme/DESCRIPTION.rst/0
{ "file_path": "OCA/web/web_save_discard_button/readme/DESCRIPTION.rst", "repo_id": "OCA", "token_count": 25 }
76
/** @odoo-module **/ /* Copyright 2023 Camptocamp - Telmo Santos * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */ import {SwitchCompanyMenu} from "@web/webclient/switch_company_menu/switch_company_menu"; import {browser} from "@web/core/browser/browser"; import {patch} from "@web/core/utils/patch"; patch(SwitchCompanyMenu.prototype, "SwitchAllCompanyMenu", { setup() { this._super(...arguments); this.allCompanyIds = Object.values(this.companyService.availableCompanies).map( (x) => x.id ); this.isAllCompaniesSelected = this.allCompanyIds.every((elem) => this.selectedCompanies.includes(elem) ); }, toggleSelectAllCompanies() { if (this.isAllCompaniesSelected) { // Deselect all this.state.companiesToToggle = this.allCompanyIds; this.toggleCompany(this.currentCompany.id); this.isAllCompaniesSelected = false; browser.clearTimeout(this.toggleTimer); this.toggleTimer = browser.setTimeout(() => { this.companyService.setCompanies( "toggle", ...this.state.companiesToToggle ); }, this.constructor.toggleDelay); } else { // Select all this.state.companiesToToggle = [this.allCompanyIds]; this.isAllCompaniesSelected = true; browser.clearTimeout(this.toggleTimer); this.toggleTimer = browser.setTimeout(() => { this.companyService.setCompanies( "loginto", ...this.state.companiesToToggle ); }, this.constructor.toggleDelay); } }, });
OCA/web/web_select_all_companies/static/src/js/switch_all_company_menu.esm.js/0
{ "file_path": "OCA/web/web_select_all_companies/static/src/js/switch_all_company_menu.esm.js", "repo_id": "OCA", "token_count": 808 }
77
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Web Sheet Full Width", "version": "16.0.1.0.0", "author": "Therp BV, Sudokeys, GRAP, Métal Sartigan, " "Odoo Community Association (OCA)", "website": "https://github.com/OCA/web", "license": "AGPL-3", "summary": "Use the whole available screen width when displaying sheets", "category": "Tools", "depends": ["web"], "assets": { "web.assets_common": [ "web_sheet_full_width/static/src/scss/web_sheet_full_width.scss", ], }, "installable": True, }
OCA/web/web_sheet_full_width/__manifest__.py/0
{ "file_path": "OCA/web/web_sheet_full_width/__manifest__.py", "repo_id": "OCA", "token_count": 264 }
78
This module extend the Odoo Community Edition ``web`` module to improve visibility of form view. **Rational:** In Odoo V16, the design is very pure. That's great, but it generates some problem for users : * buttons and fields are not identifiable. (we can not know exactly where there are until you hover over them with the cursor) * there is no indication for the required fields until trying to save (or exit the screen) In a way, this module restores the form display of version 15, but preserving the "save on the fly" new feature. **Without this module** .. figure:: ../static/description/product_template_form_without_module.png **With this module** .. figure:: ../static/description/product_template_form_with_module.png
OCA/web/web_theme_classic/readme/DESCRIPTION.rst/0
{ "file_path": "OCA/web/web_theme_classic/readme/DESCRIPTION.rst", "repo_id": "OCA", "token_count": 191 }
79
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_timeline # msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2023-11-27 11:34+0000\n" "Last-Translator: mymage <stefano.consolaro@mymage.it>\n" "Language-Team: none\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.17\n" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 #, python-format msgid "<b>UNASSIGNED</b>" msgstr "<b>NON ASSEGNATO</b>" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/js/timeline_controller.esm.js:0 #, python-format msgid "Are you sure you want to delete this record?" msgstr "Si è sicuri di cancellare questo record?" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 #, python-format msgid "Day" msgstr "Giorno" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 #, python-format msgid "Month" msgstr "Mese" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 #, python-format msgid "Template \"timeline-item\" not present in timeline view definition." msgstr "" "Modello \"timeline-item\" non presente nella definizione della vista " "cronologia." #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/js/timeline_view.js:0 #: model:ir.model.fields.selection,name:web_timeline.selection__ir_ui_view__type__timeline #, python-format msgid "Timeline" msgstr "Cronologia" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 #, python-format msgid "Timeline view has not defined 'date_start' attribute." msgstr "La vista cronologia non ha l'attributo 'date_start' definito." #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 #, python-format msgid "Today" msgstr "Oggi" #. module: web_timeline #: model:ir.model,name:web_timeline.model_ir_ui_view msgid "View" msgstr "Vista" #. module: web_timeline #: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view__type msgid "View Type" msgstr "Tipo vista" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/js/timeline_controller.esm.js:0 #, python-format msgid "Warning" msgstr "Attenzione" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 #, python-format msgid "Week" msgstr "Settimana" #. module: web_timeline #. odoo-javascript #: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 #, python-format msgid "Year" msgstr "Anno"
OCA/web/web_timeline/i18n/it.po/0
{ "file_path": "OCA/web/web_timeline/i18n/it.po", "repo_id": "OCA", "token_count": 1154 }
80
/* override some bootstrap styles screwing up the timelines css */ .vis [class*="span"] { min-height: 0; width: auto; } .vis-current-time { background-color: #FF7F6E; width: 2px; z-index: 1; pointer-events: none; } .vis-rolling-mode-btn { height: 40px; width: 40px; position: absolute; top: 7px; right: 20px; border-radius: 50%; font-size: 28px; cursor: pointer; opacity: 0.8; color: white; font-weight: bold; text-align: center; background: #3876c2; } .vis-rolling-mode-btn:before { content: "\26F6"; } .vis-rolling-mode-btn:hover { opacity: 1; } .vis-timeline { /* -webkit-transition: height .4s ease-in-out; transition: height .4s ease-in-out; */ } .vis-panel { /* -webkit-transition: height .4s ease-in-out, top .4s ease-in-out; transition: height .4s ease-in-out, top .4s ease-in-out; */ } .vis-axis { /* -webkit-transition: top .4s ease-in-out; transition: top .4s ease-in-out; */ } /* TODO: get animation working nicely .vis-item { -webkit-transition: top .4s ease-in-out; transition: top .4s ease-in-out; } .vis-item.line { -webkit-transition: height .4s ease-in-out, top .4s ease-in-out; transition: height .4s ease-in-out, top .4s ease-in-out; } /**/ .vis-panel { position: absolute; padding: 0; margin: 0; box-sizing: border-box; } .vis-panel.vis-center, .vis-panel.vis-left, .vis-panel.vis-right, .vis-panel.vis-top, .vis-panel.vis-bottom { border: 1px #bfbfbf; } .vis-panel.vis-center, .vis-panel.vis-left, .vis-panel.vis-right { border-top-style: solid; border-bottom-style: solid; overflow: hidden; } .vis-left.vis-panel.vis-vertical-scroll, .vis-right.vis-panel.vis-vertical-scroll { height: 100%; overflow-x: hidden; overflow-y: scroll; } .vis-left.vis-panel.vis-vertical-scroll { direction: rtl; } .vis-left.vis-panel.vis-vertical-scroll .vis-content { direction: ltr; } .vis-right.vis-panel.vis-vertical-scroll { direction: ltr; } .vis-right.vis-panel.vis-vertical-scroll .vis-content { direction: rtl; } .vis-panel.vis-center, .vis-panel.vis-top, .vis-panel.vis-bottom { border-left-style: solid; border-right-style: solid; } .vis-background { overflow: hidden; } .vis-panel > .vis-content { position: relative; } .vis-panel .vis-shadow { position: absolute; width: 100%; height: 1px; box-shadow: 0 0 10px rgba(0,0,0,0.8); /* TODO: find a nice way to ensure vis-shadows are drawn on top of items z-index: 1; */ } .vis-panel .vis-shadow.vis-top { top: -1px; left: 0; } .vis-panel .vis-shadow.vis-bottom { bottom: -1px; left: 0; } .vis-graph-group0 { fill:#4f81bd; fill-opacity:0; stroke-width:2px; stroke: #4f81bd; } .vis-graph-group1 { fill:#f79646; fill-opacity:0; stroke-width:2px; stroke: #f79646; } .vis-graph-group2 { fill: #8c51cf; fill-opacity:0; stroke-width:2px; stroke: #8c51cf; } .vis-graph-group3 { fill: #75c841; fill-opacity:0; stroke-width:2px; stroke: #75c841; } .vis-graph-group4 { fill: #ff0100; fill-opacity:0; stroke-width:2px; stroke: #ff0100; } .vis-graph-group5 { fill: #37d8e6; fill-opacity:0; stroke-width:2px; stroke: #37d8e6; } .vis-graph-group6 { fill: #042662; fill-opacity:0; stroke-width:2px; stroke: #042662; } .vis-graph-group7 { fill:#00ff26; fill-opacity:0; stroke-width:2px; stroke: #00ff26; } .vis-graph-group8 { fill:#ff00ff; fill-opacity:0; stroke-width:2px; stroke: #ff00ff; } .vis-graph-group9 { fill: #8f3938; fill-opacity:0; stroke-width:2px; stroke: #8f3938; } .vis-timeline .vis-fill { fill-opacity:0.1; stroke: none; } .vis-timeline .vis-bar { fill-opacity:0.5; stroke-width:1px; } .vis-timeline .vis-point { stroke-width:2px; fill-opacity:1.0; } .vis-timeline .vis-legend-background { stroke-width:1px; fill-opacity:0.9; fill: #ffffff; stroke: #c2c2c2; } .vis-timeline .vis-outline { stroke-width:1px; fill-opacity:1; fill: #ffffff; stroke: #e5e5e5; } .vis-timeline .vis-icon-fill { fill-opacity:0.3; stroke: none; } .vis-timeline { position: relative; border: 1px solid #bfbfbf; overflow: hidden; padding: 0; margin: 0; box-sizing: border-box; } .vis-loading-screen { width: 100%; height: 100%; position: absolute; top: 0; left: 0; } .vis-custom-time { background-color: #6E94FF; width: 2px; cursor: move; z-index: 1; } .vis-custom-time > .vis-custom-time-marker { background-color: inherit; color: white; font-size: 12px; white-space: nowrap; padding: 3px 5px; top: 0px; cursor: initial; z-index: inherit; } .vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal { position: absolute; width: 100%; height: 0; border-bottom: 1px solid; } .vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor { border-color: #e5e5e5; } .vis-panel.vis-background.vis-horizontal .vis-grid.vis-major { border-color: #bfbfbf; } .vis-data-axis .vis-y-axis.vis-major { width: 100%; position: absolute; color: #4d4d4d; white-space: nowrap; } .vis-data-axis .vis-y-axis.vis-major.vis-measure { padding: 0; margin: 0; border: 0; visibility: hidden; width: auto; } .vis-data-axis .vis-y-axis.vis-minor { position: absolute; width: 100%; color: #bebebe; white-space: nowrap; } .vis-data-axis .vis-y-axis.vis-minor.vis-measure { padding: 0; margin: 0; border: 0; visibility: hidden; width: auto; } .vis-data-axis .vis-y-axis.vis-title { position: absolute; color: #4d4d4d; white-space: nowrap; bottom: 20px; text-align: center; } .vis-data-axis .vis-y-axis.vis-title.vis-measure { padding: 0; margin: 0; visibility: hidden; width: auto; } .vis-data-axis .vis-y-axis.vis-title.vis-left { bottom: 0; -webkit-transform-origin: left top; -moz-transform-origin: left top; -ms-transform-origin: left top; -o-transform-origin: left top; transform-origin: left bottom; -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -ms-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); } .vis-data-axis .vis-y-axis.vis-title.vis-right { bottom: 0; -webkit-transform-origin: right bottom; -moz-transform-origin: right bottom; -ms-transform-origin: right bottom; -o-transform-origin: right bottom; transform-origin: right bottom; -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); } .vis-legend { background-color: rgba(247, 252, 255, 0.65); padding: 5px; border: 1px solid #b3b3b3; box-shadow: 2px 2px 10px rgba(154, 154, 154, 0.55); } .vis-legend-text { /*font-size: 10px;*/ white-space: nowrap; display: inline-block } .vis-labelset { position: relative; overflow: hidden; box-sizing: border-box; } .vis-labelset .vis-label { position: relative; left: 0; top: 0; width: 100%; color: #4d4d4d; box-sizing: border-box; } .vis-labelset .vis-label { border-bottom: 1px solid #bfbfbf; } .vis-labelset .vis-label.draggable { cursor: pointer; } .vis-group-is-dragging { background: rgba(0, 0, 0, .1); } .vis-labelset .vis-label:last-child { border-bottom: none; } .vis-labelset .vis-label .vis-inner { display: inline-block; padding: 5px; } .vis-labelset .vis-label .vis-inner.vis-hidden { padding: 0; } .vis-itemset { position: relative; padding: 0; margin: 0; box-sizing: border-box; } .vis-itemset .vis-background, .vis-itemset .vis-foreground { position: absolute; width: 100%; height: 100%; overflow: visible; } .vis-axis { position: absolute; width: 100%; height: 0; left: 0; z-index: 1; } .vis-foreground .vis-group { position: relative; box-sizing: border-box; border-bottom: 1px solid #bfbfbf; } .vis-foreground .vis-group:last-child { border-bottom: none; } .vis-nesting-group { cursor: pointer; } .vis-label.vis-nested-group.vis-group-level-unknown-but-gte1 { background: #f5f5f5; } .vis-label.vis-nested-group.vis-group-level-0 { background-color: #ffffff; } .vis-ltr .vis-label.vis-nested-group.vis-group-level-0 .vis-inner { padding-left: 0; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-0 .vis-inner { padding-right: 0; } .vis-label.vis-nested-group.vis-group-level-1 { background-color: rgba(0, 0, 0, 0.05); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-1 .vis-inner { padding-left: 15px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-1 .vis-inner { padding-right: 15px; } .vis-label.vis-nested-group.vis-group-level-2 { background-color: rgba(0, 0, 0, 0.1); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-2 .vis-inner { padding-left: 30px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-2 .vis-inner { padding-right: 30px; } .vis-label.vis-nested-group.vis-group-level-3 { background-color: rgba(0, 0, 0, 0.15); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-3 .vis-inner { padding-left: 45px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-3 .vis-inner { padding-right: 45px; } .vis-label.vis-nested-group.vis-group-level-4 { background-color: rgba(0, 0, 0, 0.2); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-4 .vis-inner { padding-left: 60px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-4 .vis-inner { padding-right: 60px; } .vis-label.vis-nested-group.vis-group-level-5 { background-color: rgba(0, 0, 0, 0.25); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-5 .vis-inner { padding-left: 75px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-5 .vis-inner { padding-right: 75px; } .vis-label.vis-nested-group.vis-group-level-6 { background-color: rgba(0, 0, 0, 0.3); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-6 .vis-inner { padding-left: 90px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-6 .vis-inner { padding-right: 90px; } .vis-label.vis-nested-group.vis-group-level-7 { background-color: rgba(0, 0, 0, 0.35); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-7 .vis-inner { padding-left: 105px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-7 .vis-inner { padding-right: 105px; } .vis-label.vis-nested-group.vis-group-level-8 { background-color: rgba(0, 0, 0, 0.4); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-8 .vis-inner { padding-left: 120px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-8 .vis-inner { padding-right: 120px; } .vis-label.vis-nested-group.vis-group-level-9 { background-color: rgba(0, 0, 0, 0.45); } .vis-ltr .vis-label.vis-nested-group.vis-group-level-9 .vis-inner { padding-left: 135px; } .vis-rtl .vis-label.vis-nested-group.vis-group-level-9 .vis-inner { padding-right: 135px; } /* default takes over beginning with level-10 (thats why we add .vis-nested-group to the selectors above, to have higher specifity than these rules for the defaults) */ .vis-label.vis-nested-group { background-color: rgba(0, 0, 0, 0.5); } .vis-ltr .vis-label.vis-nested-group .vis-inner { padding-left: 150px; } .vis-rtl .vis-label.vis-nested-group .vis-inner { padding-right: 150px; } .vis-group-level-unknown-but-gte1 { border: 1px solid red; } /* expanded/collapsed indicators */ .vis-label.vis-nesting-group:before, .vis-label.vis-nesting-group:before { display: inline-block; width: 15px; } .vis-label.vis-nesting-group.expanded:before { content: "\25BC"; } .vis-label.vis-nesting-group.collapsed:before { content: "\25B6"; } .vis-rtl .vis-label.vis-nesting-group.collapsed:before { content: "\25C0"; } /* compensate missing expanded/collapsed indicator, but only at levels > 0 */ .vis-ltr .vis-label:not(.vis-nesting-group):not(.vis-group-level-0) { padding-left: 15px; } .vis-rtl .vis-label:not(.vis-nesting-group):not(.vis-group-level-0) { padding-right: 15px; } .vis-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; } .vis-time-axis { position: relative; overflow: hidden; } .vis-time-axis.vis-foreground { top: 0; left: 0; width: 100%; } .vis-time-axis.vis-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .vis-time-axis .vis-text { position: absolute; color: #4d4d4d; padding: 3px; overflow: hidden; box-sizing: border-box; white-space: nowrap; } .vis-time-axis .vis-text.vis-measure { position: absolute; padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0; visibility: hidden; } .vis-time-axis .vis-grid.vis-vertical { position: absolute; border-left: 1px solid; } .vis-time-axis .vis-grid.vis-vertical-rtl { position: absolute; border-right: 1px solid; } .vis-time-axis .vis-grid.vis-minor { border-color: #e5e5e5; } .vis-time-axis .vis-grid.vis-major { border-color: #bfbfbf; } .vis-item { position: absolute; color: #1A1A1A; border-color: #97B0F8; border-width: 1px; background-color: #D5DDF6; display: inline-block; z-index: 1; /*overflow: hidden;*/ } .vis-item.vis-selected { border-color: #FFC200; background-color: #FFF785; /* z-index must be higher than the z-index of custom time bar and current time bar */ z-index: 2; } .vis-editable.vis-selected { cursor: move; } .vis-item.vis-point.vis-selected { background-color: #FFF785; } .vis-item.vis-box { text-align: center; border-style: solid; border-radius: 2px; } .vis-item.vis-point { background: none; } .vis-item.vis-dot { position: absolute; padding: 0; border-width: 4px; border-style: solid; border-radius: 4px; } .vis-item.vis-range { border-style: solid; border-radius: 2px; box-sizing: border-box; } .vis-item.vis-background { border: none; background-color: rgba(213, 221, 246, 0.4); box-sizing: border-box; padding: 0; margin: 0; } .vis-item .vis-item-overflow { position: relative; width: 100%; height: 100%; padding: 0; margin: 0; overflow: hidden; } .vis-item-visible-frame { white-space: nowrap; } .vis-item.vis-range .vis-item-content { position: relative; display: inline-block; } .vis-item.vis-background .vis-item-content { position: absolute; display: inline-block; } .vis-item.vis-line { padding: 0; position: absolute; width: 0; border-left-width: 1px; border-left-style: solid; } .vis-item .vis-item-content { white-space: nowrap; box-sizing: border-box; padding: 5px; } .vis-item .vis-onUpdateTime-tooltip { position: absolute; background: #4f81bd; color: white; width: 200px; text-align: center; white-space: nowrap; padding: 5px; border-radius: 1px; transition: 0.4s; -o-transition: 0.4s; -moz-transition: 0.4s; -webkit-transition: 0.4s; } .vis-item .vis-delete, .vis-item .vis-delete-rtl { position: absolute; top: 0px; width: 24px; height: 24px; box-sizing: border-box; padding: 0px 5px; cursor: pointer; -webkit-transition: background 0.2s linear; -moz-transition: background 0.2s linear; -ms-transition: background 0.2s linear; -o-transition: background 0.2s linear; transition: background 0.2s linear; } .vis-item .vis-delete { right: -24px; } .vis-item .vis-delete-rtl { left: -24px; } .vis-item .vis-delete:after, .vis-item .vis-delete-rtl:after { content: "\00D7"; /* MULTIPLICATION SIGN */ color: red; font-family: arial, sans-serif; font-size: 22px; font-weight: bold; -webkit-transition: color 0.2s linear; -moz-transition: color 0.2s linear; -ms-transition: color 0.2s linear; -o-transition: color 0.2s linear; transition: color 0.2s linear; } .vis-item .vis-delete:hover, .vis-item .vis-delete-rtl:hover { background: red; } .vis-item .vis-delete:hover:after, .vis-item .vis-delete-rtl:hover:after { color: white; } .vis-item .vis-drag-center { position: absolute; width: 100%; height: 100%; top: 0; left: 0px; cursor: move; } .vis-item.vis-range .vis-drag-left { position: absolute; width: 24px; max-width: 20%; min-width: 2px; height: 100%; top: 0; left: -4px; cursor: w-resize; } .vis-item.vis-range .vis-drag-right { position: absolute; width: 24px; max-width: 20%; min-width: 2px; height: 100%; top: 0; right: -4px; cursor: e-resize; } .vis-range.vis-item.vis-readonly .vis-drag-left, .vis-range.vis-item.vis-readonly .vis-drag-right { cursor: auto; } .vis-item.vis-cluster { vertical-align: center; text-align: center; border-style: solid; border-radius: 2px; } .vis-item.vis-cluster-line { padding: 0; position: absolute; width: 0; border-left-width: 1px; border-left-style: solid; } .vis-item.vis-cluster-dot { position: absolute; padding: 0; border-width: 4px; border-style: solid; border-radius: 4px; } div.vis-configuration { position:relative; display:block; float:left; font-size:12px; } div.vis-configuration-wrapper { display:block; width:700px; } div.vis-configuration-wrapper::after { clear: both; content: ""; display: block; } div.vis-configuration.vis-config-option-container{ display:block; width:495px; background-color: #ffffff; border:2px solid #f7f8fa; border-radius:4px; margin-top:20px; left:10px; padding-left:5px; } div.vis-configuration.vis-config-button{ display:block; width:495px; height:25px; vertical-align: middle; line-height:25px; background-color: #f7f8fa; border:2px solid #ceced0; border-radius:4px; margin-top:20px; left:10px; padding-left:5px; cursor: pointer; margin-bottom:30px; } div.vis-configuration.vis-config-button.hover{ background-color: #4588e6; border:2px solid #214373; color:#ffffff; } div.vis-configuration.vis-config-item{ display:block; float:left; width:495px; height:25px; vertical-align: middle; line-height:25px; } div.vis-configuration.vis-config-item.vis-config-s2{ left:10px; background-color: #f7f8fa; padding-left:5px; border-radius:3px; } div.vis-configuration.vis-config-item.vis-config-s3{ left:20px; background-color: #e4e9f0; padding-left:5px; border-radius:3px; } div.vis-configuration.vis-config-item.vis-config-s4{ left:30px; background-color: #cfd8e6; padding-left:5px; border-radius:3px; } div.vis-configuration.vis-config-header{ font-size:18px; font-weight: bold; } div.vis-configuration.vis-config-label{ width:120px; height:25px; line-height: 25px; } div.vis-configuration.vis-config-label.vis-config-s3{ width:110px; } div.vis-configuration.vis-config-label.vis-config-s4{ width:100px; } div.vis-configuration.vis-config-colorBlock{ top:1px; width:30px; height:19px; border:1px solid #444444; border-radius:2px; padding:0px; margin:0px; cursor:pointer; } input.vis-configuration.vis-config-checkbox { left:-5px; } input.vis-configuration.vis-config-rangeinput{ position:relative; top:-5px; width:60px; /*height:13px;*/ padding:1px; margin:0; pointer-events:none; } input.vis-configuration.vis-config-range{ /*removes default webkit styles*/ -webkit-appearance: none; /*fix for FF unable to apply focus style bug */ border: 0px solid white; background-color:rgba(0,0,0,0); /*required for proper track sizing in FF*/ width: 300px; height:20px; } input.vis-configuration.vis-config-range::-webkit-slider-runnable-track { width: 300px; height: 5px; background: #dedede; /* Old browsers */ background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */ background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ border: 1px solid #999999; box-shadow: #aaaaaa 0px 0px 3px 0px; border-radius: 3px; } input.vis-configuration.vis-config-range::-webkit-slider-thumb { -webkit-appearance: none; border: 1px solid #14334b; height: 17px; width: 17px; border-radius: 50%; background: #3876c2; /* Old browsers */ background: -moz-linear-gradient(top, #3876c2 0%, #385380 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3876c2), color-stop(100%,#385380)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #3876c2 0%,#385380 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #3876c2 0%,#385380 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #3876c2 0%,#385380 100%); /* IE10+ */ background: linear-gradient(to bottom, #3876c2 0%,#385380 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380',GradientType=0 ); /* IE6-9 */ box-shadow: #111927 0px 0px 1px 0px; margin-top: -7px; } input.vis-configuration.vis-config-range:focus { outline: none; } input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track { background: #9d9d9d; /* Old browsers */ background: -moz-linear-gradient(top, #9d9d9d 0%, #c8c8c8 99%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* IE10+ */ background: linear-gradient(to bottom, #9d9d9d 0%,#c8c8c8 99%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ } input.vis-configuration.vis-config-range::-moz-range-track { width: 300px; height: 10px; background: #dedede; /* Old browsers */ background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */ background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ border: 1px solid #999999; box-shadow: #aaaaaa 0px 0px 3px 0px; border-radius: 3px; } input.vis-configuration.vis-config-range::-moz-range-thumb { border: none; height: 16px; width: 16px; border-radius: 50%; background: #385380; } /*hide the outline behind the border*/ input.vis-configuration.vis-config-range:-moz-focusring{ outline: 1px solid white; outline-offset: -1px; } input.vis-configuration.vis-config-range::-ms-track { width: 300px; height: 5px; /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */ background: transparent; /*leave room for the larger thumb to overflow with a transparent border */ border-color: transparent; border-width: 6px 0; /*remove default tick marks*/ color: transparent; } input.vis-configuration.vis-config-range::-ms-fill-lower { background: #777; border-radius: 10px; } input.vis-configuration.vis-config-range::-ms-fill-upper { background: #ddd; border-radius: 10px; } input.vis-configuration.vis-config-range::-ms-thumb { border: none; height: 16px; width: 16px; border-radius: 50%; background: #385380; } input.vis-configuration.vis-config-range:focus::-ms-fill-lower { background: #888; } input.vis-configuration.vis-config-range:focus::-ms-fill-upper { background: #ccc; } .vis-configuration-popup { position: absolute; background: rgba(57, 76, 89, 0.85); border: 2px solid #f2faff; line-height:30px; height:30px; width:150px; text-align:center; color: #ffffff; font-size:14px; border-radius:4px; -webkit-transition: opacity 0.3s ease-in-out; -moz-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .vis-configuration-popup:after, .vis-configuration-popup:before { left: 100%; top: 50%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; } .vis-configuration-popup:after { border-color: rgba(136, 183, 213, 0); border-left-color: rgba(57, 76, 89, 0.85); border-width: 8px; margin-top: -8px; } .vis-configuration-popup:before { border-color: rgba(194, 225, 245, 0); border-left-color: #f2faff; border-width: 12px; margin-top: -12px; } .vis .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* Must be displayed above for example selected Timeline items */ z-index: 10; } .vis-active { box-shadow: 0 0 10px #86d5f8; } div.vis-tooltip { position: absolute; visibility: hidden; padding: 5px; white-space: nowrap; font-family: verdana; font-size:14px; color:#000000; background-color: #f5f4ed; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border: 1px solid #808074; box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); pointer-events: none; z-index: 5; }
OCA/web/web_timeline/static/lib/vis-timeline/vis-timeline-graph2d.css/0
{ "file_path": "OCA/web/web_timeline/static/lib/vis-timeline/vis-timeline-graph2d.css", "repo_id": "OCA", "token_count": 11207 }
81
The development of this module has been financially supported by: - Moduon Team S.L.
OCA/web/web_touchscreen/readme/CREDITS.md/0
{ "file_path": "OCA/web/web_touchscreen/readme/CREDITS.md", "repo_id": "OCA", "token_count": 23 }
82
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_tree_duplicate # msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2021-03-15 06:45+0000\n" "Last-Translator: Marcel Savegnago <marcel.savegnago@gmail.com>\n" "Language-Team: none\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3.2\n" #. module: web_tree_duplicate #. openerp-web #: code:addons/web_tree_duplicate/static/src/js/backend.js:47 #, python-format msgid "Duplicate" msgstr "Duplicado" #. module: web_tree_duplicate #. openerp-web #: code:addons/web_tree_duplicate/static/src/js/backend.js:84 #, python-format msgid "Duplicated Records" msgstr "Registros Duplicados"
OCA/web/web_tree_duplicate/i18n/pt_BR.po/0
{ "file_path": "OCA/web/web_tree_duplicate/i18n/pt_BR.po", "repo_id": "OCA", "token_count": 370 }
83
=============================== Web Widget Domain Editor Dialog =============================== .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:556e58fec03e10a766775e9fcf51a71af99cd84efaa2ee47cd937bee7ef9312f !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github :target: https://github.com/OCA/web/tree/16.0/web_widget_domain_editor_dialog :alt: OCA/web .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_widget_domain_editor_dialog :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| Since v11 introduced the new domain editor widget it's not possible to edit the selected records from the current domain. This module reintroduces that dialog to complement the current widget with the powerful search engine of Odoo. **Table of contents** .. contents:: :local: Usage ===== In any view with a domain field widget and model, but we'll make the example with a user filter: #. Enter debug mode. #. Go to the *Debug menu* and select the option *Manage Filters* #. Create a new one #. Put a name to the filter and select a model (e.g.: Contact) #. Click on the record selection button and a list dialog opens. There you can either: * Select individual records: those ids will be added to the domain. * Set filters that will be applied to the domain and select all the records to add it as a new filter. * Set groups that will be converted into search filters, select all the records and those unfolded groups will be set as filters to. You can still edit the filter with Odoo's widget after that. .. figure:: https://raw.githubusercontent.com/OCA/web/16.0/web_widget_domain_editor_dialog/static/src/img/behaviour.gif :align: center :width: 600 px Bug Tracker =========== Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed `feedback <https://github.com/OCA/web/issues/new?body=module:%20web_widget_domain_editor_dialog%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. Do not contact contributors directly about support or help with technical issues. Credits ======= Authors ~~~~~~~ * Tecnativa Contributors ~~~~~~~~~~~~ * `Tecnativa <https://www.tecnativa.com>`_ * David Vidal * Jairo Llopis * Carlos Roca * Darshan Patel <darshan.barcelona@gmail.com> * Helly kapatel <helly.kapatel@initos.com> * Carlos Lopez <celm1990@gmail.com> Maintainers ~~~~~~~~~~~ This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_widget_domain_editor_dialog>`_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
OCA/web/web_widget_domain_editor_dialog/README.rst/0
{ "file_path": "OCA/web/web_widget_domain_editor_dialog/README.rst", "repo_id": "OCA", "token_count": 1381 }
84
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
OCA/web/web_widget_dropdown_dynamic/__init__.py/0
{ "file_path": "OCA/web/web_widget_dropdown_dynamic/__init__.py", "repo_id": "OCA", "token_count": 28 }
85
from . import models
OCA/web/web_widget_image_webcam/__init__.py/0
{ "file_path": "OCA/web/web_widget_image_webcam/__init__.py", "repo_id": "OCA", "token_count": 5 }
86
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_widget_open_tab # msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-27 08:24+0000\n" "PO-Revision-Date: 2023-05-27 08:24+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: web_widget_open_tab #: model:ir.model.fields,field_description:web_widget_open_tab.field_ir_model__add_open_tab_field msgid "Add Open Tab Field" msgstr "別タブ表示ボタン追加" #. module: web_widget_open_tab #: model:ir.model.fields,help:web_widget_open_tab.field_ir_model__add_open_tab_field msgid "Adds open-tab field in list views." msgstr "リストビューに別タブ表示ボタンを追加。" #. module: web_widget_open_tab #: model:ir.model,name:web_widget_open_tab.model_base msgid "Base" msgstr "ベース" #. module: web_widget_open_tab #. odoo-javascript #: code:addons/web_widget_open_tab/static/src/js/open_tab_widget.esm.js:0 #, python-format msgid "Click to open on new tab" msgstr "クリックして別タブを開く" #. module: web_widget_open_tab #: model:ir.model,name:web_widget_open_tab.model_ir_model msgid "Models" msgstr "モデル" #. module: web_widget_open_tab #. odoo-javascript #: code:addons/web_widget_open_tab/static/src/js/open_tab_widget.esm.js:0 #, python-format msgid "Open Tab" msgstr "別タブを開く"
OCA/web/web_widget_open_tab/i18n/ja.po/0
{ "file_path": "OCA/web/web_widget_open_tab/i18n/ja.po", "repo_id": "OCA", "token_count": 638 }
87
/** @odoo-module **/ import {loadJS} from "@web/core/assets"; import {registry} from "@web/core/registry"; import {Component, onPatched, onWillStart, useEffect, useRef} from "@odoo/owl"; export class PlotlyChartWidgetField extends Component { setup() { this.divRef = useRef("plotly"); onWillStart(async () => { await loadJS( "/web_widget_plotly_chart/static/src/lib/plotly/plotly-2.18.2.min.js" ); this.updatePlotly(this.props.value); }); onPatched(() => { this.updatePlotly(this.props.value); }); useEffect(() => { this.updatePlotly(this.props.value); }); } updatePlotly(value) { const value_html = $(value); const div = value_html.find(".plotly-graph-div").get(0).outerHTML || ""; const script = value_html.find("script").get(0).textContent || ""; if (this.divRef.el) { this.divRef.el.innerHTML = div; new Function(script)(); } } } PlotlyChartWidgetField.template = "web_widget_plotly_chart.PlotlyChartWidgetField"; PlotlyChartWidgetField.supportedTypes = ["char", "text"]; registry.category("fields").add("plotly_chart", PlotlyChartWidgetField);
OCA/web/web_widget_plotly_chart/static/src/js/widget_plotly.esm.js/0
{ "file_path": "OCA/web/web_widget_plotly_chart/static/src/js/widget_plotly.esm.js", "repo_id": "OCA", "token_count": 564 }
88
# Translation of Odoo Server. # This file contains the translation of the following modules: # * web_widget_x2many_2d_matrix # # Translators: msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-11 02:18+0000\n" "PO-Revision-Date: 2019-09-03 01:23+0000\n" "Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/" "language/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.8\n" #. module: web_widget_x2many_2d_matrix #. odoo-javascript #: code:addons/web_widget_x2many_2d_matrix/static/src/components/x2many_2d_matrix_renderer/x2many_2d_matrix_renderer.xml:0 #, python-format msgid "Nothing to display." msgstr "" #, python-format #~ msgid "Sorry no matrix data to display." #~ msgstr "Desculpe não há dados de matriz para exibir." #, python-format #~ msgid "Sum" #~ msgstr "Soma" #, python-format #~ msgid "Sum Total" #~ msgstr "Soma Total"
OCA/web/web_widget_x2many_2d_matrix/i18n/pt_BR.po/0
{ "file_path": "OCA/web/web_widget_x2many_2d_matrix/i18n/pt_BR.po", "repo_id": "OCA", "token_count": 488 }
89
/** @odoo-module **/ import {Component, onWillUpdateProps} from "@odoo/owl"; import {registry} from "@web/core/registry"; export class X2Many2DMatrixRenderer extends Component { setup() { this.ValueFieldComponent = this._getValueFieldComponent(); this.columns = this._getColumns(); this.rows = this._getRows(); this.matrix = this._getMatrix(); onWillUpdateProps((newProps) => { this.columns = this._getColumns(newProps.list.records); this.rows = this._getRows(newProps.list.records); this.matrix = this._getMatrix(newProps.list.records); }); } _getColumns(records = this.list.records) { const columns = []; records.forEach((record) => { const column = { value: record.data[this.matrixFields.x], text: record.data[this.matrixFields.x], }; if (record.fields[this.matrixFields.x].type === "many2one") { column.text = column.value[1]; column.value = column.value[0]; } if (columns.findIndex((c) => c.value === column.value) !== -1) return; columns.push(column); }); return columns; } _getRows(records = this.list.records) { const rows = []; records.forEach((record) => { const row = { value: record.data[this.matrixFields.y], text: record.data[this.matrixFields.y], }; if (record.fields[this.matrixFields.y].type === "many2one") { row.text = row.value[1]; row.value = row.value[0]; } if (rows.findIndex((r) => r.value === row.value) !== -1) return; rows.push(row); }); return rows; } _getPointOfRecord(record) { let xValue = record.data[this.matrixFields.x]; if (record.fields[this.matrixFields.x].type === "many2one") { xValue = xValue[0]; } let yValue = record.data[this.matrixFields.y]; if (record.fields[this.matrixFields.y].type === "many2one") { yValue = yValue[0]; } const x = this.columns.findIndex((c) => c.value === xValue); const y = this.rows.findIndex((r) => r.value === yValue); return {x, y}; } _getMatrix(records = this.list.records) { const matrix = this.rows.map(() => new Array(this.columns.length).fill(null).map(() => { return {value: 0, records: []}; }) ); records.forEach((record) => { const value = record.data[this.matrixFields.value]; const {x, y} = this._getPointOfRecord(record); matrix[y][x].value += value; matrix[y][x].records.push(record); }); return matrix; } get list() { return this.props.list; } get matrixFields() { return this.props.matrixFields; } _getValueFieldComponent() { const field = this.list.activeFields[this.matrixFields.value]; if (!field.widget) { return this.list.activeFields[this.matrixFields.value].FieldComponent; } return registry.category("fields").get(field.widget); } _aggregateRow(row) { const y = this.rows.findIndex((r) => r.value === row); return this.matrix[y].map((r) => r.value).reduce((aggr, x) => aggr + x); } _aggregateColumn(column) { const x = this.columns.findIndex((c) => c.value === column); return this.matrix .map((r) => r[x]) .map((r) => r.value) .reduce((aggr, y) => aggr + y); } _aggregateAll() { return this.matrix .map((r) => r.map((x) => x.value).reduce((aggr, x) => aggr + x)) .reduce((aggr, y) => aggr + y); } _canAggregate() { return ["integer", "float", "monetary"].includes( this.list.fields[this.matrixFields.value].type ); } update(x, y, value) { this.matrix[y][x].value = value; const xFieldValue = this.columns[x].value; const yFieldValue = this.rows[y].value; this.props.onUpdate(xFieldValue, yFieldValue, value); } getValueFieldProps(column, row) { const x = this.columns.findIndex((c) => c.value === column); const y = this.rows.findIndex((r) => r.value === row); const {props, propsFromAttrs} = this.list.activeFields[this.matrixFields.value]; let record = null; let value = null; if ( this.matrix[y] && this.matrix[y][x] && (record = this.matrix[y][x].records[0]) ) { record = this.matrix[y][x].records[0]; value = this.matrix[y][x].value; } if (this.list.fields[this.matrixFields.value].type === "boolean") { record.bypass_readonly = true; } value = !this._canAggregate() && record ? record.data[this.matrixFields.value] : value; const result = { ...props, ...propsFromAttrs, value: value, update: (value) => this.update(x, y, value), readonly: this.props.readonly, record: record, name: this.matrixFields.value, }; if (value === null) { result.readonly = true; } return result; } } X2Many2DMatrixRenderer.template = "web_widget_x2many_2d_matrix.X2Many2DMatrixRenderer"; X2Many2DMatrixRenderer.props = { list: Object, matrixFields: Object, setDirty: Function, onUpdate: Function, readonly: Boolean, showRowTotals: Boolean, showColumnTotals: Boolean, };
OCA/web/web_widget_x2many_2d_matrix/static/src/components/x2many_2d_matrix_renderer/x2many_2d_matrix_renderer.esm.js/0
{ "file_path": "OCA/web/web_widget_x2many_2d_matrix/static/src/components/x2many_2d_matrix_renderer/x2many_2d_matrix_renderer.esm.js", "repo_id": "OCA", "token_count": 2886 }
90
squash
SquareSquash/web/.ruby-gemset/0
{ "file_path": "SquareSquash/web/.ruby-gemset", "repo_id": "SquareSquash", "token_count": 3 }
91
@import "vars"; $badge-padding: 4px; span.badge { background-color: $gray3; color: white; padding: $badge-padding; border-radius: $radius-size; &.critical { background-color: $red; } &.important { background-color: $orange; color: black; } &.warning { background-color: $yellow; color: black; } &.success { background-color: $green; color: black; } &.info { background-color: $blue; color: black; } }
SquareSquash/web/app/assets/stylesheets/_badges.scss/0
{ "file_path": "SquareSquash/web/app/assets/stylesheets/_badges.scss", "repo_id": "SquareSquash", "token_count": 150 }
92
@import "vars"; #flashes { position: fixed; bottom: 0; left: 0; width: 50%; } @mixin flash($color) { font-weight: bold; padding: 10px 20px; border-top-right-radius: $radius-size; border-bottom-right-radius: $radius-size; margin-top: 10px; margin-bottom: 10px; background-color: $color; // prepare for slide-in animation position: relative; left: -100%; [class^="fa-"], [class*=" fa-"] { margin-right: 10px; } a { float: right; font-weight: bold; opacity: 0.5; &:hover { opacity: 1; } } } .flash-alert { @include flash($red); } .flash-notice { @include flash($blue); } .flash-success { @include flash($green); } $flash-animation-duration: 0.5s; .flash-shown { left: 0%; -webkit-transition: left $flash-animation-duration ease-out; -moz-transition: left $flash-animation-duration ease-out; transition: left $flash-animation-duration ease-out; } .flash-hidden { left: -100%; -webkit-transition: left $flash-animation-duration ease-in; -moz-transition: left $flash-animation-duration ease-in; transition: left $flash-animation-duration ease-in; }
SquareSquash/web/app/assets/stylesheets/flash.css.scss/0
{ "file_path": "SquareSquash/web/app/assets/stylesheets/flash.css.scss", "repo_id": "SquareSquash", "token_count": 420 }
93
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'base64' require 'zlib' # Endpoint for client libraries. Receives notifications of new exception # occurrences and new deploys. Processes these requests. # # Note that this controller does not inherit from {ApplicationController}. # # Common # ====== # # All response bodies are empty. # # Response Codes # -------------- # # | | | # |:---------|:----------------------------------| # | 200, 201 | No errors. | # | 422 | Invalid arguments. | # | 403 | Invalid API key. | # | 404 | Unknown environment, deploy, etc. | class Api::V1Controller < ActionController::Base include Squash::Ruby::ControllerMethods enable_squash_client except: :notify # prevent infinite loop of notifications rescue_from(API::UnknownAPIKeyError) { head :forbidden } rescue_from(API::InvalidAttributesError, ActiveRecord::RecordInvalid) do |err| record = err.respond_to?(:record) ? err.record : nil if record Rails.logger.error "Rejecting #{record.class}: #{record.errors.full_messages.join(' - ')}" else Rails.logger.error "Rejecting record: #{err}" end head :unprocessable_entity end rescue_from(ActiveRecord::RecordNotFound) { head :not_found } # API endpoint for exception notifications. Creates a new thread and # instantiates an {OccurrencesWorker} to process it. # # Routes # ------ # # * `POST /api/1.0/notify` def notify BackgroundRunner.run OccurrencesWorker, request.request_parameters.to_hash head :ok end # API endpoint for deploy or release notifications. Creates a new {Deploy}. # # Routes # ------ # # * `POST /api/1.0/deploy` def deploy require_params :project, :environment, :deploy project = Project.find_by_api_key(params['project']['api_key']) or raise(API::UnknownAPIKeyError) environment = project.environments.with_name(params['environment']['name']).find_or_create!(name: params['environment']['name']) environment.deploys.create!(deploy_params) head :ok end # API endpoint for uploading symbolication data. This data typically comes # from symbolicating scripts that run on compiled projects. # # Routes # ------ # # * `POST /api/1.0/symbolication` def symbolication require_params :symbolications BackgroundRunner.run SymbolicationCreator, params.slice('symbolications') head :created end # API endpoint for uploading deobfuscation data. This data typically comes # from a renamelog.xml file generated by yGuard. # # Routes # ------ # # * `POST /api/1.0/deobfuscation` def deobfuscation require_params :api_key, :environment, :build, :namespace BackgroundRunner.run ObfuscationMapCreator, params.slice('namespace', 'api_key', 'environment', 'build') head :created end # API endpoint for uploading source-map data. This data typically comes from # scripts that upload source maps generated in the process of compiling and # minifying JavaScript assets. # # Routes # ------ # # * `POST /api/1.0/sourcemap` def sourcemap require_params :api_key, :environment, :revision, :sourcemap, :from, :to BackgroundRunner.run SourceMapCreator, params.slice('sourcemap', 'api_key', 'environment', 'revision', 'from', 'to') head :created end private def require_params(*req) raise(API::InvalidAttributesError, "Missing required parameter") unless req.map(&:to_s).all? { |key| params[key].present? } end def deploy_params params.require(:deploy).permit(:revision, :deployed_at, :hostname, :build, :version) end end
SquareSquash/web/app/controllers/api/v1_controller.rb/0
{ "file_path": "SquareSquash/web/app/controllers/api/v1_controller.rb", "repo_id": "SquareSquash", "token_count": 1428 }
94
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Returns search suggestions and search results for the search field in the # navigation bar. The following query syntaxes are allowed: # # * `@username` # * `project` # * `project environment` # * `project environment bug#` # * `project environment bug# occurrence#` # # Usernames, Project names, and Environment names can be unique prefixes and are # case-insensitive. class SearchController < ApplicationController # Maximum number of suggestions to return. MAX_SUGGESTIONS = 10 skip_before_filter :login_required before_filter :require_query # Returns a search result for a query in the search field. If the query # consists of recognized names or prefixes, and resolves to a single page, the # response will be 200 OK, and the body will be the URL. Otherwise, the # response will be 200 OK with an empty body. # # Routes # ------ # # * `GET /search` # # Query Parameters # ---------------- # # | | | # |:--------|:------------------| # | `query` | The search query. | def search words = params[:query].split(/\s+/).reject(&:blank?) url = nil case words.size when 1 if words.first.starts_with?('@') user = find_users(words.first[1..-1]).only url = user_url(user) if user else project = find_projects(words[0]).only.try!(:sluggable) url = project_url(project) if project end when 2 project = find_projects(words[0]).only.try!(:sluggable) env = find_environments(project, words[1]).only if project url = project_environment_bugs_url(project, env) if env when 3 project = find_projects(words[0]).only.try!(:sluggable) env = find_environments(project, words[1]).only if project bug = env.bugs.find_by_number(words[2].to_i) if env url = project_environment_bug_url(project, env, bug) if bug when 4 project = find_projects(words[0]).only.try!(:sluggable) env = find_environments(project, words[1]).only if project bug = env.bugs.find_by_number(words[2].to_i) if env occurrence = bug.occurrences.find_by_number(words[3].to_i) if bug url = project_environment_bug_occurrence_url(project, env, bug, occurrence) if occurrence end url ? render(text: url) : head(:ok) end # Returns a JSON-formatted array of possible completions given a search query. # Completion is supported for usernames, Project names, and Environment names # only. If the query refers to a Bug or Occurrence, a single-element array is # returned with information on that object. # # Routes # ------ # # * `GET /search/suggestions` # # Query Parameters # ---------------- # # | | | # |:--------|:------------------| # | `query` | The search query. | # # Response JSON # ------------- # # The response JSON will be an array of hashes, each with the following keys: # # | Field name | When included | Description | # |:--------------|:-----------------------------------------|:----------------------------------------------------------| # | `type` | always | "user", "project", "environment", "bug", or "occurrence". | # | `url` | always | The URL to the suggestion object. | # | `user` | User results only | Hash of information about the User. | # | `project` | all except User results | Hash of information about the Project. | # | `environment` | Environment, Bug, and Occurrence results | Hash of information about the Environment. | # | `bug` | Bug and Occurrence results | Hash of information about the Bug. | # | `occurrence` | Occurrence results only | Hash of information about the Occurrence. | def suggestions words = params[:query].split(/\s+/).reject(&:blank?) suggestions = case words.size when 1 if words.first.starts_with?('@') users = find_users(words.first[1..-1]).limit(MAX_SUGGESTIONS) users.map do |user| { user: user.as_json, url: user_url(user), type: 'user' } end else projects = find_projects(words[0]).limit(MAX_SUGGESTIONS).map(&:sluggable).compact projects.map do |project| { project: project.as_json, url: project_url(project), type: 'project', } end end when 2 project = find_projects(words[0]).only.try!(:sluggable) envs = find_environments(project, words[1]).limit(10) if project envs.map do |env| { project: project.as_json, environment: env.as_json, type: 'environment', url: project_environment_bugs_url(project, env) } end if project when 3 project = find_projects(words[0]).only.try!(:sluggable) env = find_environments(project, words[1]).only if project bug = env.bugs.find_by_number(words[2].to_i) if env [{ type: 'bug', url: project_environment_bug_url(project, env, bug), project: project.as_json, environment: env.as_json, bug: bug.as_json }] if bug when 4 project = find_projects(words[0]).only.try!(:sluggable) env = find_environments(project, words[1]).only if project bug = env.bugs.find_by_number(words[2].to_i) if env occurrence = bug.occurrences.find_by_number(words[3].to_i) if bug [{ type: 'occurrence', url: project_environment_bug_occurrence_url(project, env, bug, occurrence), project: project.as_json, environment: env.as_json, bug: bug.as_json, occurrence: occurrence.as_json }] if occurrence end respond_to do |format| format.json { render json: (suggestions || []).to_json } end end private def require_query if params[:query].present? return true else head :unprocessable_entity return false end end def find_projects(substring) Slug.active.for_class('Project').where('slug ILIKE ?', "#{substring}%").order('slug ASC').includes(:sluggable) end def find_environments(project, substring) project.environments.where('name ILIKE ?', "#{substring}%").order('name ASC') end def find_users(substring) User.where('username ILIKE ?', "#{substring}%").order('username ASC') end end
SquareSquash/web/app/controllers/search_controller.rb/0
{ "file_path": "SquareSquash/web/app/controllers/search_controller.rb", "repo_id": "SquareSquash", "token_count": 4046 }
95
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Source mapping information for a JavaScript project. This model stores a # mapping of generated JavaScript code location and symbol names to # corresponding location and names in the original code. See the Squash # JavaScript client library documentation for more information. # # Even if your project is not using minified code, this class is also useful for # mapping the URLs of deployed JavaScript assets to their original source files. # # ### Serialization # # Mapping data is generated using the "squash_javascript" gem. The gem produces # a memory representation of the source map. The gem is also included in this # project to support deserializing the resulting data. # # Serialization is accomplished by zlib-encoding the JSON source map, and then # base-64-encoding the compressed output. This is also how the `map` property is # transmitted over the wire. # # No support is given for modifying these objects after they have been # deserialized. # # ### Source maps in stages # # Oftentimes a project's JavaScript code moves through different transformations # before reaching a final deployed state. For example, the development code # could be in CoffeeScript, which is then compiled to JavaScript, then # concatenated, then minified (a three-stage process). The client may generate # source maps for each of those stages. # # In order to convert a stack trace from its original format into one useful in # the development code, these source maps must be applied in the correct order. # To facilitate this, SourceMap records have a `from` and `to` field. Stack # traces are annotated with their production format ("hosted"), and Squash # searches for source maps that it can apply to that format. It continues to # search for applicable source maps until the stack trace's format is not # convertible any further. # # Stack traces are searched in a simple linear order and applied as they are # found applicable. No fancy dependency trees are built. # # For example, say the following stack trace was provided: # # ```` # 1: foo/bar.js:123 (concatenated) # 2. foo/baz.js:234 (hosted) # ```` # # Squash would first note that line 1 is concatenated, and attempt to locate a # sourcemap whose `from` field is "concatenated" that has an entry for that file # and line. It would perhaps find one whose `to` field is "compiled", so it # would apply that source map, resulting in a different stack trace element # whose type is "compiled". It would then search again for another source map, # this time one whose `from` field was "compiled", and finding one, apply it, # resulting in a new stack trace of type "coffee". Finding no source maps whose # `from` field is "coffee", Squash would be finished with that line. # # Line two would proceed similarly, except Squash might find a source map with # a `from` of "hosted" and a `to` of "concatenated". From there, the logic would # proceed as described previously. # # The Squash JavaScript client library always adds the type of "hosted" to # each line of the original backtrace, so your source-mapping journey should # begin there. # # Associations # ------------ # # | | | # |:--------------|:----------------------------------------------| # | `environment` | The {Environment} this source map pertain to. | # # Properties # ---------- # # | | | # |:-------|:---------------------------------------------------------------------------------| # | `map` | A serialized source map. | # | `filename` | The name of the file this source map maps from. | # | `from` | An identifier indicating what kind of JavaScript code this source map maps from. | # | `to` | An identifier indicating what kind of JavaScript code this source map maps to. | class SourceMap < ActiveRecord::Base belongs_to :environment, inverse_of: :source_maps validates :environment, presence: true validates :revision, presence: true, known_revision: {repo: ->(map) { RepoProxy.new(map, :environment, :project) }} validates :from, :to, presence: true, length: {maximum: 24} validates :filename, presence: true, strict: true before_validation :set_filename, on: :create after_commit(on: :create) do |map| BackgroundRunner.run SourceMapWorker, map.id end attr_readonly :revision # @private def map @map ||= GemSourceMap::Map.from_json( Zlib::Inflate.inflate( Base64.decode64(read_attribute(:map)))) end # @private def map=(m) raise TypeError, "expected GemSourceMap::Map, got #{m.class}" unless m.kind_of?(GemSourceMap::Map) write_attribute :map, Base64.encode64(Zlib::Deflate.deflate(m.as_json.to_json)) end # @private def raw_map=(m) write_attribute :map, m end # Given a line of code within a file in the `from` format, attempts to resolve # it to a line of code within a file in the `to` format. # # @param [String] route The URL of the generated JavaScript file. # @param [Fixnum] line The line of code # @param [Fixnum] column The character number within the line. # @return [Hash, nil] If found, a hash consisting of the source file path, # line number, and method name. def resolve(route, line, column) return nil unless column # firefox doesn't support column numbers return nil unless map.filename == route || begin uri = URI.parse(route) rescue nil if uri.kind_of?(URI::HTTP) || uri.kind_of?(URI::HTTPS) uri.path == map.filename else false end end mapping = map.bsearch(GemSourceMap::Offset.new(line, column)) return nil unless mapping { 'file' => mapping.source, 'line' => mapping.original.line, 'column' => mapping.original.column } end private def set_filename self.filename = map.filename end end
SquareSquash/web/app/models/source_map.rb/0
{ "file_path": "SquareSquash/web/app/models/source_map.rb", "repo_id": "SquareSquash", "token_count": 2140 }
96
<%= @assigner.try!(:name) || "Someone" %> has assigned bug #<%= @bug.number %> on <%= @bug.environment.project.name %> to you: <%= project_environment_bug_url @bug.environment.project, @bug.environment, @bug %> Project: <%= @bug.environment.project.name %> Environment: <%= @bug.environment.name %> Revision: <%= @bug.revision %> Blamed Commit: <%= @bug.blamed_revision %> <%= @bug.class_name %> <% if @bug.special_file? %> in <%= @bug.file %> <% else %> in <%= @bug.file %>:<%= @bug.line %> <% end %> <%= @bug.message_template %> ---- Is it your fault? Under "Management," assign it to yourself, then commit the fix. Mark the bug as fixed when the fix is pushed. Is it someone else's fault? Under "Management," assign it to that person -- they will receive an email notification. Is this not really a bug? Under "Management," mark the bug as "no one will fix this." You will no longer receive notifications about this non-bug. You can also simply delete the bug if it was a one-time test. You should take one of the above three actions -- don't just let the bug sit there! Yours truly, Squash --- If you wish to stop receiving these emails, visit your account page: <%= account_url %>
SquareSquash/web/app/views/notification_mailer/assign.text.erb/0
{ "file_path": "SquareSquash/web/app/views/notification_mailer/assign.text.erb", "repo_id": "SquareSquash", "token_count": 451 }
97
--- cursors: false
SquareSquash/web/config/environments/common/activerecord.yml/0
{ "file_path": "SquareSquash/web/config/environments/common/activerecord.yml", "repo_id": "SquareSquash", "token_count": 8 }
98
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb. # The test environment is used exclusively to run your application's # test suite. You never need to work with it otherwise. Remember that # your test database is "scratch space" for the test suite and is wiped # and recreated between test runs. Don't rely on the data there! config.cache_classes = true # Do not eager load code on boot. This avoids loading your whole application # just for the purpose of running a single test. If you are using a tool that # preloads Rails for running tests, you may have to set it to true. config.eager_load = false # Configure static file server for tests with Cache-Control for performance. config.serve_static_files = true config.static_cache_control = 'public, max-age=3600' # Show full error reports and disable caching. config.consider_all_requests_local = true config.action_controller.perform_caching = false # Raise exceptions instead of rendering exception templates. config.action_dispatch.show_exceptions = false # Disable request forgery protection in test environment. config.action_controller.allow_forgery_protection = false # Tell Action Mailer not to deliver emails to the real world. # The :test delivery method accumulates sent emails in the # ActionMailer::Base.deliveries array. config.action_mailer.delivery_method = :test # Randomize the order test cases are executed. config.active_support.test_order = :random # Print deprecation notices to the stderr. config.active_support.deprecation = :stderr # Raises error for missing translations # config.action_view.raise_on_missing_translations = true end
SquareSquash/web/config/environments/test.rb/0
{ "file_path": "SquareSquash/web/config/environments/test.rb", "repo_id": "SquareSquash", "token_count": 824 }
99
--- by_extension: .ant: xml .applejs: javascript .as: actionscript3 .as3: actionscript3 .atom: xml .atom.erb: ! 'ruby; html-script: true' .bash: shell .builder: ruby .c: cpp .cc: cpp .cf: coldfusion .cpp: cpp .cs: c-sharp .css: css .diff: diff .erl: erlang .es: actionscript3 .fx: javafx .gemspec: ruby .groovy: groovy .h: obj-c .hpp: cpp .htm: xml .html: xml .html.erb: ! 'ruby; html-script: true' .java: java .jnlp: xml .jruby: ruby .js: javascript .js2: actionscript3 .json: javascript .m: obj-c .pas: delphi .patch: diff .pch: obj-c .php: ! 'php; html-script: true' .pl: perl .pm: perl .ps: powershell .py: python .rake: ruby .rb: ruby .rhtml: ! 'ruby; html-script: true' .rjs: ruby .rss: xml .rss.erb: ! 'ruby; html-script: true' .ru: ruby .rxml: ruby .sass: sass .scala: scala .scpt: applescript .scss: sass .sh: shell .shtm: xml .shtml: xml .sql: sql .vb: vb .wsdl: xml .xml: xml .xml.erb: ! 'ruby; html-script: true' .xsl: xml .xslt: xml .yaml: yaml .yml: yaml by_filename: Capfile: ruby Gemfile: ruby Rakefile: ruby default: plain
SquareSquash/web/data/brushes.yml/0
{ "file_path": "SquareSquash/web/data/brushes.yml", "repo_id": "SquareSquash", "token_count": 545 }
100
--- description: | Upload Java deobfuscation data to Squash. This data typically comes from a renamelog.xml file generated by yGuard, and is parsed and serialized using the `squash_java_deobfuscator` gem. responseCodes: - status: 422 successful: false description: | * Invalid deobfuscation data was provided. * Missing required API parameter. - status: 403 successful: false description: Unknown API key. - status: 404 successful: false description: | * Unknown build number. * Unknown environment name. - status: 201 successful: true requestParameters: properties: namespace: description: | The `Squash::Java::Namespace` object (generated using the `squash_java_deobfuscator` gem), YAML-serialized, then gzipped, then base 64-encoded. required: true type: string example: "eJxj4ci3kgouLE0szvBKLEu0svJLzE0tLkhMTmW3EnAoKMrMzSzJLEstzrfi\nCE4tYbPicsgAKq1msBJ2ACrKTkxPjS/Kzy8pzrdmZ7PmqGYAABwOGY8=\n" api_key: description: Your project's API key. required: true type: string example: 22c09d74-1882-4029-9699-af4c57ed060c environment: description: The environment name. required: true type: string example: production build: description: | The internal build number of the release this deobfuscation data pertains to. required: true type: string example: '6314'
SquareSquash/web/doc/fdoc/deobfuscation-POST.fdoc/0
{ "file_path": "SquareSquash/web/doc/fdoc/deobfuscation-POST.fdoc", "repo_id": "SquareSquash", "token_count": 577 }
101
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. root = exports ? this # Adds behavior to a search or filter field. The handler is executed when the # user stops typing for one second. # class root.DynamicSearchField # Creates a new manager for a dynamic search field. # # @param [jQuery element array] element The INPUT field to make dynamic. # @param [function] handler The handler to execute. # constructor: (@element, @handler) -> @element.keypress (e) => return false if e.charCode == 13 @element.stopTime() @element.oneTime 1000, 'search-update', => @handler(@element.val()) @element.submit (e) -> e.stopPropagation() e.preventDefault() false
SquareSquash/web/lib/assets/javascripts/dynamic_search_field.js.coffee/0
{ "file_path": "SquareSquash/web/lib/assets/javascripts/dynamic_search_field.js.coffee", "repo_id": "SquareSquash", "token_count": 403 }
102
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } fieldset { -webkit-margin-start: 0; -webkit-margin-end: 0; -webkit-padding-before: 0; -webkit-padding-start: 0; -webkit-padding-end: 0; -webkit-padding-after: 0; }
SquareSquash/web/lib/assets/stylesheets/reset.css/0
{ "file_path": "SquareSquash/web/lib/assets/stylesheets/reset.css", "repo_id": "SquareSquash", "token_count": 544 }
103
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # This class sanitizes exception messages using the `data/message_templates.yml` # file. This file is a hash that maps exception class names to an array of # two-element arrays. The first element is a regex matching possible exception # messages, and the second element is a sanitized string to be used instead of # the exception message. # # This class serves two main purposes: # # * to reduce SQL errors to a common format free of query-specific data, so they # can be grouped together ({#sanitized_message}), and # * to remove the query portion of an SQL statement, in particular sensitive # information ({#matched_substring}). # # It is not explicitly required that the error messages being matched be SQL # errors, but those are most applicable. # # There are scripts in the `script` directory for updating the # `message_templates.yml` file with updated error message text. class MessageTemplateMatcher include Singleton # Given an error message like # # ```` # Duplicate entry 'foo@example.com' for key 'index_users_on_email': UPDATE # `users` SET `name` = 'Sancho Sample', `crypted_password` = '349857346384697346', # `updated_at` = '2012-09-23 21:18:37', `email` = 'foo@example.com' WHERE # `id` = 123456 -- app/controllers/api/v1/user_controller.rb:35 # ```` # # this method returns only the error portion of the message, without replacing # query-specific information: # # ```` # Duplicate entry 'foo@example.com' for key 'index_users_on_email' # ```` # # This method is useful for removing PII that would appear in a full query but # not an error message. # # Returns `message` unmodified if there is no match. # # @param [String] class_name The name of the exception class. # @param [String] message The exception message. # @return [String] The exception message, error portion only, or the original # message if no match was found. def matched_substring(class_name, message) format_iterator(class_name) do |rx, _| match = message.scan(rx).first return match if match end return message end # Given an error message like # # ```` # Duplicate entry 'foo@example.com' for key 'index_users_on_email': UPDATE # `users` SET `name` = 'Sancho Sample', `crypted_password` = '349857346384697346', # `updated_at` = '2012-09-23 21:18:37', `email` = 'foo@example.com' WHERE # `id` = 123456 -- app/controllers/api/v1/user_controller.rb:35 # ```` # # this method returns only the error portion of the message, with all # query-specific information filtered: # # ```` # Duplicate entry '[STRING]' for key '[STRING]' # ```` # # This method is useful for removing PII and grouping similar exceptions under # the same filtered message. # # Returns `nil` if there is no match. # # @param [String] class_name The name of the exception class. # @param [String] message The exception message. # @return [String] The filtered exception message, or `nil` if no match was # found. def sanitized_message(class_name, message) format_iterator(class_name) do |rx, replacement| return replacement if message =~ rx end return nil end private def format_iterator(class_name, &block) (message_templates[class_name] || []).each do |pair| if pair.kind_of?(String) format_iterator pair, &block elsif pair.kind_of?(Array) yield *pair end end end def message_templates @message_templates ||= @message_templates ||= YAML.load_file(Rails.root.join('data', 'message_templates.yml')) end end
SquareSquash/web/lib/message_template_matcher.rb/0
{ "file_path": "SquareSquash/web/lib/message_template_matcher.rb", "repo_id": "SquareSquash", "token_count": 1328 }
104
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Simple worker class that emails everyone on a {Bug}'s `notify_on_deploy` list # of a new Deploy. class DeployNotificationMailer include BackgroundRunner::Job # Creates a new instance and sends notification emails. # # @param [Fixnum] bug_id The ID of a Bug that a Deploy just fixed. def self.perform(bug_id) new(Bug.find(bug_id)).perform end # Creates a new worker instance. # # @param [Bug] bug A Bug that a Deploy just fixed. def initialize(bug) @bug = bug end # Emails all Users who enabled fix-deployed notifications. def perform User.where(id: @bug.notify_on_deploy).each do |user| NotificationMailer.deploy(@bug, user).deliver_now end end end
SquareSquash/web/lib/workers/deploy_notification_mailer.rb/0
{ "file_path": "SquareSquash/web/lib/workers/deploy_notification_mailer.rb", "repo_id": "SquareSquash", "token_count": 419 }
105
<!DOCTYPE html> <html> <head> <title>The page you were looking for doesn't exist (404)</title> <style type="text/css"> body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; } div.dialog { width: 25em; padding: 0 4em; margin: 4em auto 0 auto; border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; } h1 { font-size: 100%; color: #f00; line-height: 1.5em; } </style> </head> <body> <!-- This file lives in public/404.html --> <div class="dialog"> <h1>The page you were looking for doesn't exist.</h1> <p>You may have mistyped the address or the page may have moved.</p> </div> </body> </html>
SquareSquash/web/public/404.html/0
{ "file_path": "SquareSquash/web/public/404.html", "repo_id": "SquareSquash", "token_count": 302 }
106
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'rails_helper' RSpec.describe Api::V1Controller, type: :controller do describe "#notify" do before :all do Project.where(repository_url: 'https://github.com/RISCfuture/better_caller.git').delete_all @project = FactoryGirl.create(:project, repository_url: 'https://github.com/RISCfuture/better_caller.git') @commit = @project.repo.object('HEAD^') # this will be a valid exception but with a stack trace that doesn't make # sense in the context of the project (the files don't actually exist in the # repo). this will test the scenarios where no blamed commits can be found. @exception = nil begin raise ArgumentError, "Well crap" rescue @exception = $! end @line = @exception.backtrace.first.split(':')[1].to_i # get the line number of the first line of the backtrace # this is a valid stack trace in the context of the repo, and will produce # valid blamed commits. @valid_trace = [ ["lib/better_caller/extensions.rb", 11, 'set_better_backtrace'], ["lib/better_caller/extensions.rb", 4, 'set_better_backtrace'], ["lib/better_caller/extensions.rb", 2, nil] ] end before :each do Bug.delete_all @valid_params = Squash::Ruby.send(:exception_info_hash, @exception, Time.now.utc, {}, nil).deep_clone @valid_params['occurred_at'] = @valid_params['occurred_at'].iso8601 @valid_params.merge!('api_key' => @project.api_key, 'environment' => 'production', 'revision' => @commit.sha, 'user_data' => {'foo' => 'bar'}) end it "should return 403 given an invalid API key" do post :notify, @valid_params.merge('api_key' => 'not-found') expect(response.status).to eql(403) end it "should return 422 given invalid parameters" do post :notify, @valid_params.merge('client' => '') expect(response.status).to eql(422) end it "should start a worker thread and return 200 given valid parameters" do mock = double('OccurrencesWorker') allow(OccurrencesWorker).to receive(:new).and_return(mock) allow(Thread).to receive(:new).and_yield expect(mock).to receive(:perform).once post :notify, @valid_params expect(response.status).to eql(200) end end describe "#deploy" do before :all do Project.where(repository_url: 'https://github.com/RISCfuture/better_caller.git').delete_all @project = FactoryGirl.create(:project, repository_url: 'https://github.com/RISCfuture/better_caller.git') end before :each do @env = FactoryGirl.create(:environment, project: @project) @params = { 'project' => {'api_key' => @env.project.api_key}, 'environment' => {'name' => @env.name}, 'deploy' => { 'deployed_at' => (@time = Time.now.utc).iso8601, 'revision' => (@rev = @project.repo.object('HEAD').sha), 'hostname' => 'myhost.local' } } end %w( project environment deploy ).each do |key| it "should require the #{key} key" do post :deploy, @params.merge(key => ' ') expect(response.status).to eql(422) end end it "should return 403 if the API key is invalid" do @params['project'].merge!('api_key' => 'not-found') post :deploy, @params expect(response.status).to eql(403) end it "should create a new environment if one doesn't exist with that name" do @params['environment'].merge!('name' => 'new') post :deploy, @params env = @project.environments.with_name('new').first! expect(env).not_to be_nil expect(env.deploys.count).to eql(1) end it "should create a deploy with the given parameters" do @env.deploys.delete_all post :deploy, @params expect(@env.deploys.count).to eql(1) expect(@env.deploys(true).first.deployed_at.to_i).to eql(@time.to_i) expect(@env.deploys.first.revision).to eql(@rev) expect(@env.deploys.first.hostname).to eql('myhost.local') end end describe "#symbolication" do it "should return 422 if the symbolication param is not provided" do post :symbolication, format: 'json' expect(response.status).to eql(422) end it "should create a new symbolication" do Symbolication.delete_all uuid = SecureRandom.uuid params = { 'symbolications' => [ 'uuid' => uuid, 'symbols' => Base64.encode64(Zlib::Deflate.deflate(Squash::Symbolicator::Symbols.new.to_yaml)), 'lines' => Base64.encode64(Zlib::Deflate.deflate(Squash::Symbolicator::Lines.new.to_yaml)) ] } post :symbolication, params expect(response.status).to eql(201) expect(Symbolication.count).to eql(1) expect(Symbolication.first.uuid).to eql(uuid) end end describe "#sourcemap" do before :all do Project.where(repository_url: 'https://github.com/RISCfuture/better_caller.git').delete_all @project = FactoryGirl.create(:project, repository_url: 'https://github.com/RISCfuture/better_caller.git') end before :each do @env = FactoryGirl.create(:environment, project: @project) @map = FactoryGirl.build(:source_map) @params = { 'sourcemap' => @map.send(:read_attribute, :map), 'api_key' => @project.api_key, 'environment' => @env.name, 'revision' => (@rev = @project.repo.object('HEAD').sha), 'from' => 'hosted', 'to' => 'original' } end %w( sourcemap api_key environment revision ).each do |key| it "should require the #{key} key" do post :sourcemap, @params.merge(key => ' ') expect(response.status).to eql(422) end end it "should return 403 if the API key is invalid" do post :sourcemap, @params.merge('api_key' => 'not-found') expect(response.status).to eql(403) end it "should create a new environment if one doesn't exist with that name" do post :sourcemap, @params.merge('environment' => 'new') env = @project.environments.with_name('new').first! expect(env).not_to be_nil expect(env.source_maps.count).to eql(1) end it "should create a sourcemap with the given parameters" do @env.source_maps.delete_all post :sourcemap, @params expect(@env.source_maps.count).to eql(1) expect(@env.source_maps(true).first.revision).to eql(@rev) end end describe "#deobfuscation" do before :all do Project.where(repository_url: 'https://github.com/RISCfuture/better_caller.git').delete_all @project = FactoryGirl.create(:project, repository_url: 'https://github.com/RISCfuture/better_caller.git') end before :each do @env = FactoryGirl.create(:environment, project: @project) @release = FactoryGirl.create(:release, environment: @env) @ns = FactoryGirl.build(:obfuscation_map) @params = { 'namespace' => @ns.send(:read_attribute, :namespace), 'api_key' => @project.api_key, 'environment' => @env.name, 'build' => @release.build } end %w( namespace api_key environment build ).each do |key| it "should require the #{key} key" do post :deobfuscation, @params.merge(key => ' ') expect(response.status).to eql(422) end end it "should return 403 if the API key is invalid" do post :deobfuscation, @params.merge('api_key' => 'not-found') expect(response.status).to eql(403) end it "should return 404 if the environment name is unknown" do post :deobfuscation, @params.merge('environment' => 'new') expect(response.status).to eql(404) end it "should return 404 if the build number is unknown" do post :deobfuscation, @params.merge('build' => 'nil') expect(response.status).to eql(404) end it "should create an obfuscation map with the given parameters" do post :deobfuscation, @params expect(@release.obfuscation_map(true).send(:read_attribute, :namespace)).to eql(@ns.send(:read_attribute, :namespace)) end end end
SquareSquash/web/spec/controllers/api/v1_controller_spec.rb/0
{ "file_path": "SquareSquash/web/spec/controllers/api/v1_controller_spec.rb", "repo_id": "SquareSquash", "token_count": 3762 }
107
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'rails_helper' RSpec.describe SearchController, type: :controller do before :each do @project = FactoryGirl.create(:project, name: 'Example Project') @environment = FactoryGirl.create(:environment, name: 'production', project: @project) @bug = FactoryGirl.create(:bug, environment: @environment) @occurrence = FactoryGirl.create(:rails_occurrence, bug: @bug) FactoryGirl.create :project, name: 'Example Other' FactoryGirl.create :environment, name: 'prodother', project: @project FactoryGirl.create :environment, name: 'producother' end describe "#search" do context "[user]" do it "should respond with the URL for a user given a @username" do user = FactoryGirl.create(:user, username: 'foobar', first_name: 'Foo', last_name: 'Bar') get :search, query: '@foobar', format: 'json' expect(response.status).to eql(200) expect(response.body).to eql(user_url(user)) end it "should respond with nil for an unknown username" do get :search, query: '@unknown', format: 'json' expect(response.status).to eql(200) expect(response.body).to be_blank end end context "[project]" do it "should respond with the URL for a project given a project slug" do get :search, query: 'example-project' expect(response.status).to eql(200) expect(response.body).to eql(project_url(@project)) end it "should respond with the URL for a project given a project prefix" do get :search, query: 'example-p' expect(response.status).to eql(200) expect(response.body).to eql(project_url(@project)) end it "should respond with nil given an unknown project" do get :search, query: 'unknown' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an ambiguous project prefix" do get :search, query: 'exam' expect(response.status).to eql(200) expect(response.body).to be_blank end end context "[environment]" do it "should respond with the URL for an environment given a project & environment slug" do get :search, query: 'example-project production' expect(response.status).to eql(200) expect(response.body).to eql(project_environment_bugs_url(@project, @environment)) end it "should respond with the URL for an environment given a project & environment prefix" do get :search, query: 'example-p product' expect(response.status).to eql(200) expect(response.body).to eql(project_environment_bugs_url(@project, @environment)) end it "should respond with nil given an unknown project" do get :search, query: 'unknown development' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an unknown environment" do get :search, query: 'example-project dev' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an ambiguous project prefix" do get :search, query: 'exam production' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an ambiguous environment prefix" do get :search, query: 'example-project prod' expect(response.status).to eql(200) expect(response.body).to be_blank end end context "[bug]" do it "should respond with the URL for a bug given a project & environment slug and bug number" do get :search, query: 'example-project production 1' expect(response.status).to eql(200) expect(response.body).to eql(project_environment_bug_url(@project, @environment, @bug)) end it "should respond with the URL for a bug given a project & environment prefix and bug number" do get :search, query: 'example-p product 1' expect(response.status).to eql(200) expect(response.body).to eql(project_environment_bug_url(@project, @environment, @bug)) end it "should respond with nil given an unknown project" do get :search, query: 'unknown production 1' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an unknown environment" do get :search, query: 'example-project unknown 1' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an unknown bug number" do get :search, query: 'example-project production 123' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an ambiguous project prefix" do get :search, query: 'exam production 1' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an ambiguous environment prefix" do get :search, query: 'example-project prod 1' expect(response.status).to eql(200) expect(response.body).to be_blank end end context "[occurrence]" do it "should respond with the URL for an occurrence given a project & environment slug and bug & occurrence number" do get :search, query: 'example-project production 1 1' expect(response.status).to eql(200) expect(response.body).to eql(project_environment_bug_occurrence_url(@project, @environment, @bug, @occurrence)) end it "should respond with the URL for an occurrence given a project & environment prefix and a bug & occurrence number" do get :search, query: 'example-p product 1 1' expect(response.status).to eql(200) expect(response.body).to eql(project_environment_bug_occurrence_url(@project, @environment, @bug, @occurrence)) end it "should respond with nil given an unknown project" do get :search, query: 'unknown production 1 1' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an unknown environment" do get :search, query: 'example-project unknown 1 1' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an unknown occurrence number" do get :search, query: 'example-project production 1 2' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an unknown bug number" do get :search, query: 'example-project production 2 1' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an ambiguous project prefix" do get :search, query: 'exam production 1 1' expect(response.status).to eql(200) expect(response.body).to be_blank end it "should respond with nil given an ambiguous environment prefix" do get :search, query: 'example-project prod 1 1' expect(response.status).to eql(200) expect(response.body).to be_blank end end end describe "#suggestions" do before :all do Environment.delete_all Project.delete_all Slug.delete_all User.delete_all Rails.cache.clear end context "[user]" do it "should respond with a list of username suggestions" do foo1 = FactoryGirl.create(:user, username: 'foo1', first_name: 'Foo', last_name: 'One') foo2 = FactoryGirl.create(:user, username: 'foo2', first_name: 'Foo', last_name: 'Two') get :suggestions, query: '@foo', format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)). to eql([ {'user' => JSON.parse(foo1.to_json), 'url' => user_url(foo1), 'type' => 'user'}, {'user' => JSON.parse(foo2.to_json), 'url' => user_url(foo2), 'type' => 'user'}, ]) end end context "[project]" do it "should respond with a list of project suggestions" do Project.delete_all proj1 = FactoryGirl.create(:project, name: 'Project One') proj2 = FactoryGirl.create(:project, name: 'Project Two') get :suggestions, query: 'proj', format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)). to eql([ {'project' => JSON.parse(proj1.to_json), 'url' => project_url(proj1), 'type' => 'project'}, {'project' => JSON.parse(proj2.to_json), 'type' => 'project', 'url' => project_url(proj2)}, ]) end end context "[environment]" do it "should respond with a list of environment suggestions" do proj = FactoryGirl.create(:project, name: 'Another Project') env1 = FactoryGirl.create(:environment, name: 'env1', project: proj) env2 = FactoryGirl.create(:environment, name: 'env2', project: proj) get :suggestions, query: 'another env', format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)). to eql([ {'project' => JSON.parse(proj.to_json), 'environment' => JSON.parse(env1.to_json), 'type' => 'environment', 'url' => project_environment_bugs_url(proj, env1)}, {'project' => JSON.parse(proj.to_json), 'environment' => JSON.parse(env2.to_json), 'type' => 'environment', 'url' => project_environment_bugs_url(proj, env2)}, ]) end it "should respond with an empty list for an unknown project" do get :suggestions, query: 'unknown unknown', format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end end context "[bug]" do before(:all) { @bug = FactoryGirl.create :bug } it "should respond with the bug" do get :suggestions, query: "#{@bug.environment.project.slug} #{@bug.environment.name} #{@bug.number}", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)). to eql([ {'project' => JSON.parse(@bug.environment.project.to_json), 'environment' => JSON.parse(@bug.environment.to_json), 'bug' => JSON.parse(@bug.reload.to_json), 'type' => 'bug', 'url' => project_environment_bug_url(@bug.environment.project, @bug.environment, @bug)}, ]) end it "should respond with an empty list for an unknown project" do get :suggestions, query: "unknown #{@bug.environment.name} #{@bug.number}", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end it "should respond with an empty list for an unknown environment" do get :suggestions, query: "#{@bug.environment.project.slug} unknown #{@bug.number}", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end it "should respond with an empty list for an unknown bug" do get :suggestions, query: "#{@bug.environment.project.slug} #{@bug.environment.name} 123", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end end context "[occurrence]" do before(:all) { @occurrence = FactoryGirl.create(:rails_occurrence) } it "should respond with the occurrence" do get :suggestions, query: "#{@occurrence.bug.environment.project.slug} #{@occurrence.bug.environment.name} #{@occurrence.bug.number} #{@occurrence.number}", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)). to eql([ {'type' => 'occurrence', 'url' => project_environment_bug_occurrence_url(@occurrence.bug.environment.project, @occurrence.bug.environment, @occurrence.bug, @occurrence), 'project' => JSON.parse(@occurrence.bug.environment.project.to_json), 'environment' => JSON.parse(@occurrence.bug.environment.to_json), 'bug' => JSON.parse(@occurrence.bug.to_json), 'occurrence' => JSON.parse(@occurrence.to_json)} ]) end it "should respond with an empty list for an unknown project" do get :suggestions, query: "unknown #{@occurrence.bug.environment.name} #{@occurrence.bug.number} #{@occurrence.number}", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end it "should respond with an empty list for an unknown environment" do get :suggestions, query: "#{@occurrence.bug.environment.project.slug} unknown #{@occurrence.bug.number} #{@occurrence.number}", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end it "should respond with an empty list for an unknown bug" do get :suggestions, query: "#{@occurrence.bug.environment.project.slug} #{@occurrence.bug.environment.name} 123 #{@occurrence.number}", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end it "should respond with an empty list for an unknown occurrence" do get :suggestions, query: "#{@occurrence.bug.environment.project.slug} #{@occurrence.bug.environment.name} #{@occurrence.bug.number} 123", format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end end it "should respond with an empty list for other queries" do get :suggestions, query: 'somethingelse', format: 'json' expect(response.status).to eql(200) expect(JSON.parse(response.body)).to eql([]) end end end
SquareSquash/web/spec/controllers/search_controller_spec.rb/0
{ "file_path": "SquareSquash/web/spec/controllers/search_controller_spec.rb", "repo_id": "SquareSquash", "token_count": 6396 }
108
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'rails_helper' RSpec.describe Blamer::Simple do it "should set the bug's file and line using git-blame" do @project = FactoryGirl.create(:project) @env = FactoryGirl.create(:environment, project: @project) @shell_bug = FactoryGirl.build(:bug, environment: @env) @occurrence = FactoryGirl.build(:rails_occurrence, bug: @shell_bug, backtraces: [{"name" => "Thread 0", "faulted" => true, "backtrace" => [{"file" => "/library/file", "line" => 10, "symbol" => "foo"}, {"file" => "ext/better_caller.c", "line" => 50, "symbol" => "foo"}, {"file" => "ext/better_caller.c", "line" => 46, "symbol" => "foo"}, {"file" => "ext/better_caller.c", "line" => 31, "symbol" => "foo"}, {"file" => "ext/better_caller.c", "line" => 27, "symbol" => "foo"}]}], revision: '2dc20c984283bede1f45863b8f3b4dd9b5b554cc') bug = Blamer::Simple.new(@occurrence).find_or_create_bug! expect(bug.file).to eql('[S] 10e95a0abb419d791a30d5dd0fe163b6f1c2bbf1e10ef0a303f3315cd149bcc5') expect(bug.special_file?).to eql(true) expect(bug.line).to eql(1) expect(bug.blamed_revision).to be_nil end it "should not touch the Git repo at all when processing an occurrence" do Project.where(repository_url: 'https://github.com/RISCfuture/better_caller.git').delete_all @project = FactoryGirl.create(:project, repository_url: 'https://github.com/RISCfuture/better_caller.git') @commit = @project.repo.object('HEAD^') # this will be a valid exception but with a stack trace that doesn't make # sense in the context of the project (the files don't actually exist in the # repo). this will test the scenarios where no blamed commits can be found. @exception = nil begin raise ArgumentError, "Well crap" rescue @exception = $! end @line = @exception.backtrace.first.split(':')[1].to_i # get the line number of the first line of the backtrace Bug.delete_all @params = Squash::Ruby.send(:exception_info_hash, @exception, Time.now, {}, nil) @params.merge!('api_key' => @project.api_key, 'environment' => 'production', 'revision' => @commit.sha, 'user_data' => {'foo' => 'bar'}) expect(@project).not_to receive :repo OccurrencesWorker.new(@params).perform end end
SquareSquash/web/spec/lib/blamer/simple_spec.rb/0
{ "file_path": "SquareSquash/web/spec/lib/blamer/simple_spec.rb", "repo_id": "SquareSquash", "token_count": 2302 }
109
# Copyright 2014 Square Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'rails_helper' RSpec.describe "/users", type: :routing do describe "/:id [GET]" do it "should route to usernames with dots in them" do expect(get: '/users/user.dot'). to route_to( controller: 'users', action: 'show', id: 'user.dot' ) end it "should route to usernames ending in .json" do expect(get: '/users/user.json'). to route_to( controller: 'users', action: 'show', id: 'user.json' ) end end end
SquareSquash/web/spec/routing/users_spec.rb/0
{ "file_path": "SquareSquash/web/spec/routing/users_spec.rb", "repo_id": "SquareSquash", "token_count": 515 }
110
/* Flot plugin for computing bottoms for filled line and bar charts. Copyright (c) 2007-2012 IOLA and Ole Laursen. Licensed under the MIT license. The case: you've got two series that you want to fill the area between. In Flot terms, you need to use one as the fill bottom of the other. You can specify the bottom of each data point as the third coordinate manually, or you can use this plugin to compute it for you. In order to name the other series, you need to give it an id, like this: var dataset = [ { data: [ ... ], id: "foo" } , // use default bottom { data: [ ... ], fillBetween: "foo" }, // use first dataset as bottom ]; $.plot($("#placeholder"), dataset, { lines: { show: true, fill: true }}); As a convenience, if the id given is a number that doesn't appear as an id in the series, it is interpreted as the index in the array instead (so fillBetween: 0 can also mean the first series). Internally, the plugin modifies the datapoints in each series. For line series, extra data points might be inserted through interpolation. Note that at points where the bottom line is not defined (due to a null point or start/end of line), the current line will show a gap too. The algorithm comes from the jquery.flot.stack.js plugin, possibly some code could be shared. */ (function ( $ ) { var options = { series: { fillBetween: null // or number } }; function init( plot ) { function findBottomSeries( s, allseries ) { var i; for ( i = 0; i < allseries.length; ++i ) { if ( allseries[ i ].id === s.fillBetween ) { return allseries[ i ]; } } if ( typeof s.fillBetween === "number" ) { if ( s.fillBetween < 0 || s.fillBetween >= allseries.length ) { return null; } return allseries[ s.fillBetween ]; } return null; } function computeFillBottoms( plot, s, datapoints ) { if ( s.fillBetween == null ) { return; } var other = findBottomSeries( s, plot.getData() ); if ( !other ) { return; } var ps = datapoints.pointsize, points = datapoints.points, otherps = other.datapoints.pointsize, otherpoints = other.datapoints.points, newpoints = [], px, py, intery, qx, qy, bottom, withlines = s.lines.show, withbottom = ps > 2 && datapoints.format[2].y, withsteps = withlines && s.lines.steps, fromgap = true, i = 0, j = 0, l, m; while ( true ) { if ( i >= points.length ) { break; } l = newpoints.length; if ( points[ i ] == null ) { // copy gaps for ( m = 0; m < ps; ++m ) { newpoints.push( points[ i + m ] ); } i += ps; } else if ( j >= otherpoints.length ) { // for lines, we can't use the rest of the points if ( !withlines ) { for ( m = 0; m < ps; ++m ) { newpoints.push( points[ i + m ] ); } } i += ps; } else if ( otherpoints[ j ] == null ) { // oops, got a gap for ( m = 0; m < ps; ++m ) { newpoints.push( null ); } fromgap = true; j += otherps; } else { // cases where we actually got two points px = points[ i ]; py = points[ i + 1 ]; qx = otherpoints[ j ]; qy = otherpoints[ j + 1 ]; bottom = 0; if ( px === qx ) { for ( m = 0; m < ps; ++m ) { newpoints.push( points[ i + m ] ); } //newpoints[ l + 1 ] += qy; bottom = qy; i += ps; j += otherps; } else if ( px > qx ) { // we got past point below, might need to // insert interpolated extra point if ( withlines && i > 0 && points[ i - ps ] != null ) { intery = py + ( points[ i - ps + 1 ] - py ) * ( qx - px ) / ( points[ i - ps ] - px ); newpoints.push( qx ); newpoints.push( intery ); for ( m = 2; m < ps; ++m ) { newpoints.push( points[ i + m ] ); } bottom = qy; } j += otherps; } else { // px < qx // if we come from a gap, we just skip this point if ( fromgap && withlines ) { i += ps; continue; } for ( m = 0; m < ps; ++m ) { newpoints.push( points[ i + m ] ); } // we might be able to interpolate a point below, // this can give us a better y if ( withlines && j > 0 && otherpoints[ j - otherps ] != null ) { bottom = qy + ( otherpoints[ j - otherps + 1 ] - qy ) * ( px - qx ) / ( otherpoints[ j - otherps ] - qx ); } //newpoints[l + 1] += bottom; i += ps; } fromgap = false; if ( l !== newpoints.length && withbottom ) { newpoints[ l + 2 ] = bottom; } } // maintain the line steps invariant if ( withsteps && l !== newpoints.length && l > 0 && newpoints[ l ] !== null && newpoints[ l ] !== newpoints[ l - ps ] && newpoints[ l + 1 ] !== newpoints[ l - ps + 1 ] ) { for (m = 0; m < ps; ++m) { newpoints[ l + ps + m ] = newpoints[ l + m ]; } newpoints[ l + 1 ] = newpoints[ l - ps + 1 ]; } } datapoints.points = newpoints; } plot.hooks.processDatapoints.push( computeFillBottoms ); } $.plot.plugins.push({ init: init, options: options, name: "fillbetween", version: "1.0" }); })(jQuery);
SquareSquash/web/vendor/assets/javascripts/flot/fillbetween.js/0
{ "file_path": "SquareSquash/web/vendor/assets/javascripts/flot/fillbetween.js", "repo_id": "SquareSquash", "token_count": 2250 }
111
/** * SyntaxHighlighter * http://alexgorbatchev.com/SyntaxHighlighter * * SyntaxHighlighter is donationware. If you are using it, please donate. * http://alexgorbatchev.com/SyntaxHighlighter/donate.html * * @version * 3.0.83 (Wed, 12 Feb 2014 03:42:24 GMT) * * @copyright * Copyright (C) 2004-2013 Alex Gorbatchev. * * @license * Dual licensed under the MIT and GPL licenses. */ ;(function() { // CommonJS SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null); function Brush() { // Contributed by David Simmons-Duffin and Marty Kube var funcs = 'abs accept alarm atan2 bind binmode chdir chmod chomp chop chown chr ' + 'chroot close closedir connect cos crypt defined delete each endgrent ' + 'endhostent endnetent endprotoent endpwent endservent eof exec exists ' + 'exp fcntl fileno flock fork format formline getc getgrent getgrgid ' + 'getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr ' + 'getnetbyname getnetent getpeername getpgrp getppid getpriority ' + 'getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid ' + 'getservbyname getservbyport getservent getsockname getsockopt glob ' + 'gmtime grep hex index int ioctl join keys kill lc lcfirst length link ' + 'listen localtime lock log lstat map mkdir msgctl msgget msgrcv msgsnd ' + 'oct open opendir ord pack pipe pop pos print printf prototype push ' + 'quotemeta rand read readdir readline readlink readpipe recv rename ' + 'reset reverse rewinddir rindex rmdir scalar seek seekdir select semctl ' + 'semget semop send setgrent sethostent setnetent setpgrp setpriority ' + 'setprotoent setpwent setservent setsockopt shift shmctl shmget shmread ' + 'shmwrite shutdown sin sleep socket socketpair sort splice split sprintf ' + 'sqrt srand stat study substr symlink syscall sysopen sysread sysseek ' + 'system syswrite tell telldir time times tr truncate uc ucfirst umask ' + 'undef unlink unpack unshift utime values vec wait waitpid warn write ' + // feature 'say'; var keywords = 'bless caller continue dbmclose dbmopen die do dump else elsif eval exit ' + 'for foreach goto if import last local my next no our package redo ref ' + 'require return sub tie tied unless untie until use wantarray while ' + // feature 'given when default ' + // Try::Tiny 'try catch finally ' + // Moose 'has extends with before after around override augment'; this.regexList = [ { regex: /(<<|&lt;&lt;)((\w+)|(['"])(.+?)\4)[\s\S]+?\n\3\5\n/g, css: 'string' }, // here doc (maybe html encoded) { regex: /#.*$/gm, css: 'comments' }, { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang { regex: /-?\w+(?=\s*=(>|&gt;))/g, css: 'string' }, // fat comma // is this too much? { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators () { regex: /\bq[qwxr]?\{[\s\S]*?\}/g, css: 'string' }, // quote-like operators {} { regex: /\bq[qwxr]?\[[\s\S]*?\]/g, css: 'string' }, // quote-like operators [] { regex: /\bq[qwxr]?(<|&lt;)[\s\S]*?(>|&gt;)/g, css: 'string' }, // quote-like operators <> { regex: /\bq[qwxr]?([^\w({<[])[\s\S]*?\1/g, css: 'string' }, // quote-like operators non-paired { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // currently ignoring single quote package separator and utf8 names { regex: /(?:&amp;|[$@%*]|\$#)\$?[a-zA-Z_](\w+|::)*/g, css: 'variable' }, { regex: /\b__(?:END|DATA)__\b[\s\S]*$/g, css: 'comments' }, // don't capture the newline after =cut so that =cut\n\n=head1 will start a new pod section { regex: /(^|\n)=\w[\s\S]*?(\n=cut\s*(?=\n)|$)/g, css: 'comments' }, // pod { regex: new RegExp(this.getKeywords(funcs), 'gm'), css: 'functions' }, { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } ]; this.forHtmlScript(SyntaxHighlighter.regexLib.phpScriptTags); } Brush.prototype = new SyntaxHighlighter.Highlighter(); Brush.aliases = ['perl', 'Perl', 'pl']; SyntaxHighlighter.brushes.Perl = Brush; // CommonJS typeof(exports) != 'undefined' ? exports.Brush = Brush : null; })();
SquareSquash/web/vendor/assets/javascripts/sh/shBrushPerl.js/0
{ "file_path": "SquareSquash/web/vendor/assets/javascripts/sh/shBrushPerl.js", "repo_id": "SquareSquash", "token_count": 1754 }
112
/** * SyntaxHighlighter * http://alexgorbatchev.com/SyntaxHighlighter * * SyntaxHighlighter is donationware. If you are using it, please donate. * http://alexgorbatchev.com/SyntaxHighlighter/donate.html * * @version * 3.0.83 (Wed, 12 Feb 2014 03:42:24 GMT) * * @copyright * Copyright (C) 2004-2013 Alex Gorbatchev. * * @license * Dual licensed under the MIT and GPL licenses. */ var dp = { SyntaxHighlighter : {} }; dp.SyntaxHighlighter = { parseParams: function( input, showGutter, showControls, collapseAll, firstLine, showColumns ) { function getValue(list, name) { var regex = XRegExp('^' + name + '\\[(?<value>\\w+)\\]$', 'gi'), match = null ; for (var i = 0; i < list.length; i++) if ((match = XRegExp.exec(list[i], regex)) != null) return match.value; return null; }; function defaultValue(value, def) { return value != null ? value : def; }; function asString(value) { return value != null ? value.toString() : null; }; var parts = input.split(':'), brushName = parts[0], options = {}, straight = { 'true' : true } reverse = { 'true' : false }, result = null, defaults = SyntaxHighlighter.defaults ; for (var i in parts) options[parts[i]] = 'true'; showGutter = asString(defaultValue(showGutter, defaults.gutter)); showControls = asString(defaultValue(showControls, defaults.toolbar)); collapseAll = asString(defaultValue(collapseAll, defaults.collapse)); showColumns = asString(defaultValue(showColumns, defaults.ruler)); firstLine = asString(defaultValue(firstLine, defaults['first-line'])); return { brush : brushName, gutter : defaultValue(reverse[options.nogutter], showGutter), toolbar : defaultValue(reverse[options.nocontrols], showControls), collapse : defaultValue(straight[options.collapse], collapseAll), // ruler : defaultValue(straight[options.showcolumns], showColumns), 'first-line' : defaultValue(getValue(parts, 'firstline'), firstLine) }; }, HighlightAll: function( name, showGutter /* optional */, showControls /* optional */, collapseAll /* optional */, firstLine /* optional */, showColumns /* optional */ ) { function findValue() { var a = arguments; for (var i = 0; i < a.length; i++) { if (a[i] === null) continue; if (typeof(a[i]) == 'string' && a[i] != '') return a[i] + ''; if (typeof(a[i]) == 'object' && a[i].value != '') return a[i].value + ''; } return null; }; function findTagsByName(list, name, tagName) { var tags = document.getElementsByTagName(tagName); for (var i = 0; i < tags.length; i++) if (tags[i].getAttribute('name') == name) list.push(tags[i]); } var elements = [], highlighter = null, registered = {}, propertyName = 'innerHTML' ; // for some reason IE doesn't find <pre/> by name, however it does see them just fine by tag name... findTagsByName(elements, name, 'pre'); findTagsByName(elements, name, 'textarea'); if (elements.length === 0) return; for (var i = 0; i < elements.length; i++) { var element = elements[i], params = findValue( element.attributes['class'], element.className, element.attributes['language'], element.language ), language = '' ; if (params === null) continue; params = dp.SyntaxHighlighter.parseParams( params, showGutter, showControls, collapseAll, firstLine, showColumns ); SyntaxHighlighter.highlight(params, element); } } };
SquareSquash/web/vendor/assets/javascripts/sh/shLegacy.js/0
{ "file_path": "SquareSquash/web/vendor/assets/javascripts/sh/shLegacy.js", "repo_id": "SquareSquash", "token_count": 1581 }
113
/** * SyntaxHighlighter * http://alexgorbatchev.com/SyntaxHighlighter * * SyntaxHighlighter is donationware. If you are using it, please donate. * http://alexgorbatchev.com/SyntaxHighlighter/donate.html * * @version * 3.0.83 (Wed, 12 Feb 2014 03:42:24 GMT) * * @copyright * Copyright (C) 2004-2013 Alex Gorbatchev. * * @license * Dual licensed under the MIT and GPL licenses. */ .syntaxhighlighter{background-color:#121212 !important;} .syntaxhighlighter .line.alt1{background-color:#121212 !important;} .syntaxhighlighter .line.alt2{background-color:#121212 !important;} .syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#2c2c29 !important;} .syntaxhighlighter .line.highlighted.number{color:white !important;} .syntaxhighlighter table caption{color:white !important;} .syntaxhighlighter table td.code .container textarea{background:#121212;color:white;} .syntaxhighlighter .gutter{color:#afafaf !important;} .syntaxhighlighter .gutter .line{border-right:3px solid #3185b9 !important;} .syntaxhighlighter .gutter .line.highlighted{background-color:#3185b9 !important;color:#121212 !important;} .syntaxhighlighter.printing .line .content{border:none !important;} .syntaxhighlighter.collapsed{overflow:visible !important;} .syntaxhighlighter.collapsed .toolbar{color:#3185b9 !important;background:black !important;border:1px solid #3185b9 !important;} .syntaxhighlighter.collapsed .toolbar a{color:#3185b9 !important;} .syntaxhighlighter.collapsed .toolbar a:hover{color:#d01d33 !important;} .syntaxhighlighter .toolbar{color:white !important;background:#3185b9 !important;border:none !important;} .syntaxhighlighter .toolbar a{color:white !important;} .syntaxhighlighter .toolbar a:hover{color:#96daff !important;} .syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:white !important;} .syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#696854 !important;} .syntaxhighlighter .string,.syntaxhighlighter .string a{color:#e3e658 !important;} .syntaxhighlighter .keyword{color:#d01d33 !important;} .syntaxhighlighter .preprocessor{color:#435a5f !important;} .syntaxhighlighter .variable{color:#898989 !important;} .syntaxhighlighter .value{color:#009900 !important;} .syntaxhighlighter .functions{color:#aaaaaa !important;} .syntaxhighlighter .constants{color:#96daff !important;} .syntaxhighlighter .script{font-weight:bold !important;color:#d01d33 !important;background-color:none !important;} .syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:#ffc074 !important;} .syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:#4a8cdb !important;} .syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:#96daff !important;} .syntaxhighlighter .functions{font-weight:bold !important;}
SquareSquash/web/vendor/assets/stylesheets/sh/shThemeFadeToGrey.css/0
{ "file_path": "SquareSquash/web/vendor/assets/stylesheets/sh/shThemeFadeToGrey.css", "repo_id": "SquareSquash", "token_count": 931 }
114
import { Component } from "@angular/core"; import { AppComponent as BaseAppComponent } from "src/app/app.component"; import { DisablePersonalVaultExportPolicy } from "./policies/disable-personal-vault-export.component"; import { MaximumVaultTimeoutPolicy } from "./policies/maximum-vault-timeout.component"; @Component({ selector: "app-root", templateUrl: "../../../src/app/app.component.html", }) export class AppComponent extends BaseAppComponent { ngOnInit() { super.ngOnInit(); this.policyListService.addPolicies([ new MaximumVaultTimeoutPolicy(), new DisablePersonalVaultExportPolicy(), ]); } }
bitwarden/web/bitwarden_license/src/app/app.component.ts/0
{ "file_path": "bitwarden/web/bitwarden_license/src/app/app.component.ts", "repo_id": "bitwarden", "token_count": 201 }
115
import { Component } from "@angular/core"; import { ActivatedRoute } from "@angular/router"; import { ProviderService } from "jslib-common/abstractions/provider.service"; @Component({ selector: "provider-settings", templateUrl: "settings.component.html", }) export class SettingsComponent { constructor(private route: ActivatedRoute, private providerService: ProviderService) {} ngOnInit() { this.route.parent.params.subscribe(async (params) => { await this.providerService.get(params.providerId); }); } }
bitwarden/web/bitwarden_license/src/app/providers/settings/settings.component.ts/0
{ "file_path": "bitwarden/web/bitwarden_license/src/app/providers/settings/settings.component.ts", "repo_id": "bitwarden", "token_count": 163 }
116
{ "name": "@bitwarden/web-vault", "version": "2022.5.2", "license": "GPL-3.0", "repository": "https://github.com/bitwarden/web", "scripts": { "sub:init": "git submodule update --init --recursive", "sub:update": "git submodule update --remote", "sub:pull": "git submodule foreach git pull origin master", "preinstall": "npm run sub:init", "symlink:win": "rm -rf ./jslib && cmd /c mklink /J .\\jslib ..\\jslib", "symlink:mac": "npm run symlink:lin", "symlink:lin": "rm -rf ./jslib && ln -s ../jslib ./jslib", "build:oss": "webpack", "build:bit": "webpack -c bitwarden_license/webpack.config.js", "build:oss:watch": "webpack serve", "build:bit:watch": "webpack serve -c bitwarden_license/webpack.config.js", "build:bit:dev": "cross-env ENV=development npm run build:bit", "build:bit:dev:watch": "cross-env ENV=development npm run build:bit:watch", "build:bit:qa": "cross-env NODE_ENV=production ENV=qa npm run build:bit", "build:bit:cloud": "cross-env NODE_ENV=production ENV=cloud npm run build:bit", "build:oss:selfhost:watch": "cross-env ENV=selfhosted npm run build:oss:watch", "build:bit:selfhost:watch": "cross-env ENV=selfhosted npm run build:bit:watch", "build:oss:selfhost:prod": "cross-env ENV=selfhosted NODE_ENV=production npm run build:oss", "build:bit:selfhost:prod": "cross-env ENV=selfhosted NODE_ENV=production npm run build:bit", "clean:l10n": "git push origin --delete l10n_master", "dist:bit:cloud": "npm run build:bit:cloud", "dist:oss:selfhost": "npm run build:oss:selfhost:prod", "dist:bit:selfhost": "npm run build:bit:selfhost:prod", "deploy": "npm run dist:bit && gh-pages -d build", "deploy:dev": "npm run dist:bit && gh-pages -d build -r git@github.com:kspearrin/bitwarden-web-dev.git", "lint": "eslint . && prettier --check .", "lint:fix": "eslint . --fix", "prettier": "prettier --write .", "prepare": "husky install" }, "devDependencies": { "@angular/compiler-cli": "^12.2.13", "@ngtools/webpack": "^12.2.13", "@types/jquery": "^3.5.5", "@types/node": "^16.11.12", "@types/webcrypto": "^0.0.28", "@types/webpack": "^5.28.0", "@typescript-eslint/eslint-plugin": "^5.10.1", "@typescript-eslint/parser": "^5.10.1", "autoprefixer": "^10.4.2", "buffer": "^6.0.3", "clean-webpack-plugin": "^4.0.0", "copy-webpack-plugin": "^10.0.0", "cross-env": "^7.0.3", "css-loader": "^6.5.1", "eslint": "^8.7.0", "eslint-config-prettier": "^8.3.0", "eslint-import-resolver-typescript": "^2.5.0", "eslint-plugin-import": "^2.25.4", "gh-pages": "^3.1.0", "html-loader": "^3.0.1", "html-webpack-injector": "1.1.4", "html-webpack-plugin": "^5.5.0", "husky": "^7.0.4", "lint-staged": "^12.1.2", "mini-css-extract-plugin": "^2.4.5", "postcss": "^8.4.6", "postcss-loader": "^6.2.1", "prettier": "2.5.1", "process": "^0.11.10", "rimraf": "^3.0.2", "sass": "^1.32.10", "sass-loader": "^12.4.0", "style-loader": "^3.3.1", "tailwindcss": "^3.0.18", "terser-webpack-plugin": "^5.2.5", "ts-loader": "^9.2.5", "typescript": "4.3.5", "util": "^0.12.4", "webpack": "^5.64.4", "webpack-cli": "^4.9.1", "webpack-dev-server": "^4.6.0" }, "dependencies": { "@angular/animations": "^12.2.13", "@angular/cdk": "^12.2.13", "@angular/common": "^12.2.13", "@angular/compiler": "^12.2.13", "@angular/core": "^12.2.13", "@angular/forms": "^12.2.13", "@angular/platform-browser": "^12.2.13", "@angular/platform-browser-dynamic": "^12.2.13", "@angular/router": "^12.2.13", "@bitwarden/jslib-angular": "file:jslib/angular", "@bitwarden/jslib-common": "file:jslib/common", "bootstrap": "4.6.0", "braintree-web-drop-in": "1.33.1", "browser-hrtime": "^1.1.8", "core-js": "^3.11.0", "date-input-polyfill": "^2.14.0", "jquery": "3.6.0", "jszip": "^3.7.1", "ngx-infinite-scroll": "^10.0.1", "ngx-toastr": "14.1.4", "node-forge": "^1.3.1", "popper.js": "1.16.1", "qrious": "4.0.2", "rxjs": "^7.4.0", "sweetalert2": "^10.16.6", "webcrypto-shim": "0.1.7", "whatwg-fetch": "3.6.2", "zone.js": "0.11.4" }, "engines": { "node": "~16", "npm": "~8" }, "lint-staged": { "./!(jslib)**": "prettier --ignore-unknown --write", "*.ts": "eslint --fix", "*.png": "node scripts/optimize.js" } }
bitwarden/web/package.json/0
{ "file_path": "bitwarden/web/package.json", "repo_id": "bitwarden", "token_count": 2214 }
117
import { Component, NgZone } from "@angular/core"; import { Router } from "@angular/router"; import { LockComponent as BaseLockComponent } from "jslib-angular/components/lock.component"; import { ApiService } from "jslib-common/abstractions/api.service"; import { CryptoService } from "jslib-common/abstractions/crypto.service"; import { EnvironmentService } from "jslib-common/abstractions/environment.service"; import { I18nService } from "jslib-common/abstractions/i18n.service"; import { KeyConnectorService } from "jslib-common/abstractions/keyConnector.service"; import { LogService } from "jslib-common/abstractions/log.service"; import { MessagingService } from "jslib-common/abstractions/messaging.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { StateService } from "jslib-common/abstractions/state.service"; import { VaultTimeoutService } from "jslib-common/abstractions/vaultTimeout.service"; import { RouterService } from "../services/router.service"; @Component({ selector: "app-lock", templateUrl: "lock.component.html", }) export class LockComponent extends BaseLockComponent { constructor( router: Router, i18nService: I18nService, platformUtilsService: PlatformUtilsService, messagingService: MessagingService, cryptoService: CryptoService, vaultTimeoutService: VaultTimeoutService, environmentService: EnvironmentService, private routerService: RouterService, stateService: StateService, apiService: ApiService, logService: LogService, keyConnectorService: KeyConnectorService, ngZone: NgZone ) { super( router, i18nService, platformUtilsService, messagingService, cryptoService, vaultTimeoutService, environmentService, stateService, apiService, logService, keyConnectorService, ngZone ); } async ngOnInit() { await super.ngOnInit(); this.onSuccessfulSubmit = async () => { const previousUrl = this.routerService.getPreviousUrl(); if (previousUrl && previousUrl !== "/" && previousUrl.indexOf("lock") === -1) { this.successRoute = previousUrl; } this.router.navigateByUrl(this.successRoute); }; } }
bitwarden/web/src/app/accounts/lock.component.ts/0
{ "file_path": "bitwarden/web/src/app/accounts/lock.component.ts", "repo_id": "bitwarden", "token_count": 760 }
118
import { Component } from "@angular/core"; import { Router } from "@angular/router"; import { TwoFactorOptionsComponent as BaseTwoFactorOptionsComponent } from "jslib-angular/components/two-factor-options.component"; import { I18nService } from "jslib-common/abstractions/i18n.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { TwoFactorService } from "jslib-common/abstractions/twoFactor.service"; @Component({ selector: "app-two-factor-options", templateUrl: "two-factor-options.component.html", }) export class TwoFactorOptionsComponent extends BaseTwoFactorOptionsComponent { constructor( twoFactorService: TwoFactorService, router: Router, i18nService: I18nService, platformUtilsService: PlatformUtilsService ) { super(twoFactorService, router, i18nService, platformUtilsService, window); } }
bitwarden/web/src/app/accounts/two-factor-options.component.ts/0
{ "file_path": "bitwarden/web/src/app/accounts/two-factor-options.component.ts", "repo_id": "bitwarden", "token_count": 267 }
119
import { Directive, ViewChild, ViewContainerRef } from "@angular/core"; import { SearchPipe } from "jslib-angular/pipes/search.pipe"; import { UserNamePipe } from "jslib-angular/pipes/user-name.pipe"; import { ModalService } from "jslib-angular/services/modal.service"; import { ValidationService } from "jslib-angular/services/validation.service"; import { ApiService } from "jslib-common/abstractions/api.service"; import { CryptoService } from "jslib-common/abstractions/crypto.service"; import { I18nService } from "jslib-common/abstractions/i18n.service"; import { LogService } from "jslib-common/abstractions/log.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { SearchService } from "jslib-common/abstractions/search.service"; import { StateService } from "jslib-common/abstractions/state.service"; import { OrganizationUserStatusType } from "jslib-common/enums/organizationUserStatusType"; import { OrganizationUserType } from "jslib-common/enums/organizationUserType"; import { ProviderUserStatusType } from "jslib-common/enums/providerUserStatusType"; import { ProviderUserType } from "jslib-common/enums/providerUserType"; import { Utils } from "jslib-common/misc/utils"; import { ListResponse } from "jslib-common/models/response/listResponse"; import { OrganizationUserUserDetailsResponse } from "jslib-common/models/response/organizationUserResponse"; import { ProviderUserUserDetailsResponse } from "jslib-common/models/response/provider/providerUserResponse"; import { UserConfirmComponent } from "../organizations/manage/user-confirm.component"; type StatusType = OrganizationUserStatusType | ProviderUserStatusType; const MaxCheckedCount = 500; @Directive() export abstract class BasePeopleComponent< UserType extends ProviderUserUserDetailsResponse | OrganizationUserUserDetailsResponse > { @ViewChild("confirmTemplate", { read: ViewContainerRef, static: true }) confirmModalRef: ViewContainerRef; get allCount() { return this.allUsers != null ? this.allUsers.length : 0; } get invitedCount() { return this.statusMap.has(this.userStatusType.Invited) ? this.statusMap.get(this.userStatusType.Invited).length : 0; } get acceptedCount() { return this.statusMap.has(this.userStatusType.Accepted) ? this.statusMap.get(this.userStatusType.Accepted).length : 0; } get confirmedCount() { return this.statusMap.has(this.userStatusType.Confirmed) ? this.statusMap.get(this.userStatusType.Confirmed).length : 0; } get showConfirmUsers(): boolean { return ( this.allUsers != null && this.statusMap != null && this.allUsers.length > 1 && this.confirmedCount > 0 && this.confirmedCount < 3 && this.acceptedCount > 0 ); } get showBulkConfirmUsers(): boolean { return this.acceptedCount > 0; } abstract userType: typeof OrganizationUserType | typeof ProviderUserType; abstract userStatusType: typeof OrganizationUserStatusType | typeof ProviderUserStatusType; loading = true; statusMap = new Map<StatusType, UserType[]>(); status: StatusType; users: UserType[] = []; pagedUsers: UserType[] = []; searchText: string; actionPromise: Promise<any>; protected allUsers: UserType[] = []; protected didScroll = false; protected pageSize = 100; private pagedUsersCount = 0; constructor( protected apiService: ApiService, private searchService: SearchService, protected i18nService: I18nService, protected platformUtilsService: PlatformUtilsService, protected cryptoService: CryptoService, protected validationService: ValidationService, protected modalService: ModalService, private logService: LogService, private searchPipe: SearchPipe, protected userNamePipe: UserNamePipe, protected stateService: StateService ) {} abstract edit(user: UserType): void; abstract getUsers(): Promise<ListResponse<UserType>>; abstract deleteUser(id: string): Promise<any>; abstract reinviteUser(id: string): Promise<any>; abstract confirmUser(user: UserType, publicKey: Uint8Array): Promise<any>; async load() { const response = await this.getUsers(); this.statusMap.clear(); for (const status of Utils.iterateEnum(this.userStatusType)) { this.statusMap.set(status, []); } this.allUsers = response.data != null && response.data.length > 0 ? response.data : []; this.allUsers.sort(Utils.getSortFunction(this.i18nService, "email")); this.allUsers.forEach((u) => { if (!this.statusMap.has(u.status)) { this.statusMap.set(u.status, [u]); } else { this.statusMap.get(u.status).push(u); } }); this.filter(this.status); this.loading = false; } filter(status: StatusType) { this.status = status; if (this.status != null) { this.users = this.statusMap.get(this.status); } else { this.users = this.allUsers; } // Reset checkbox selecton this.selectAll(false); this.resetPaging(); } loadMore() { if (!this.users || this.users.length <= this.pageSize) { return; } const pagedLength = this.pagedUsers.length; let pagedSize = this.pageSize; if (pagedLength === 0 && this.pagedUsersCount > this.pageSize) { pagedSize = this.pagedUsersCount; } if (this.users.length > pagedLength) { this.pagedUsers = this.pagedUsers.concat( this.users.slice(pagedLength, pagedLength + pagedSize) ); } this.pagedUsersCount = this.pagedUsers.length; this.didScroll = this.pagedUsers.length > this.pageSize; } checkUser(user: OrganizationUserUserDetailsResponse, select?: boolean) { (user as any).checked = select == null ? !(user as any).checked : select; } selectAll(select: boolean) { if (select) { this.selectAll(false); } const filteredUsers = this.searchPipe.transform( this.users, this.searchText, "name", "email", "id" ); const selectCount = select && filteredUsers.length > MaxCheckedCount ? MaxCheckedCount : filteredUsers.length; for (let i = 0; i < selectCount; i++) { this.checkUser(filteredUsers[i], select); } } async resetPaging() { this.pagedUsers = []; this.loadMore(); } invite() { this.edit(null); } async remove(user: UserType) { const confirmed = await this.platformUtilsService.showDialog( this.deleteWarningMessage(user), this.userNamePipe.transform(user), this.i18nService.t("yes"), this.i18nService.t("no"), "warning" ); if (!confirmed) { return false; } this.actionPromise = this.deleteUser(user.id); try { await this.actionPromise; this.platformUtilsService.showToast( "success", null, this.i18nService.t("removedUserId", this.userNamePipe.transform(user)) ); this.removeUser(user); } catch (e) { this.validationService.showError(e); } this.actionPromise = null; } async reinvite(user: UserType) { if (this.actionPromise != null) { return; } this.actionPromise = this.reinviteUser(user.id); try { await this.actionPromise; this.platformUtilsService.showToast( "success", null, this.i18nService.t("hasBeenReinvited", this.userNamePipe.transform(user)) ); } catch (e) { this.validationService.showError(e); } this.actionPromise = null; } async confirm(user: UserType) { function updateUser(self: BasePeopleComponent<UserType>) { user.status = self.userStatusType.Confirmed; const mapIndex = self.statusMap.get(self.userStatusType.Accepted).indexOf(user); if (mapIndex > -1) { self.statusMap.get(self.userStatusType.Accepted).splice(mapIndex, 1); self.statusMap.get(self.userStatusType.Confirmed).push(user); } } const confirmUser = async (publicKey: Uint8Array) => { try { this.actionPromise = this.confirmUser(user, publicKey); await this.actionPromise; updateUser(this); this.platformUtilsService.showToast( "success", null, this.i18nService.t("hasBeenConfirmed", this.userNamePipe.transform(user)) ); } catch (e) { this.validationService.showError(e); throw e; } finally { this.actionPromise = null; } }; if (this.actionPromise != null) { return; } try { const publicKeyResponse = await this.apiService.getUserPublicKey(user.userId); const publicKey = Utils.fromB64ToArray(publicKeyResponse.publicKey); const autoConfirm = await this.stateService.getAutoConfirmFingerPrints(); if (autoConfirm == null || !autoConfirm) { const [modal] = await this.modalService.openViewRef( UserConfirmComponent, this.confirmModalRef, (comp) => { comp.name = this.userNamePipe.transform(user); comp.userId = user != null ? user.userId : null; comp.publicKey = publicKey; comp.onConfirmedUser.subscribe(async () => { try { comp.formPromise = confirmUser(publicKey); await comp.formPromise; modal.close(); } catch (e) { this.logService.error(e); } }); } ); return; } try { const fingerprint = await this.cryptoService.getFingerprint(user.userId, publicKey.buffer); this.logService.info(`User's fingerprint: ${fingerprint.join("-")}`); } catch (e) { this.logService.error(e); } await confirmUser(publicKey); } catch (e) { this.logService.error(`Handled exception: ${e}`); } } isSearching() { return this.searchService.isSearchable(this.searchText); } isPaging() { const searching = this.isSearching(); if (searching && this.didScroll) { this.resetPaging(); } return !searching && this.users && this.users.length > this.pageSize; } protected deleteWarningMessage(user: UserType): string { return this.i18nService.t("removeUserConfirmation"); } protected getCheckedUsers() { return this.users.filter((u) => (u as any).checked); } protected removeUser(user: UserType) { let index = this.users.indexOf(user); if (index > -1) { this.users.splice(index, 1); this.resetPaging(); } if (this.statusMap.has(user.status)) { index = this.statusMap.get(user.status).indexOf(user); if (index > -1) { this.statusMap.get(user.status).splice(index, 1); } } } }
bitwarden/web/src/app/common/base.people.component.ts/0
{ "file_path": "bitwarden/web/src/app/common/base.people.component.ts", "repo_id": "bitwarden", "token_count": 4152 }
120
import { Component, NgZone, OnInit } from "@angular/core"; import { BroadcasterService } from "jslib-common/abstractions/broadcaster.service"; import { I18nService } from "jslib-common/abstractions/i18n.service"; import { MessagingService } from "jslib-common/abstractions/messaging.service"; import { OrganizationService } from "jslib-common/abstractions/organization.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { ProviderService } from "jslib-common/abstractions/provider.service"; import { SyncService } from "jslib-common/abstractions/sync.service"; import { TokenService } from "jslib-common/abstractions/token.service"; import { Utils } from "jslib-common/misc/utils"; import { Organization } from "jslib-common/models/domain/organization"; import { Provider } from "jslib-common/models/domain/provider"; import { NavigationPermissionsService as OrgNavigationPermissionsService } from "../organizations/services/navigation-permissions.service"; @Component({ selector: "app-navbar", templateUrl: "navbar.component.html", }) export class NavbarComponent implements OnInit { selfHosted = false; name: string; email: string; providers: Provider[] = []; organizations: Organization[] = []; constructor( private messagingService: MessagingService, private platformUtilsService: PlatformUtilsService, private tokenService: TokenService, private providerService: ProviderService, private syncService: SyncService, private organizationService: OrganizationService, private i18nService: I18nService, private broadcasterService: BroadcasterService, private ngZone: NgZone ) { this.selfHosted = this.platformUtilsService.isSelfHost(); } async ngOnInit() { this.name = await this.tokenService.getName(); this.email = await this.tokenService.getEmail(); if (this.name == null || this.name.trim() === "") { this.name = this.email; } // Ensure providers and organizations are loaded if ((await this.syncService.getLastSync()) == null) { await this.syncService.fullSync(false); } this.providers = await this.providerService.getAll(); this.organizations = await this.buildOrganizations(); this.broadcasterService.subscribe(this.constructor.name, async (message: any) => { this.ngZone.run(async () => { switch (message.command) { case "organizationCreated": if (this.organizations.length < 1) { this.organizations = await this.buildOrganizations(); } break; } }); }); } async buildOrganizations() { const allOrgs = await this.organizationService.getAll(); return allOrgs .filter((org) => OrgNavigationPermissionsService.canAccessAdmin(org)) .sort(Utils.getSortFunction(this.i18nService, "name")); } lock() { this.messagingService.send("lockVault"); } logOut() { this.messagingService.send("logout"); } }
bitwarden/web/src/app/layouts/navbar.component.ts/0
{ "file_path": "bitwarden/web/src/app/layouts/navbar.component.ts", "repo_id": "bitwarden", "token_count": 1007 }
121
<ng-container *ngIf="!hide"> <div class="filter-heading"> <button class="toggle-button" (click)="toggleCollapse(foldersGrouping)" [attr.aria-expanded]="!isCollapsed(foldersGrouping)" aria-controls="folder-filters" title="{{ 'toggleCollapse' | i18n }}" > <i class="bwi bwi-fw" aria-hidden="true" [ngClass]="{ 'bwi-angle-right': isCollapsed(foldersGrouping), 'bwi-angle-down': !isCollapsed(foldersGrouping) }" ></i> </button> <h3 class="filter-title">&nbsp;{{ "folders" | i18n }}</h3> <button class="text-muted ml-auto add-button" (click)="addFolder()" appA11yTitle="{{ 'addFolder' | i18n }}" > <i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i> </button> </div> <ul id="folder-filters" *ngIf="!isCollapsed(foldersGrouping)" class="filter-options"> <ng-template #recursiveFolders let-folders> <li *ngFor="let f of folders" [ngClass]="{ active: f.node.id === activeFilter.selectedFolderId && activeFilter.selectedFolder }" class="filter-option" > <span class="filter-buttons"> <button *ngIf="f.children.length" title="{{ 'toggleCollapse' | i18n }}" (click)="toggleCollapse(f.node)" [attr.aria-expanded]="!isCollapsed(f.node)" [attr.aria-controls]="f.node.name + '_children'" class="toggle-button" > <i class="bwi bwi-fw" [ngClass]="{ 'bwi-angle-right': isCollapsed(f.node), 'bwi-angle-down': !isCollapsed(f.node) }" aria-hidden="true" ></i> </button> <button class="filter-button" (click)="applyFilter(f.node)"> <i *ngIf="f.children.length === 0" class="bwi bwi-fw bwi-folder" aria-hidden="true"></i >&nbsp;{{ f.node.name }} </button> <button class="edit-button" (click)="editFolder(f.node)" appA11yTitle="{{ 'editFolder' | i18n }}" *ngIf="f.node.id" > <i class="bwi bwi-pencil bwi-fw" aria-hidden="true"></i> </button> </span> <ul [id]="f.node.name + '_children'" class="nested-filter-options" *ngIf="f.children.length && !isCollapsed(f.node)" > <ng-container *ngTemplateOutlet="recursiveFolders; context: { $implicit: f.children }"> </ng-container> </ul> </li> </ng-template> <ng-container *ngTemplateOutlet="recursiveFolders; context: { $implicit: nestedFolders }" ></ng-container> </ul> </ng-container>
bitwarden/web/src/app/modules/vault-filter/components/folder-filter.component.html/0
{ "file_path": "bitwarden/web/src/app/modules/vault-filter/components/folder-filter.component.html", "repo_id": "bitwarden", "token_count": 1454 }
122
import { Injectable } from "@angular/core"; import { DynamicTreeNode } from "jslib-angular/modules/vault-filter/models/dynamic-tree-node.model"; import { VaultFilterService as BaseVaultFilterService } from "jslib-angular/modules/vault-filter/vault-filter.service"; import { ApiService } from "jslib-common/abstractions/api.service"; import { CipherService } from "jslib-common/abstractions/cipher.service"; import { CollectionService } from "jslib-common/abstractions/collection.service"; import { FolderService } from "jslib-common/abstractions/folder.service"; import { OrganizationService } from "jslib-common/abstractions/organization.service"; import { PolicyService } from "jslib-common/abstractions/policy.service"; import { StateService } from "jslib-common/abstractions/state.service"; import { CollectionData } from "jslib-common/models/data/collectionData"; import { Collection } from "jslib-common/models/domain/collection"; import { CollectionDetailsResponse } from "jslib-common/models/response/collectionResponse"; import { CollectionView } from "jslib-common/models/view/collectionView"; @Injectable() export class VaultFilterService extends BaseVaultFilterService { constructor( stateService: StateService, organizationService: OrganizationService, folderService: FolderService, cipherService: CipherService, collectionService: CollectionService, policyService: PolicyService, protected apiService: ApiService ) { super( stateService, organizationService, folderService, cipherService, collectionService, policyService ); } async buildAdminCollections(organizationId: string) { let result: CollectionView[] = []; const collectionResponse = await this.apiService.getCollections(organizationId); if (collectionResponse?.data != null && collectionResponse.data.length) { const collectionDomains = collectionResponse.data.map( (r: CollectionDetailsResponse) => new Collection(new CollectionData(r)) ); result = await this.collectionService.decryptMany(collectionDomains); } const nestedCollections = await this.collectionService.getAllNested(result); return new DynamicTreeNode<CollectionView>({ fullList: result, nestedList: nestedCollections, }); } }
bitwarden/web/src/app/modules/vault-filter/vault-filter.service.ts/0
{ "file_path": "bitwarden/web/src/app/modules/vault-filter/vault-filter.service.ts", "repo_id": "bitwarden", "token_count": 706 }
123
import { Component, NgZone, OnDestroy, OnInit } from "@angular/core"; import { ActivatedRoute } from "@angular/router"; import { BroadcasterService } from "jslib-common/abstractions/broadcaster.service"; import { OrganizationService } from "jslib-common/abstractions/organization.service"; import { Organization } from "jslib-common/models/domain/organization"; import { NavigationPermissionsService } from "../services/navigation-permissions.service"; const BroadcasterSubscriptionId = "OrganizationLayoutComponent"; @Component({ selector: "app-organization-layout", templateUrl: "organization-layout.component.html", }) export class OrganizationLayoutComponent implements OnInit, OnDestroy { organization: Organization; businessTokenPromise: Promise<any>; private organizationId: string; constructor( private route: ActivatedRoute, private organizationService: OrganizationService, private broadcasterService: BroadcasterService, private ngZone: NgZone ) {} ngOnInit() { document.body.classList.remove("layout_frontend"); this.route.params.subscribe(async (params: any) => { this.organizationId = params.organizationId; await this.load(); }); this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => { this.ngZone.run(async () => { switch (message.command) { case "updatedOrgLicense": await this.load(); break; } }); }); } ngOnDestroy() { this.broadcasterService.unsubscribe(BroadcasterSubscriptionId); } async load() { this.organization = await this.organizationService.get(this.organizationId); } get showManageTab(): boolean { return NavigationPermissionsService.canAccessManage(this.organization); } get showToolsTab(): boolean { return NavigationPermissionsService.canAccessTools(this.organization); } get showSettingsTab(): boolean { return NavigationPermissionsService.canAccessSettings(this.organization); } get toolsRoute(): string { return this.organization.canAccessImportExport ? "tools/import" : "tools/exposed-passwords-report"; } get manageRoute(): string { let route: string; switch (true) { case this.organization.canManageUsers: route = "manage/people"; break; case this.organization.canViewAssignedCollections || this.organization.canViewAllCollections: route = "manage/collections"; break; case this.organization.canManageGroups: route = "manage/groups"; break; case this.organization.canManagePolicies: route = "manage/policies"; break; case this.organization.canAccessEventLogs: route = "manage/events"; break; } return route; } }
bitwarden/web/src/app/organizations/layouts/organization-layout.component.ts/0
{ "file_path": "bitwarden/web/src/app/organizations/layouts/organization-layout.component.ts", "repo_id": "bitwarden", "token_count": 966 }
124
import { Component, EventEmitter, Input, OnInit, Output } from "@angular/core"; import { ApiService } from "jslib-common/abstractions/api.service"; import { CollectionService } from "jslib-common/abstractions/collection.service"; import { I18nService } from "jslib-common/abstractions/i18n.service"; import { LogService } from "jslib-common/abstractions/log.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { CollectionData } from "jslib-common/models/data/collectionData"; import { Collection } from "jslib-common/models/domain/collection"; import { GroupRequest } from "jslib-common/models/request/groupRequest"; import { SelectionReadOnlyRequest } from "jslib-common/models/request/selectionReadOnlyRequest"; import { CollectionDetailsResponse } from "jslib-common/models/response/collectionResponse"; import { CollectionView } from "jslib-common/models/view/collectionView"; @Component({ selector: "app-group-add-edit", templateUrl: "group-add-edit.component.html", }) export class GroupAddEditComponent implements OnInit { @Input() groupId: string; @Input() organizationId: string; @Output() onSavedGroup = new EventEmitter(); @Output() onDeletedGroup = new EventEmitter(); loading = true; editMode = false; title: string; name: string; externalId: string; access: "all" | "selected" = "selected"; collections: CollectionView[] = []; formPromise: Promise<any>; deletePromise: Promise<any>; constructor( private apiService: ApiService, private i18nService: I18nService, private collectionService: CollectionService, private platformUtilsService: PlatformUtilsService, private logService: LogService ) {} async ngOnInit() { this.editMode = this.loading = this.groupId != null; await this.loadCollections(); if (this.editMode) { this.editMode = true; this.title = this.i18nService.t("editGroup"); try { const group = await this.apiService.getGroupDetails(this.organizationId, this.groupId); this.access = group.accessAll ? "all" : "selected"; this.name = group.name; this.externalId = group.externalId; if (group.collections != null && this.collections != null) { group.collections.forEach((s) => { const collection = this.collections.filter((c) => c.id === s.id); if (collection != null && collection.length > 0) { (collection[0] as any).checked = true; collection[0].readOnly = s.readOnly; collection[0].hidePasswords = s.hidePasswords; } }); } } catch (e) { this.logService.error(e); } } else { this.title = this.i18nService.t("addGroup"); } this.loading = false; } async loadCollections() { const response = await this.apiService.getCollections(this.organizationId); const collections = response.data.map( (r) => new Collection(new CollectionData(r as CollectionDetailsResponse)) ); this.collections = await this.collectionService.decryptMany(collections); } check(c: CollectionView, select?: boolean) { (c as any).checked = select == null ? !(c as any).checked : select; if (!(c as any).checked) { c.readOnly = false; } } selectAll(select: boolean) { this.collections.forEach((c) => this.check(c, select)); } async submit() { const request = new GroupRequest(); request.name = this.name; request.externalId = this.externalId; request.accessAll = this.access === "all"; if (!request.accessAll) { request.collections = this.collections .filter((c) => (c as any).checked) .map((c) => new SelectionReadOnlyRequest(c.id, !!c.readOnly, !!c.hidePasswords)); } try { if (this.editMode) { this.formPromise = this.apiService.putGroup(this.organizationId, this.groupId, request); } else { this.formPromise = this.apiService.postGroup(this.organizationId, request); } await this.formPromise; this.platformUtilsService.showToast( "success", null, this.i18nService.t(this.editMode ? "editedGroupId" : "createdGroupId", this.name) ); this.onSavedGroup.emit(); } catch (e) { this.logService.error(e); } } async delete() { if (!this.editMode) { return; } const confirmed = await this.platformUtilsService.showDialog( this.i18nService.t("deleteGroupConfirmation"), this.name, this.i18nService.t("yes"), this.i18nService.t("no"), "warning" ); if (!confirmed) { return false; } try { this.deletePromise = this.apiService.deleteGroup(this.organizationId, this.groupId); await this.deletePromise; this.platformUtilsService.showToast( "success", null, this.i18nService.t("deletedGroupId", this.name) ); this.onDeletedGroup.emit(); } catch (e) { this.logService.error(e); } } }
bitwarden/web/src/app/organizations/manage/group-add-edit.component.ts/0
{ "file_path": "bitwarden/web/src/app/organizations/manage/group-add-edit.component.ts", "repo_id": "bitwarden", "token_count": 1925 }
125
import { Component, EventEmitter, Input, OnInit, Output } from "@angular/core"; import { CryptoService } from "jslib-common/abstractions/crypto.service"; import { LogService } from "jslib-common/abstractions/log.service"; import { StateService } from "jslib-common/abstractions/state.service"; @Component({ selector: "app-user-confirm", templateUrl: "user-confirm.component.html", }) export class UserConfirmComponent implements OnInit { @Input() name: string; @Input() userId: string; @Input() publicKey: Uint8Array; @Output() onConfirmedUser = new EventEmitter(); dontAskAgain = false; loading = true; fingerprint: string; formPromise: Promise<any>; constructor( private cryptoService: CryptoService, private logService: LogService, private stateService: StateService ) {} async ngOnInit() { try { if (this.publicKey != null) { const fingerprint = await this.cryptoService.getFingerprint( this.userId, this.publicKey.buffer ); if (fingerprint != null) { this.fingerprint = fingerprint.join("-"); } } } catch (e) { this.logService.error(e); } this.loading = false; } async submit() { if (this.loading) { return; } if (this.dontAskAgain) { await this.stateService.setAutoConfirmFingerprints(true); } this.onConfirmedUser.emit(); } }
bitwarden/web/src/app/organizations/manage/user-confirm.component.ts/0
{ "file_path": "bitwarden/web/src/app/organizations/manage/user-confirm.component.ts", "repo_id": "bitwarden", "token_count": 532 }
126
import { Component } from "@angular/core"; import { FormBuilder } from "@angular/forms"; import { OrganizationService } from "jslib-common/abstractions/organization.service"; import { PolicyType } from "jslib-common/enums/policyType"; import { Organization } from "jslib-common/models/domain/organization"; import { BasePolicy, BasePolicyComponent } from "./base-policy.component"; export class ResetPasswordPolicy extends BasePolicy { name = "resetPasswordPolicy"; description = "resetPasswordPolicyDescription"; type = PolicyType.ResetPassword; component = ResetPasswordPolicyComponent; display(organization: Organization) { return organization.useResetPassword; } } @Component({ selector: "policy-reset-password", templateUrl: "reset-password.component.html", }) export class ResetPasswordPolicyComponent extends BasePolicyComponent { data = this.formBuilder.group({ autoEnrollEnabled: false, }); defaultTypes: { name: string; value: string }[]; showKeyConnectorInfo = false; constructor(private formBuilder: FormBuilder, private organizationService: OrganizationService) { super(); } async ngOnInit() { super.ngOnInit(); const organization = await this.organizationService.get(this.policyResponse.organizationId); this.showKeyConnectorInfo = organization.keyConnectorEnabled; } }
bitwarden/web/src/app/organizations/policies/reset-password.component.ts/0
{ "file_path": "bitwarden/web/src/app/organizations/policies/reset-password.component.ts", "repo_id": "bitwarden", "token_count": 371 }
127
<div class="modal fade" role="dialog" aria-modal="true" aria-labelledby="deleteOrganizationTitle"> <div class="modal-dialog modal-dialog-scrollable" role="document"> <form class="modal-content" #form (ngSubmit)="submit()" [appApiAction]="formPromise" ngNativeValidate *ngIf="loaded" > <div class="modal-header"> <h2 class="modal-title" id="deleteOrganizationTitle">{{ "deleteOrganization" | i18n }}</h2> <button type="button" class="close" data-dismiss="modal" appA11yTitle="{{ 'close' | i18n }}" > <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <app-callout type="warning">{{ "deletingOrganizationIsPermanentWarning" | i18n: organizationName }}</app-callout> <p id="organizationDeleteDescription"> <ng-container *ngIf=" deleteOrganizationRequestType === 'InvalidFamiliesForEnterprise'; else regularDelete " > {{ "orgCreatedSponsorshipInvalid" | i18n }} </ng-container> <ng-template #regularDelete> <ng-container *ngIf="organizationContentSummary.totalItemCount > 0"> {{ "deletingOrganizationContentWarning" | i18n: organizationName }} <ul> <li *ngFor="let type of organizationContentSummary.itemCountByType"> {{ type.count }} {{ type.localizationKey | i18n }} </li> </ul> {{ "deletingOrganizationActiveUserAccountsWarning" | i18n }} </ng-container> </ng-template> </p> <app-user-verification [(ngModel)]="masterPassword" ngDefaultControl name="secret"> </app-user-verification> </div> <div class="modal-footer"> <button type="submit" class="btn btn-danger btn-submit" [disabled]="form.loading"> <i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i> <span>{{ "deleteOrganization" | i18n }}</span> </button> <button type="button" class="btn btn-outline-secondary" data-dismiss="modal"> {{ "close" | i18n }} </button> </div> </form> </div> </div>
bitwarden/web/src/app/organizations/settings/delete-organization.component.html/0
{ "file_path": "bitwarden/web/src/app/organizations/settings/delete-organization.component.html", "repo_id": "bitwarden", "token_count": 1124 }
128
import { Component, OnInit, ViewChild, ViewContainerRef } from "@angular/core"; import { ActivatedRoute, Router } from "@angular/router"; import { first } from "rxjs/operators"; import { ModalService } from "jslib-angular/services/modal.service"; import { ValidationService } from "jslib-angular/services/validation.service"; import { ApiService } from "jslib-common/abstractions/api.service"; import { I18nService } from "jslib-common/abstractions/i18n.service"; import { OrganizationService } from "jslib-common/abstractions/organization.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { SyncService } from "jslib-common/abstractions/sync.service"; import { PlanSponsorshipType } from "jslib-common/enums/planSponsorshipType"; import { PlanType } from "jslib-common/enums/planType"; import { ProductType } from "jslib-common/enums/productType"; import { Organization } from "jslib-common/models/domain/organization"; import { OrganizationSponsorshipRedeemRequest } from "jslib-common/models/request/organization/organizationSponsorshipRedeemRequest"; import { DeleteOrganizationComponent } from "src/app/organizations/settings/delete-organization.component"; import { OrganizationPlansComponent } from "src/app/settings/organization-plans.component"; @Component({ selector: "families-for-enterprise-setup", templateUrl: "families-for-enterprise-setup.component.html", }) export class FamiliesForEnterpriseSetupComponent implements OnInit { @ViewChild(OrganizationPlansComponent, { static: false }) set organizationPlansComponent(value: OrganizationPlansComponent) { if (!value) { return; } value.plan = PlanType.FamiliesAnnually; value.product = ProductType.Families; value.acceptingSponsorship = true; value.onSuccess.subscribe(this.onOrganizationCreateSuccess.bind(this)); } @ViewChild("deleteOrganizationTemplate", { read: ViewContainerRef, static: true }) deleteModalRef: ViewContainerRef; loading = true; badToken = false; formPromise: Promise<any>; token: string; existingFamilyOrganizations: Organization[]; showNewOrganization = false; _organizationPlansComponent: OrganizationPlansComponent; _selectedFamilyOrganizationId = ""; constructor( private router: Router, private platformUtilsService: PlatformUtilsService, private i18nService: I18nService, private route: ActivatedRoute, private apiService: ApiService, private syncService: SyncService, private validationService: ValidationService, private organizationService: OrganizationService, private modalService: ModalService ) {} async ngOnInit() { document.body.classList.remove("layout_frontend"); this.route.queryParams.pipe(first()).subscribe(async (qParams) => { const error = qParams.token == null; if (error) { this.platformUtilsService.showToast( "error", null, this.i18nService.t("sponsoredFamiliesAcceptFailed"), { timeout: 10000 } ); this.router.navigate(["/"]); return; } this.token = qParams.token; await this.syncService.fullSync(true); this.badToken = !(await this.apiService.postPreValidateSponsorshipToken(this.token)); this.loading = false; this.existingFamilyOrganizations = (await this.organizationService.getAll()).filter( (o) => o.planProductType === ProductType.Families ); if (this.existingFamilyOrganizations.length === 0) { this.selectedFamilyOrganizationId = "createNew"; } }); } async submit() { this.formPromise = this.doSubmit(this._selectedFamilyOrganizationId); await this.formPromise; this.formPromise = null; } get selectedFamilyOrganizationId() { return this._selectedFamilyOrganizationId; } set selectedFamilyOrganizationId(value: string) { this._selectedFamilyOrganizationId = value; this.showNewOrganization = value === "createNew"; } private async doSubmit(organizationId: string) { try { const request = new OrganizationSponsorshipRedeemRequest(); request.planSponsorshipType = PlanSponsorshipType.FamiliesForEnterprise; request.sponsoredOrganizationId = organizationId; await this.apiService.postRedeemSponsorship(this.token, request); this.platformUtilsService.showToast( "success", null, this.i18nService.t("sponsoredFamiliesOfferRedeemed") ); await this.syncService.fullSync(true); this.router.navigate(["/"]); } catch (e) { if (this.showNewOrganization) { await this.modalService.openViewRef( DeleteOrganizationComponent, this.deleteModalRef, (comp) => { comp.organizationId = organizationId; comp.deleteOrganizationRequestType = "InvalidFamiliesForEnterprise"; comp.onSuccess.subscribe(() => { this.router.navigate(["/"]); }); } ); } this.validationService.showError(this.i18nService.t("sponsorshipTokenHasExpired")); } } private async onOrganizationCreateSuccess(value: any) { // Use newly created organization id await this.doSubmit(value.organizationId); } }
bitwarden/web/src/app/organizations/sponsorships/families-for-enterprise-setup.component.ts/0
{ "file_path": "bitwarden/web/src/app/organizations/sponsorships/families-for-enterprise-setup.component.ts", "repo_id": "bitwarden", "token_count": 1849 }
129
import "core-js/stable"; require("zone.js/dist/zone"); if (process.env.NODE_ENV === "production") { // Production } else { // Development and test Error["stackTraceLimit"] = Infinity; require("zone.js/dist/long-stack-trace-zone"); } // Other polyfills require("whatwg-fetch"); require("webcrypto-shim"); require("date-input-polyfill");
bitwarden/web/src/app/polyfills.ts/0
{ "file_path": "bitwarden/web/src/app/polyfills.ts", "repo_id": "bitwarden", "token_count": 121 }
130
import { Component, OnDestroy } from "@angular/core"; import { NavigationEnd, Router } from "@angular/router"; import { Subscription } from "rxjs"; import { filter } from "rxjs/operators"; @Component({ selector: "app-reports", templateUrl: "reports.component.html", }) export class ReportsComponent implements OnDestroy { homepage = true; subscription: Subscription; constructor(router: Router) { this.subscription = router.events .pipe(filter((event) => event instanceof NavigationEnd)) .subscribe((event) => { this.homepage = (event as NavigationEnd).url == "/reports"; }); } ngOnDestroy(): void { this.subscription?.unsubscribe(); } }
bitwarden/web/src/app/reports/reports.component.ts/0
{ "file_path": "bitwarden/web/src/app/reports/reports.component.ts", "repo_id": "bitwarden", "token_count": 220 }
131
import { Inject, Injectable } from "@angular/core"; import { WINDOW } from "jslib-angular/services/jslib-services.module"; import { CryptoService as CryptoServiceAbstraction } from "jslib-common/abstractions/crypto.service"; import { EnvironmentService as EnvironmentServiceAbstraction, Urls, } from "jslib-common/abstractions/environment.service"; import { EventService as EventLoggingServiceAbstraction } from "jslib-common/abstractions/event.service"; import { I18nService as I18nServiceAbstraction } from "jslib-common/abstractions/i18n.service"; import { NotificationsService as NotificationsServiceAbstraction } from "jslib-common/abstractions/notifications.service"; import { PlatformUtilsService as PlatformUtilsServiceAbstraction } from "jslib-common/abstractions/platformUtils.service"; import { StateService as StateServiceAbstraction } from "jslib-common/abstractions/state.service"; import { TwoFactorService as TwoFactorServiceAbstraction } from "jslib-common/abstractions/twoFactor.service"; import { VaultTimeoutService as VaultTimeoutServiceAbstraction } from "jslib-common/abstractions/vaultTimeout.service"; import { ThemeType } from "jslib-common/enums/themeType"; import { ContainerService } from "jslib-common/services/container.service"; import { EventService as EventLoggingService } from "jslib-common/services/event.service"; import { VaultTimeoutService as VaultTimeoutService } from "jslib-common/services/vaultTimeout.service"; import { I18nService as I18nService } from "../../services/i18n.service"; @Injectable() export class InitService { constructor( @Inject(WINDOW) private win: Window, private environmentService: EnvironmentServiceAbstraction, private notificationsService: NotificationsServiceAbstraction, private vaultTimeoutService: VaultTimeoutServiceAbstraction, private i18nService: I18nServiceAbstraction, private eventLoggingService: EventLoggingServiceAbstraction, private twoFactorService: TwoFactorServiceAbstraction, private stateService: StateServiceAbstraction, private platformUtilsService: PlatformUtilsServiceAbstraction, private cryptoService: CryptoServiceAbstraction ) {} init() { return async () => { await this.stateService.init(); const urls = process.env.URLS as Urls; urls.base ??= this.win.location.origin; this.environmentService.setUrls(urls); setTimeout(() => this.notificationsService.init(), 3000); (this.vaultTimeoutService as VaultTimeoutService).init(true); const locale = await this.stateService.getLocale(); await (this.i18nService as I18nService).init(locale); (this.eventLoggingService as EventLoggingService).init(true); this.twoFactorService.init(); const htmlEl = this.win.document.documentElement; htmlEl.classList.add("locale_" + this.i18nService.translationLocale); // Initial theme is set in index.html which must be updated if there are any changes to theming logic this.platformUtilsService.onDefaultSystemThemeChange(async (sysTheme) => { const bwTheme = await this.stateService.getTheme(); if (bwTheme === ThemeType.System) { htmlEl.classList.remove("theme_" + ThemeType.Light, "theme_" + ThemeType.Dark); htmlEl.classList.add("theme_" + sysTheme); } }); const containerService = new ContainerService(this.cryptoService); containerService.attachToWindow(this.win); }; } }
bitwarden/web/src/app/services/init.service.ts/0
{ "file_path": "bitwarden/web/src/app/services/init.service.ts", "repo_id": "bitwarden", "token_count": 1106 }
132
import { Component } from "@angular/core"; import { ApiService } from "jslib-common/abstractions/api.service"; import { LogService } from "jslib-common/abstractions/log.service"; import { OrganizationConnectionType } from "jslib-common/enums/organizationConnectionType"; import { Utils } from "jslib-common/misc/utils"; import { BillingSyncConfigApi } from "jslib-common/models/api/billingSyncConfigApi"; import { BillingSyncConfigRequest } from "jslib-common/models/request/billingSyncConfigRequest"; import { OrganizationConnectionRequest } from "jslib-common/models/request/organizationConnectionRequest"; import { OrganizationConnectionResponse } from "jslib-common/models/response/organizationConnectionResponse"; @Component({ selector: "app-billing-sync-key", templateUrl: "billing-sync-key.component.html", }) export class BillingSyncKeyComponent { entityId: string; existingConnectionId: string; billingSyncKey: string; setParentConnection: (connection: OrganizationConnectionResponse<BillingSyncConfigApi>) => void; formPromise: Promise<OrganizationConnectionResponse<BillingSyncConfigApi>> | Promise<void>; constructor(private apiService: ApiService, private logService: LogService) {} async submit() { try { const request = new OrganizationConnectionRequest( this.entityId, OrganizationConnectionType.CloudBillingSync, true, new BillingSyncConfigRequest(this.billingSyncKey) ); if (this.existingConnectionId == null) { this.formPromise = this.apiService.createOrganizationConnection( request, BillingSyncConfigApi ); } else { this.formPromise = this.apiService.updateOrganizationConnection( request, BillingSyncConfigApi, this.existingConnectionId ); } const response = (await this .formPromise) as OrganizationConnectionResponse<BillingSyncConfigApi>; this.existingConnectionId = response?.id; this.billingSyncKey = response?.config?.billingSyncKey; this.setParentConnection(response); } catch (e) { this.logService.error(e); } } async deleteConnection() { this.formPromise = this.apiService.deleteOrganizationConnection(this.existingConnectionId); await this.formPromise; this.setParentConnection(null); } }
bitwarden/web/src/app/settings/billing-sync-key.component.ts/0
{ "file_path": "bitwarden/web/src/app/settings/billing-sync-key.component.ts", "repo_id": "bitwarden", "token_count": 795 }
133
import { Component, EventEmitter, Input, OnInit, Output } from "@angular/core"; import { ApiService } from "jslib-common/abstractions/api.service"; import { I18nService } from "jslib-common/abstractions/i18n.service"; import { LogService } from "jslib-common/abstractions/log.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { EmergencyAccessType } from "jslib-common/enums/emergencyAccessType"; import { EmergencyAccessInviteRequest } from "jslib-common/models/request/emergencyAccessInviteRequest"; import { EmergencyAccessUpdateRequest } from "jslib-common/models/request/emergencyAccessUpdateRequest"; @Component({ selector: "emergency-access-add-edit", templateUrl: "emergency-access-add-edit.component.html", }) export class EmergencyAccessAddEditComponent implements OnInit { @Input() name: string; @Input() emergencyAccessId: string; @Output() onSaved = new EventEmitter(); @Output() onDeleted = new EventEmitter(); loading = true; readOnly = false; editMode = false; title: string; email: string; type: EmergencyAccessType = EmergencyAccessType.View; formPromise: Promise<any>; emergencyAccessType = EmergencyAccessType; waitTimes: { name: string; value: number }[]; waitTime: number; constructor( private apiService: ApiService, private i18nService: I18nService, private platformUtilsService: PlatformUtilsService, private logService: LogService ) {} async ngOnInit() { this.editMode = this.loading = this.emergencyAccessId != null; this.waitTimes = [ { name: this.i18nService.t("oneDay"), value: 1 }, { name: this.i18nService.t("days", "2"), value: 2 }, { name: this.i18nService.t("days", "7"), value: 7 }, { name: this.i18nService.t("days", "14"), value: 14 }, { name: this.i18nService.t("days", "30"), value: 30 }, { name: this.i18nService.t("days", "90"), value: 90 }, ]; if (this.editMode) { this.editMode = true; this.title = this.i18nService.t("editEmergencyContact"); try { const emergencyAccess = await this.apiService.getEmergencyAccess(this.emergencyAccessId); this.type = emergencyAccess.type; this.waitTime = emergencyAccess.waitTimeDays; } catch (e) { this.logService.error(e); } } else { this.title = this.i18nService.t("inviteEmergencyContact"); this.waitTime = this.waitTimes[2].value; } this.loading = false; } async submit() { try { if (this.editMode) { const request = new EmergencyAccessUpdateRequest(); request.type = this.type; request.waitTimeDays = this.waitTime; this.formPromise = this.apiService.putEmergencyAccess(this.emergencyAccessId, request); } else { const request = new EmergencyAccessInviteRequest(); request.email = this.email.trim(); request.type = this.type; request.waitTimeDays = this.waitTime; this.formPromise = this.apiService.postEmergencyAccessInvite(request); } await this.formPromise; this.platformUtilsService.showToast( "success", null, this.i18nService.t(this.editMode ? "editedUserId" : "invitedUsers", this.name) ); this.onSaved.emit(); } catch (e) { this.logService.error(e); } } async delete() { this.onDeleted.emit(); } }
bitwarden/web/src/app/settings/emergency-access-add-edit.component.ts/0
{ "file_path": "bitwarden/web/src/app/settings/emergency-access-add-edit.component.ts", "repo_id": "bitwarden", "token_count": 1271 }
134
import { Component, Input, OnInit } from "@angular/core"; import { ApiService } from "jslib-common/abstractions/api.service"; import { LogService } from "jslib-common/abstractions/log.service"; import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service"; import { PaymentMethodType } from "jslib-common/enums/paymentMethodType"; import { ThemeType } from "jslib-common/enums/themeType"; import ThemeVariables from "src/scss/export.module.scss"; const lightInputColor = ThemeVariables.lightInputColor; const lightInputPlaceholderColor = ThemeVariables.lightInputPlaceholderColor; const darkInputColor = ThemeVariables.darkInputColor; const darkInputPlaceholderColor = ThemeVariables.darkInputPlaceholderColor; @Component({ selector: "app-payment", templateUrl: "payment.component.html", }) export class PaymentComponent implements OnInit { @Input() showMethods = true; @Input() showOptions = true; @Input() method = PaymentMethodType.Card; @Input() hideBank = false; @Input() hidePaypal = false; @Input() hideCredit = false; bank: any = { routing_number: null, account_number: null, account_holder_name: null, account_holder_type: "", currency: "USD", country: "US", }; paymentMethodType = PaymentMethodType; private btScript: HTMLScriptElement; private btInstance: any = null; private stripeScript: HTMLScriptElement; private stripe: any = null; private stripeElements: any = null; private stripeCardNumberElement: any = null; private stripeCardExpiryElement: any = null; private stripeCardCvcElement: any = null; private StripeElementStyle: any; private StripeElementClasses: any; constructor( private platformUtilsService: PlatformUtilsService, private apiService: ApiService, private logService: LogService ) { this.stripeScript = window.document.createElement("script"); this.stripeScript.src = "https://js.stripe.com/v3/"; this.stripeScript.async = true; this.stripeScript.onload = () => { this.stripe = (window as any).Stripe(process.env.STRIPE_KEY); this.stripeElements = this.stripe.elements(); this.setStripeElement(); }; this.btScript = window.document.createElement("script"); this.btScript.src = `scripts/dropin.js?cache=${process.env.CACHE_TAG}`; this.btScript.async = true; this.StripeElementStyle = { base: { color: null, fontFamily: '"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif, ' + '"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', fontSize: "14px", fontSmoothing: "antialiased", "::placeholder": { color: null, }, }, invalid: { color: null, }, }; this.StripeElementClasses = { focus: "is-focused", empty: "is-empty", invalid: "is-invalid", }; } async ngOnInit() { if (!this.showOptions) { this.hidePaypal = this.method !== PaymentMethodType.PayPal; this.hideBank = this.method !== PaymentMethodType.BankAccount; this.hideCredit = this.method !== PaymentMethodType.Credit; } await this.setTheme(); window.document.head.appendChild(this.stripeScript); if (!this.hidePaypal) { window.document.head.appendChild(this.btScript); } } ngOnDestroy() { window.document.head.removeChild(this.stripeScript); window.setTimeout(() => { Array.from(window.document.querySelectorAll("iframe")).forEach((el) => { if (el.src != null && el.src.indexOf("stripe") > -1) { try { window.document.body.removeChild(el); } catch (e) { this.logService.error(e); } } }); }, 500); if (!this.hidePaypal) { window.document.head.removeChild(this.btScript); window.setTimeout(() => { Array.from(window.document.head.querySelectorAll("script")).forEach((el) => { if (el.src != null && el.src.indexOf("paypal") > -1) { try { window.document.head.removeChild(el); } catch (e) { this.logService.error(e); } } }); const btStylesheet = window.document.head.querySelector("#braintree-dropin-stylesheet"); if (btStylesheet != null) { try { window.document.head.removeChild(btStylesheet); } catch (e) { this.logService.error(e); } } }, 500); } } changeMethod() { this.btInstance = null; if (this.method === PaymentMethodType.PayPal) { window.setTimeout(() => { (window as any).braintree.dropin.create( { authorization: process.env.BRAINTREE_KEY, container: "#bt-dropin-container", paymentOptionPriority: ["paypal"], paypal: { flow: "vault", buttonStyle: { label: "pay", size: "medium", shape: "pill", color: "blue", tagline: "false", }, }, }, (createErr: any, instance: any) => { if (createErr != null) { // eslint-disable-next-line console.error(createErr); return; } this.btInstance = instance; } ); }, 250); } else { this.setStripeElement(); } } createPaymentToken(): Promise<[string, PaymentMethodType]> { return new Promise((resolve, reject) => { if (this.method === PaymentMethodType.Credit) { resolve([null, this.method]); } else if (this.method === PaymentMethodType.PayPal) { this.btInstance .requestPaymentMethod() .then((payload: any) => { resolve([payload.nonce, this.method]); }) .catch((err: any) => { reject(err.message); }); } else if ( this.method === PaymentMethodType.Card || this.method === PaymentMethodType.BankAccount ) { if (this.method === PaymentMethodType.Card) { this.apiService .postSetupPayment() .then((clientSecret) => this.stripe.handleCardSetup(clientSecret, this.stripeCardNumberElement) ) .then((result: any) => { if (result.error) { reject(result.error.message); } else if (result.setupIntent && result.setupIntent.status === "succeeded") { resolve([result.setupIntent.payment_method, this.method]); } else { reject(); } }); } else { this.stripe.createToken("bank_account", this.bank).then((result: any) => { if (result.error) { reject(result.error.message); } else if (result.token && result.token.id != null) { resolve([result.token.id, this.method]); } else { reject(); } }); } } }); } handleStripeCardPayment(clientSecret: string, successCallback: () => Promise<any>): Promise<any> { return new Promise<void>((resolve, reject) => { if (this.showMethods && this.stripeCardNumberElement == null) { reject(); return; } const handleCardPayment = () => this.showMethods ? this.stripe.handleCardSetup(clientSecret, this.stripeCardNumberElement) : this.stripe.handleCardSetup(clientSecret); return handleCardPayment().then(async (result: any) => { if (result.error) { reject(result.error.message); } else if (result.paymentIntent && result.paymentIntent.status === "succeeded") { if (successCallback != null) { await successCallback(); } resolve(); } else { reject(); } }); }); } private setStripeElement() { window.setTimeout(() => { if (this.showMethods && this.method === PaymentMethodType.Card) { if (this.stripeCardNumberElement == null) { this.stripeCardNumberElement = this.stripeElements.create("cardNumber", { style: this.StripeElementStyle, classes: this.StripeElementClasses, placeholder: "", }); } if (this.stripeCardExpiryElement == null) { this.stripeCardExpiryElement = this.stripeElements.create("cardExpiry", { style: this.StripeElementStyle, classes: this.StripeElementClasses, }); } if (this.stripeCardCvcElement == null) { this.stripeCardCvcElement = this.stripeElements.create("cardCvc", { style: this.StripeElementStyle, classes: this.StripeElementClasses, placeholder: "", }); } this.stripeCardNumberElement.mount("#stripe-card-number-element"); this.stripeCardExpiryElement.mount("#stripe-card-expiry-element"); this.stripeCardCvcElement.mount("#stripe-card-cvc-element"); } }, 50); } private async setTheme() { const theme = await this.platformUtilsService.getEffectiveTheme(); if (theme === ThemeType.Dark) { this.StripeElementStyle.base.color = darkInputColor; this.StripeElementStyle.base["::placeholder"].color = darkInputPlaceholderColor; this.StripeElementStyle.invalid.color = darkInputColor; } else { this.StripeElementStyle.base.color = lightInputColor; this.StripeElementStyle.base["::placeholder"].color = lightInputPlaceholderColor; this.StripeElementStyle.invalid.color = lightInputColor; } } }
bitwarden/web/src/app/settings/payment.component.ts/0
{ "file_path": "bitwarden/web/src/app/settings/payment.component.ts", "repo_id": "bitwarden", "token_count": 4296 }
135
<div class="page-header"> <h1>{{ "sponsoredFamilies" | i18n }}</h1> </div> <ng-container *ngIf="loading"> <i class="bwi bwi-spinner bwi-spin text-muted" title="{{ 'loading' | i18n }}"></i> <span class="sr-only">{{ "loading" | i18n }}</span> </ng-container> <ng-container *ngIf="!loading"> <p> {{ "sponsoredFamiliesEligible" | i18n }} </p> <div> {{ "sponsoredFamiliesInclude" | i18n }}: <ul class="inset-list"> <li>{{ "sponsoredFamiliesPremiumAccess" | i18n }}</li> <li>{{ "sponsoredFamiliesSharedCollections" | i18n }}</li> </ul> </div> <form #form (ngSubmit)="submit()" [appApiAction]="formPromise" [formGroup]="sponsorshipForm" ngNativeValidate *ngIf="anyOrgsAvailable" > <div class="form-group col-7"> <label for="availableSponsorshipOrg">{{ "familiesSponsoringOrgSelect" | i18n }}</label> <select id="availableSponsorshipOrg" name="Available Sponsorship Organization" formControlName="selectedSponsorshipOrgId" class="form-control" required > <option disabled="true" value="">-- {{ "select" | i18n }} --</option> <option *ngFor="let o of availableSponsorshipOrgs" [ngValue]="o.id">{{ o.name }}</option> </select> </div> <div class="form-group col-7"> <label for="sponsorshipEmail">{{ "sponsoredFamiliesEmail" | i18n }}:</label> <input id="sponsorshipEmail" class="form-control" inputmode="email" formControlName="sponsorshipEmail" name="sponsorshipEmail" required [attr.aria-invalid]="sponsorshipEmailControl.invalid" /> <small aria-errormessage="sponsorshipEmail" *ngIf="sponsorshipEmailControl.errors?.notAllowedValue" class="error-inline" role="alert" > <i class="bwi bwi-error" aria-hidden="true"></i> {{ "cannotSponsorSelf" | i18n }} </small> <small aria-errormessage="sponsorshipEmail" *ngIf="sponsorshipEmailControl.errors?.email" class="error-inline" role="alert" > <i class="bwi bwi-error" aria-hidden="true"></i> {{ "invalidEmail" | i18n }} </small> </div> <div class="form-group col-7"> <button class="btn btn-primary btn-submit mt-2" type="submit" [disabled]="form.loading"> <i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i> <span>{{ "redeem" | i18n }}</span> </button> </div> </form> <ng-container *ngIf="anyActiveSponsorships"> <div class="border-bottom"> <table class="table table-hover table-list"> <thead> <tr> <th>{{ "recipient" | i18n }}</th> <th>{{ "sponsoringOrg" | i18n }}</th> <th>{{ "status" | i18n }}</th> <th></th> </tr> </thead> <tbody> <ng-container *ngFor="let o of activeSponsorshipOrgs"> <tr sponsoring-org-row [sponsoringOrg]="o" [isSelfHosted]="isSelfHosted" (sponsorshipRemoved)="load(true)" ></tr> </ng-container> </tbody> </table> </div> <small>{{ "sponsoredFamiliesLeaveCopy" | i18n }}</small> </ng-container> </ng-container>
bitwarden/web/src/app/settings/sponsored-families.component.html/0
{ "file_path": "bitwarden/web/src/app/settings/sponsored-families.component.html", "repo_id": "bitwarden", "token_count": 1579 }
136
<div class="modal fade" role="dialog" aria-modal="true" aria-labelledby="2faRecoveryTitle"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h2 class="modal-title" id="2faRecoveryTitle"> {{ "twoStepLogin" | i18n }} <small>{{ "recoveryCodeTitle" | i18n }}</small> </h2> <button type="button" class="close" data-dismiss="modal" appA11yTitle="{{ 'close' | i18n }}" > <span aria-hidden="true">&times;</span> </button> </div> <app-two-factor-verify [organizationId]="organizationId" [type]="type" (onAuthed)="auth($event)" *ngIf="!authed" > </app-two-factor-verify> <ng-container *ngIf="authed"> <div class="modal-body text-center"> <ng-container *ngIf="code"> <p>{{ "twoFactorRecoveryYourCode" | i18n }}:</p> <code class="text-lg">{{ code }}</code> </ng-container> <ng-container *ngIf="!code"> {{ "twoFactorRecoveryNoCode" | i18n }} </ng-container> </div> <div class="modal-footer"> <button type="button" class="btn btn-primary" (click)="print()" *ngIf="code"> {{ "printCode" | i18n }} </button> <button type="button" class="btn btn-outline-secondary" data-dismiss="modal"> {{ "close" | i18n }} </button> </div> </ng-container> </div> </div> </div>
bitwarden/web/src/app/settings/two-factor-recovery.component.html/0
{ "file_path": "bitwarden/web/src/app/settings/two-factor-recovery.component.html", "repo_id": "bitwarden", "token_count": 811 }
137
<div [ngClass]="{ 'page-header': selfHosted, 'tabbed-header': !selfHosted }" > <h1> {{ title }} <small *ngIf="firstLoaded && loading"> <i class="bwi bwi-spinner bwi-spin text-muted" title="{{ 'loading' | i18n }}" aria-hidden="true" ></i> <span class="sr-only">{{ "loading" | i18n }}</span> </small> </h1> </div> <ng-container *ngIf="!firstLoaded && loading"> <i class="bwi bwi-spinner bwi-spin text-muted" title="{{ 'loading' | i18n }}" aria-hidden="true" ></i> <span class="sr-only">{{ "loading" | i18n }}</span> </ng-container> <ng-container *ngIf="sub"> <bit-callout type="warning" title="{{ 'canceled' | i18n }}" *ngIf="subscription && subscription.cancelled" > {{ "subscriptionCanceled" | i18n }}</bit-callout > <bit-callout type="warning" title="{{ 'pendingCancellation' | i18n }}" *ngIf="subscriptionMarkedForCancel" > <p>{{ "subscriptionPendingCanceled" | i18n }}</p> <button bitButton type="button" buttonType="secondary" #reinstateBtn class="btn-submit" (click)="reinstate()" [appApiAction]="reinstatePromise" [disabled]="reinstateBtn.loading" > <i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i> <span>{{ "reinstateSubscription" | i18n }}</span> </button> </bit-callout> <dl *ngIf="selfHosted"> <dt>{{ "expiration" | i18n }}</dt> <dd *ngIf="sub.expiration">{{ sub.expiration | date: "mediumDate" }}</dd> <dd *ngIf="!sub.expiration">{{ "neverExpires" | i18n }}</dd> </dl> <div class="row" *ngIf="!selfHosted"> <div class="col-4"> <dl> <dt>{{ "status" | i18n }}</dt> <dd> <span class="text-capitalize">{{ (subscription && subscription.status) || "-" }}</span> <span bitBadge badgeType="warning" *ngIf="subscriptionMarkedForCancel">{{ "pendingCancellation" | i18n }}</span> </dd> <dt>{{ "nextCharge" | i18n }}</dt> <dd> {{ nextInvoice ? (nextInvoice.date | date: "mediumDate") + ", " + (nextInvoice.amount | currency: "$") : "-" }} </dd> </dl> </div> <div class="col-8" *ngIf="subscription"> <strong class="d-block mb-1">{{ "details" | i18n }}</strong> <table class="table"> <tbody> <tr *ngFor="let i of subscription.items"> <td> {{ i.name }} {{ i.quantity > 1 ? "&times;" + i.quantity : "" }} @ {{ i.amount | currency: "$" }} </td> <td>{{ i.quantity * i.amount | currency: "$" }} /{{ i.interval | i18n }}</td> </tr> </tbody> </table> </div> </div> <ng-container *ngIf="selfHosted"> <div> <button type="button" bitButton buttonType="secondary" (click)="updateLicense()"> {{ "updateLicense" | i18n }} </button> <a bitButton buttonType="secondary" href="https://vault.bitwarden.com/#/settings/subscription" target="_blank" rel="noopener" > {{ "manageSubscription" | i18n }} </a> </div> <div class="card mt-3" *ngIf="showUpdateLicense"> <div class="card-body"> <button type="button" class="close" appA11yTitle="{{ 'cancel' | i18n }}" (click)="closeUpdateLicense(false)" > <span aria-hidden="true">&times;</span> </button> <h3 class="card-body-header">{{ "updateLicense" | i18n }}</h3> <app-update-license (onUpdated)="closeUpdateLicense(true)" (onCanceled)="closeUpdateLicense(false)" > </app-update-license> </div> </div> </ng-container> <ng-container *ngIf="!selfHosted"> <div class="d-flex"> <button bitButton type="button" buttonType="secondary" (click)="downloadLicense()" *ngIf="!subscription || !subscription.cancelled" > {{ "downloadLicense" | i18n }} </button> <button bitButton #cancelBtn type="button" buttonType="danger" class="btn-submit tw-ml-auto" (click)="cancel()" [appApiAction]="cancelPromise" [disabled]="cancelBtn.loading" *ngIf="subscription && !subscription.cancelled && !subscriptionMarkedForCancel" > <i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i> <span>{{ "cancelSubscription" | i18n }}</span> </button> </div> <h2 class="spaced-header">{{ "storage" | i18n }}</h2> <p>{{ "subscriptionStorage" | i18n: sub.maxStorageGb || 0:sub.storageName || "0 MB" }}</p> <div class="progress"> <div class="progress-bar bg-success" role="progressbar" [ngStyle]="{ width: storageProgressWidth + '%' }" [attr.aria-valuenow]="storagePercentage" aria-valuemin="0" aria-valuemax="100" > {{ storagePercentage / 100 | percent }} </div> </div> <ng-container *ngIf="subscription && !subscription.cancelled && !subscriptionMarkedForCancel"> <div class="mt-3"> <div class="d-flex" *ngIf="!showAdjustStorage"> <button bitButton type="button" buttonType="secondary" (click)="adjustStorage(true)"> {{ "addStorage" | i18n }} </button> <button bitButton type="button" buttonType="secondary" class="tw-ml-1" (click)="adjustStorage(false)" > {{ "removeStorage" | i18n }} </button> </div> <app-adjust-storage [storageGbPrice]="4" [add]="adjustStorageAdd" (onAdjusted)="closeStorage(true)" (onCanceled)="closeStorage(false)" *ngIf="showAdjustStorage" ></app-adjust-storage> </div> </ng-container> </ng-container> </ng-container>
bitwarden/web/src/app/settings/user-subscription.component.html/0
{ "file_path": "bitwarden/web/src/app/settings/user-subscription.component.html", "repo_id": "bitwarden", "token_count": 3022 }
138
<ng-container> <h3 class="mt-4">{{ "customFields" | i18n }}</h3> <div cdkDropList (cdkDropListDropped)="drop($event)" *ngIf="cipher.hasFields"> <div class="row" cdkDrag *ngFor="let f of cipher.fields; let i = index; trackBy: trackByFunction" > <div class="col-5 form-group"> <div class="d-flex"> <label for="fieldName{{ i }}">{{ "name" | i18n }}</label> <a class="ml-auto" href="https://bitwarden.com/help/custom-fields/" target="_blank" rel="noopener" appA11yTitle="{{ 'learnMore' | i18n }}" > <i class="bwi bwi-question-circle" aria-hidden="true"></i> </a> </div> <input id="fieldName{{ i }}" type="text" name="Field.Name{{ i }}" [(ngModel)]="f.name" class="form-control" appInputVerbatim [disabled]="cipher.isDeleted || viewOnly" /> </div> <div class="col-7 form-group"> <label for="fieldValue{{ i }}">{{ "value" | i18n }}</label> <div class="d-flex align-items-center"> <!-- Text --> <div class="input-group" *ngIf="f.type === fieldType.Text"> <input id="fieldValue{{ i }}" class="form-control" type="text" name="Field.Value{{ i }}" [(ngModel)]="f.value" appInputVerbatim [disabled]="cipher.isDeleted || viewOnly" /> <div class="input-group-append"> <button type="button" class="btn btn-outline-secondary" appA11yTitle="{{ 'copyValue' | i18n }}" (click)="copy(f.value, 'value', 'Field')" > <i class="bwi bwi-lg bwi-clone" aria-hidden="true"></i> </button> </div> </div> <!-- Hidden --> <div class="input-group" *ngIf="f.type === fieldType.Hidden"> <input id="fieldValue{{ i }}" type="{{ f.showValue ? 'text' : 'password' }}" name="Field.Value{{ i }}" [(ngModel)]="f.value" class="form-control text-monospace" appInputVerbatim autocomplete="new-password" [disabled]="cipher.isDeleted || viewOnly || (!cipher.viewPassword && !f.newField)" /> <div class="input-group-append"> <button type="button" class="btn btn-outline-secondary" appA11yTitle="{{ 'toggleVisibility' | i18n }}" (click)="toggleFieldValue(f)" [disabled]="!cipher.viewPassword && !f.newField" > <i class="bwi bwi-lg" aria-hidden="true" [ngClass]="{ 'bwi-eye': !f.showValue, 'bwi-eye-slash': f.showValue }" > </i> </button> <button type="button" class="btn btn-outline-secondary" appA11yTitle="{{ 'copyValue' | i18n }}" (click)="copy(f.value, 'value', f.type === fieldType.Hidden ? 'H_Field' : 'Field')" [disabled]="!cipher.viewPassword && !f.newField" > <i class="bwi bwi-lg bwi-clone" aria-hidden="true"></i> </button> </div> </div> <!-- Linked --> <div class="input-group" *ngIf="f.type === fieldType.Linked"> <select id="fieldValue{{ i }}" name="Field.Value{{ i }}" class="form-control" [(ngModel)]="f.linkedId" *ngIf="f.type === fieldType.Linked && cipher.linkedFieldOptions != null" [disabled]="cipher.isDeleted || viewOnly" > <option *ngFor="let o of linkedFieldOptions" [ngValue]="o.value">{{ o.name }}</option> </select> </div> <div class="flex-fill"> <!-- Boolean --> <input id="fieldValue{{ i }}" name="Field.Value{{ i }}" type="checkbox" [(ngModel)]="f.value" *ngIf="f.type === fieldType.Boolean" appTrueFalseValue trueValue="true" falseValue="false" [disabled]="cipher.isDeleted || viewOnly" /> </div> <button type="button" class="btn btn-link text-danger ml-2" (click)="removeField(f)" appA11yTitle="{{ 'remove' | i18n }}" *ngIf="!cipher.isDeleted && !viewOnly" > <i class="bwi bwi-minus-circle bwi-lg" aria-hidden="true"></i> </button> <button type="button" class="btn btn-link text-muted cursor-move" appA11yTitle="{{ 'dragToSort' | i18n }}" *ngIf="!cipher.isDeleted && !viewOnly" > <i class="bwi bwi-hamburger bwi-lg" aria-hidden="true"></i> </button> </div> </div> </div> </div> <!-- Add new custom field --> <a href="#" appStopClick (click)="addField()" class="d-inline-block mb-2" *ngIf="!cipher.isDeleted && !viewOnly" > <i class="bwi bwi-plus-circle bwi-fw" aria-hidden="true"></i> {{ "newCustomField" | i18n }} </a> <div class="row" *ngIf="!cipher.isDeleted && !viewOnly"> <div class="col-5"> <label for="addFieldType" class="sr-only">{{ "type" | i18n }}</label> <select id="addFieldType" class="form-control" name="AddFieldType" [(ngModel)]="addFieldType"> <option *ngFor="let o of addFieldTypeOptions" [ngValue]="o.value">{{ o.name }}</option> <option *ngIf="cipher.linkedFieldOptions != null" [ngValue]="addFieldLinkedTypeOption.value" > {{ addFieldLinkedTypeOption.name }} </option> </select> </div> </div> </ng-container>
bitwarden/web/src/app/vault/add-edit-custom-fields.component.html/0
{ "file_path": "bitwarden/web/src/app/vault/add-edit-custom-fields.component.html", "repo_id": "bitwarden", "token_count": 3360 }
139
<ng-container *ngIf="isPaging() ? pagedCiphers : ciphers as filteredCiphers"> <table class="table table-hover table-list table-ciphers" *ngIf="filteredCiphers.length" infiniteScroll [infiniteScrollDistance]="1" [infiniteScrollDisabled]="!isPaging()" (scrolled)="loadMore()" > <tbody> <tr *ngFor="let c of filteredCiphers"> <td (click)="checkCipher(c)" class="table-list-checkbox"> <input type="checkbox" [(ngModel)]="c.checked" appStopProp /> </td> <td (click)="checkCipher(c)" class="table-list-icon"> <app-vault-icon [cipher]="c"></app-vault-icon> </td> <td (click)="checkCipher(c)" class="reduced-lh wrap"> <a appStopProp [routerLink]="[]" [queryParams]="{ cipherId: c.id }" queryParamsHandling="merge" title="{{ 'editItem' | i18n }}" >{{ c.name }}</a > <ng-container *ngIf="c.hasAttachments"> <i class="bwi bwi-paperclip" appStopProp title="{{ 'attachments' | i18n }}" aria-hidden="true" ></i> <span class="sr-only">{{ "attachments" | i18n }}</span> <ng-container *ngIf="showFixOldAttachments(c)"> <i class="bwi bwi-exclamation-triangle text-warning" appStopProp title="{{ 'attachmentsNeedFix' | i18n }}" aria-hidden="true" ></i> <span class="sr-only">{{ "attachmentsNeedFix" | i18n }}</span> </ng-container> </ng-container> <br /> <small appStopProp>{{ c.subTitle }}</small> </td> <td *ngIf="organizations.length > 0 && !organization" class="tw-w-28"> <app-org-badge organizationName="{{ c.organizationId | orgNameFromId: organizations }}" profileName="{{ profileName }}" (onOrganizationClicked)="onOrganizationClicked(c.organizationId)" > </app-org-badge> </td> <td class="table-list-options"> <button [bitMenuTriggerFor]="cipherOptions" class="tw-border-none tw-bg-transparent tw-text-main" type="button" appA11yTitle="{{ 'options' | i18n }}" > <i class="bwi bwi-ellipsis-v bwi-lg" aria-hidden="true"></i> </button> <bit-menu #cipherOptions> <ng-container *ngIf="c.type === cipherType.Login && !c.isDeleted"> <button bitMenuItem (click)="copy(c, c.login.username, 'username', 'Username')"> <i class="bwi bwi-fw bwi-clone" aria-hidden="true"></i> {{ "copyUsername" | i18n }} </button> <button bitMenuItem (click)="copy(c, c.login.password, 'password', 'Password')" *ngIf="c.viewPassword" > <i class="bwi bwi-fw bwi-clone" aria-hidden="true"></i> {{ "copyPassword" | i18n }} </button> <button bitMenuItem (click)="copy(c, c.login.totp, 'verificationCodeTotp', 'TOTP')" *ngIf="displayTotpCopyButton(c)" > <i class="bwi bwi-fw bwi-clone" aria-hidden="true"></i> {{ "copyVerificationCode" | i18n }} </button> <button bitMenuItem *ngIf="c.login.canLaunch" (click)="launch(c.login.launchUri)"> <i class="bwi bwi-fw bwi-share-square" aria-hidden="true"></i> {{ "launch" | i18n }} </button> </ng-container> <button bitMenuItem (click)="attachments(c)"> <i class="bwi bwi-fw bwi-paperclip" aria-hidden="true"></i> {{ "attachments" | i18n }} </button> <button bitMenuItem *ngIf="((!organization && !c.organizationId) || organization) && !c.isDeleted" (click)="clone(c)" > <i class="bwi bwi-fw bwi-files" aria-hidden="true"></i> {{ "clone" | i18n }} </button> <button bitMenuItem *ngIf="!organization && !c.organizationId && !c.isDeleted" (click)="share(c)" > <i class="bwi bwi-fw bwi-arrow-circle-right" aria-hidden="true"></i> {{ "moveToOrganization" | i18n }} </button> <button bitMenuItem *ngIf="c.organizationId && !c.isDeleted" (click)="collections(c)"> <i class="bwi bwi-fw bwi-collection" aria-hidden="true"></i> {{ "collections" | i18n }} </button> <button bitMenuItem *ngIf="c.organizationId && accessEvents" (click)="events(c)"> <i class="bwi bwi-fw bwi-file-text" aria-hidden="true"></i> {{ "eventLogs" | i18n }} </button> <button bitMenuItem (click)="restore(c)" *ngIf="c.isDeleted"> <i class="bwi bwi-fw bwi-undo" aria-hidden="true"></i> {{ "restore" | i18n }} </button> <button bitMenuItem (click)="delete(c)"> <span class="tw-text-danger"> <i class="bwi bwi-fw bwi-trash" aria-hidden="true"></i> {{ (c.isDeleted ? "permanentlyDelete" : "delete") | i18n }} </span> </button> </bit-menu> </td> </tr> </tbody> </table> <div class="no-items" *ngIf="!filteredCiphers.length"> <ng-container *ngIf="!loaded"> <i class="bwi bwi-spinner bwi-spin text-muted" title="{{ 'loading' | i18n }}" aria-hidden="true" ></i> <span class="sr-only">{{ "loading" | i18n }}</span> </ng-container> <ng-container *ngIf="loaded"> <p>{{ "noItemsInList" | i18n }}</p> <button (click)="addCipher()" class="btn btn-outline-primary" *ngIf="showAddNew"> <i class="bwi bwi-plus bwi-fw"></i>{{ "addItem" | i18n }} </button> </ng-container> </div> </ng-container>
bitwarden/web/src/app/vault/ciphers.component.html/0
{ "file_path": "bitwarden/web/src/app/vault/ciphers.component.html", "repo_id": "bitwarden", "token_count": 3353 }
140
export function getQsParam(name: string) { const url = window.location.href; // eslint-disable-next-line name = name.replace(/[\[\]]/g, "\\$&"); const regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"); const results = regex.exec(url); if (!results) { return null; } if (!results[2]) { return ""; } return decodeURIComponent(results[2].replace(/\+/g, " ")); } export function b64Decode(str: string, spaceAsPlus = false) { if (spaceAsPlus) { str = str.replace(/ /g, "+"); } return decodeURIComponent( Array.prototype.map .call(atob(str), (c: string) => { return "%" + ("00" + c.charCodeAt(0).toString(16)).slice(-2); }) .join("") ); }
bitwarden/web/src/connectors/common.ts/0
{ "file_path": "bitwarden/web/src/connectors/common.ts", "repo_id": "bitwarden", "token_count": 305 }
141
{ "pageTitle": { "message": "Webový trezor $APP_NAME$", "description": "The title of the website in the browser window.", "placeholders": { "app_name": { "content": "$1", "example": "Bitwarden" } } }, "whatTypeOfItem": { "message": "O jaký typ položky se jedná?" }, "name": { "message": "Název" }, "uri": { "message": "URI" }, "uriPosition": { "message": "URI $POSITION$", "description": "A listing of URIs. Ex: URI 1, URI 2, URI 3, etc.", "placeholders": { "position": { "content": "$1", "example": "2" } } }, "newUri": { "message": "Nová URI" }, "username": { "message": "Uživatelské jméno" }, "password": { "message": "Heslo" }, "newPassword": { "message": "Nové heslo" }, "passphrase": { "message": "Heslová fráze" }, "notes": { "message": "Poznámky" }, "customFields": { "message": "Vlastní pole" }, "cardholderName": { "message": "Jméno držitele karty" }, "number": { "message": "Číslo" }, "brand": { "message": "Značka" }, "expiration": { "message": "Expirace" }, "securityCode": { "message": "Bezpečnostní kód (CVV)" }, "identityName": { "message": "Název identity" }, "company": { "message": "Firma" }, "ssn": { "message": "Číslo sociálního pojištění" }, "passportNumber": { "message": "Číslo cestovního pasu" }, "licenseNumber": { "message": "Číslo dokladu totožnosti" }, "email": { "message": "E-mail" }, "phone": { "message": "Telefon" }, "january": { "message": "Leden" }, "february": { "message": "Únor" }, "march": { "message": "Březen" }, "april": { "message": "Duben" }, "may": { "message": "Květen" }, "june": { "message": "Červen" }, "july": { "message": "Červenec" }, "august": { "message": "Srpen" }, "september": { "message": "Září" }, "october": { "message": "Říjen" }, "november": { "message": "Listopad" }, "december": { "message": "Prosinec" }, "title": { "message": "Oslovení" }, "mr": { "message": "Pan" }, "mrs": { "message": "Paní" }, "ms": { "message": "Slečna" }, "dr": { "message": "MUDr" }, "expirationMonth": { "message": "Měsíc expirace" }, "expirationYear": { "message": "Rok expirace" }, "authenticatorKeyTotp": { "message": "Autentizační klíč (TOTP)" }, "folder": { "message": "Složka" }, "newCustomField": { "message": "Nové vlastní pole" }, "value": { "message": "Hodnota" }, "dragToSort": { "message": "Přetáhnutím seřadíte" }, "cfTypeText": { "message": "Text" }, "cfTypeHidden": { "message": "Skryté" }, "cfTypeBoolean": { "message": "Ano/Ne" }, "cfTypeLinked": { "message": "Propojeno", "description": "This describes a field that is 'linked' (related) to another field." }, "remove": { "message": "Smazat" }, "unassigned": { "message": "Nepřiřazené" }, "noneFolder": { "message": "Žádná složka", "description": "This is the folder for uncategorized items" }, "addFolder": { "message": "Přidat složku" }, "editFolder": { "message": "Upravit složku" }, "baseDomain": { "message": "Základní doména", "description": "Domain name. Ex. website.com" }, "domainName": { "message": "Domain Name", "description": "Domain name. Ex. website.com" }, "host": { "message": "Host", "description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'." }, "exact": { "message": "Přesně" }, "startsWith": { "message": "Začíná na" }, "regEx": { "message": "Regulární výraz", "description": "A programming term, also known as 'RegEx'." }, "matchDetection": { "message": "Zjišťování shody", "description": "URI match detection for auto-fill." }, "defaultMatchDetection": { "message": "Výchozí", "description": "Default URI match detection for auto-fill." }, "never": { "message": "Nikdy" }, "toggleVisibility": { "message": "Přepnout viditelnost" }, "toggleCollapse": { "message": "Přepnout sbalení", "description": "Toggling an expand/collapse state." }, "generatePassword": { "message": "Vygenerovat heslo" }, "checkPassword": { "message": "Zkontrolujte, zda nedošlo k úniku hesla." }, "passwordExposed": { "message": "K úniku tohoto hesla došlo celkem $VALUE$x. Měli byste jej změnit.", "placeholders": { "value": { "content": "$1", "example": "2" } } }, "passwordSafe": { "message": "K úniku tohoto hesla nedošlo v žádném ze známých případů. Mělo by být bezpečné používat jej i nadále." }, "save": { "message": "Uložit" }, "cancel": { "message": "Zrušit" }, "canceled": { "message": "Zrušeno" }, "close": { "message": "Zavřít" }, "delete": { "message": "Smazat" }, "favorite": { "message": "Oblíbené" }, "unfavorite": { "message": "Odebrat z oblízených" }, "edit": { "message": "Upravit" }, "searchCollection": { "message": "Vyhledat v kolekci" }, "searchFolder": { "message": "Vyhledat ve složce" }, "searchFavorites": { "message": "Vyhledat v oblíbených" }, "searchType": { "message": "Vyhledat v typu", "description": "Search item type" }, "searchVault": { "message": "Vyhledat v trezoru" }, "allItems": { "message": "Všechny položky" }, "favorites": { "message": "Oblíbené" }, "types": { "message": "Typy" }, "typeLogin": { "message": "Přihlášení" }, "typeCard": { "message": "Karta" }, "typeIdentity": { "message": "Identita" }, "typeSecureNote": { "message": "Poznámka" }, "typeLoginPlural": { "message": "Přihlašovací údaje" }, "typeCardPlural": { "message": "Karty" }, "typeIdentityPlural": { "message": "Identity" }, "typeSecureNotePlural": { "message": "Zabezpečené poznámky" }, "folders": { "message": "Složky" }, "collections": { "message": "Kolekce" }, "firstName": { "message": "Jméno" }, "middleName": { "message": "Druhé jméno" }, "lastName": { "message": "Příjmení" }, "fullName": { "message": "Celé jméno" }, "address1": { "message": "Adresa 1" }, "address2": { "message": "Adresa 2" }, "address3": { "message": "Adresa 3" }, "cityTown": { "message": "Město" }, "stateProvince": { "message": "Kraj / Provincie" }, "zipPostalCode": { "message": "PSČ" }, "country": { "message": "Stát" }, "shared": { "message": "Sdílené" }, "attachments": { "message": "Přílohy" }, "select": { "message": "Vybrat" }, "addItem": { "message": "Přidat položku" }, "editItem": { "message": "Upravit položku" }, "viewItem": { "message": "Zobrazit položku" }, "ex": { "message": "např.", "description": "Short abbreviation for 'example'." }, "other": { "message": "Ostatní" }, "share": { "message": "Sdílet" }, "moveToOrganization": { "message": "Přesunout do organizace" }, "valueCopied": { "message": "$VALUE$ zkopírováno", "description": "Value has been copied to the clipboard.", "placeholders": { "value": { "content": "$1", "example": "Password" } } }, "copyValue": { "message": "Zkopírovat hodnotu", "description": "Copy value to clipboard" }, "copyPassword": { "message": "Kopírovat heslo", "description": "Copy password to clipboard" }, "copyUsername": { "message": "Kopírovat uživatelské jméno", "description": "Copy username to clipboard" }, "copyNumber": { "message": "Kopírovat číslo", "description": "Copy credit card number" }, "copySecurityCode": { "message": "Kopírovat bezpečnostní kód", "description": "Copy credit card security code (CVV)" }, "copyUri": { "message": "Kopírovat URI", "description": "Copy URI to clipboard" }, "myVault": { "message": "Můj trezor" }, "vault": { "message": "Trezor" }, "moveSelectedToOrg": { "message": "Přesunout vybrané do organizace" }, "deleteSelected": { "message": "Smazat vybrané" }, "moveSelected": { "message": "Přesunout vybrané" }, "selectAll": { "message": "Vybrat vše" }, "unselectAll": { "message": "Zrušit výběr" }, "launch": { "message": "Spustit" }, "newAttachment": { "message": "Přidat přílohu" }, "deletedAttachment": { "message": "Příloha byla smazána." }, "deleteAttachmentConfirmation": { "message": "Opravdu chcete tuto přílohu smazat?" }, "attachmentSaved": { "message": "Příloha byla uložena" }, "file": { "message": "Soubor" }, "selectFile": { "message": "Vybrat soubor." }, "maxFileSize": { "message": "Maximální velikost souboru je 500 MB." }, "updateKey": { "message": "Tuto funkci nemůžete použít dokud neaktualizujete svůj šifrovací klíč." }, "addedItem": { "message": "Položka byla přidána" }, "editedItem": { "message": "Položka byla upravena" }, "movedItemToOrg": { "message": "$ITEMNAME$ přesunut do $ORGNAME$", "placeholders": { "itemname": { "content": "$1", "example": "Secret Item" }, "orgname": { "content": "$2", "example": "Company Name" } } }, "movedItemsToOrg": { "message": "Vybrané položky přesunuty do $ORGNAME$", "placeholders": { "orgname": { "content": "$1", "example": "Company Name" } } }, "deleteItem": { "message": "Smazat položku" }, "deleteFolder": { "message": "Smazat složku" }, "deleteAttachment": { "message": "Smazat přílohu" }, "deleteItemConfirmation": { "message": "Opravdu chcete položku přesunout do koše?" }, "deletedItem": { "message": "Položka byla přesunuta do koše" }, "deletedItems": { "message": "Položky byly přesunuty do koše" }, "movedItems": { "message": "Položky byly přesunuty" }, "overwritePasswordConfirmation": { "message": "Opravdu chcete přepsat aktuální heslo?" }, "editedFolder": { "message": "Složka byla upravena" }, "addedFolder": { "message": "Složka byla přidána" }, "deleteFolderConfirmation": { "message": "Opravdu chcete tuto složku smazat?" }, "deletedFolder": { "message": "Složka byla smazána." }, "loggedOut": { "message": "Odhlášení" }, "loginExpired": { "message": "Platnost přihlášení vypršela." }, "logOutConfirmation": { "message": "Opravdu se chcete odhlásit?" }, "logOut": { "message": "Odhlásit se" }, "ok": { "message": "OK" }, "yes": { "message": "Ano" }, "no": { "message": "Ne" }, "loginOrCreateNewAccount": { "message": "Pro přístup do vašeho bezpečného trezoru se přihlaste nebo si vytvořte nový účet." }, "createAccount": { "message": "Vytvořit účet" }, "logIn": { "message": "Přihlásit se" }, "submit": { "message": "Potvrdit" }, "emailAddressDesc": { "message": "Vaši e-mailovou adresu budete používat k přihlášení." }, "yourName": { "message": "Vaše jméno" }, "yourNameDesc": { "message": "Jak vám máme říkat?" }, "masterPass": { "message": "Hlavní heslo" }, "masterPassDesc": { "message": "Hlavní heslo je heslo, které používáte k přístupu do vašeho trezoru. Je velmi důležité, abyste jej nezapomněli. Neexistuje totiž žádný způsob, jak heslo obnovit v případě, že jste na něj zapomněli." }, "masterPassHintDesc": { "message": "Nápověda k hlavnímu heslu vám pomůže zapamatovat si heslo, pokud ho zapomenete." }, "reTypeMasterPass": { "message": "Znovu zadejte hlavní heslo" }, "masterPassHint": { "message": "Nápověda k hlavnímu heslu (volitelné)" }, "masterPassHintLabel": { "message": "Nápověda k hlavnímu heslu" }, "settings": { "message": "Nastavení" }, "passwordHint": { "message": "Nápověda k heslu" }, "enterEmailToGetHint": { "message": "Zadejte e-mailovou adresu pro zaslání nápovědy k hlavnímu heslu." }, "getMasterPasswordHint": { "message": "Zaslat nápovědu k hlavnímu heslu" }, "emailRequired": { "message": "E-mailová adresa je povinná." }, "invalidEmail": { "message": "Neplatná e-mailová adresa." }, "masterPassRequired": { "message": "Hlavní heslo je povinné." }, "masterPassLength": { "message": "Hlavní heslo musí obsahovat alespoň 8 znaků." }, "masterPassDoesntMatch": { "message": "Potvrzení hlavního hesla se neshoduje." }, "newAccountCreated": { "message": "Váš účet byl vytvořen! Můžete se přihlásit." }, "masterPassSent": { "message": "Poslali jsme vám e-mail s nápovědou k hlavnímu heslu." }, "unexpectedError": { "message": "Došlo k neznámé chybě" }, "emailAddress": { "message": "E-mailová adresa" }, "yourVaultIsLocked": { "message": "Váš trezor je uzamčen. Pro pokračování musíte zadat hlavní heslo." }, "unlock": { "message": "Odemknout" }, "loggedInAsEmailOn": { "message": "Přihlášen jako $EMAIL$ na $HOSTNAME$.", "placeholders": { "email": { "content": "$1", "example": "name@example.com" }, "hostname": { "content": "$2", "example": "bitwarden.com" } } }, "invalidMasterPassword": { "message": "Chybné hlavní heslo" }, "lockNow": { "message": "Zamknout nyní" }, "noItemsInList": { "message": "Žádné položky k zobrazení." }, "noCollectionsInList": { "message": "Žádné kolekce k zobrazení." }, "noGroupsInList": { "message": "Žádné skupiny k zobrazení." }, "noUsersInList": { "message": "Žádní uživatelé k zobrazení." }, "noEventsInList": { "message": "Žádné události k zobrazení." }, "newOrganization": { "message": "Nová organizace" }, "noOrganizationsList": { "message": "Nepatříte do žádné organizace. Organizace umožňují bezpečné sdílení položek s ostatními uživateli." }, "versionNumber": { "message": "Verze $VERSION_NUMBER$", "placeholders": { "version_number": { "content": "$1", "example": "1.2.3" } } }, "enterVerificationCodeApp": { "message": "Zadejte 6místný kód z ověřovací aplikace." }, "enterVerificationCodeEmail": { "message": "Zadejte 6místný kód z e-mailu, který byl zaslán na $EMAIL$.", "placeholders": { "email": { "content": "$1", "example": "example@gmail.com" } } }, "verificationCodeEmailSent": { "message": "Ověřovací e-mail byl zaslán na $EMAIL$.", "placeholders": { "email": { "content": "$1", "example": "example@gmail.com" } } }, "rememberMe": { "message": "Pamatuj si mě" }, "sendVerificationCodeEmailAgain": { "message": "Znovu zaslat ověřovací kód na e-mail" }, "useAnotherTwoStepMethod": { "message": "Použít jinou metodu dvoufázového přihlášení" }, "insertYubiKey": { "message": "Vložte YubiKey do USB portu vašeho počítače a stiskněte jeho tlačítko." }, "insertU2f": { "message": "Vložte svůj bezpečnostní klíč do USB portu vašeho počítače a pokud má tlačítko, tak jej stiskněte." }, "loginUnavailable": { "message": "Přihlášení není dostupné" }, "noTwoStepProviders": { "message": "Tento účet má zapnuté dvoufázové ověřování, ale žádný z nastavených poskytovalů dvoufázového přihlášení není v tomto prohlížeči podporován." }, "noTwoStepProviders2": { "message": "Použijte prosím podporovaný webový prohlížeč (například Chrome) a přidejte další poskytovatele, kteří lépe podporují více různých webových prohlížečích (jako například ověřovací aplikace)." }, "twoStepOptions": { "message": "Možnosti dvoufázového přihlášení" }, "recoveryCodeDesc": { "message": "Ztratili jste přístup ke všem nastaveným poskytovatelům dvoufázového přihlášení? Použijte obnovovací kód pro vypnutí dvoufázového přihlášení." }, "recoveryCodeTitle": { "message": "Kód pro obnovení" }, "authenticatorAppTitle": { "message": "Ověřovací aplikace" }, "authenticatorAppDesc": { "message": "Použijte ověřovací aplikaci (jako je Authy nebo Google Authenticator) pro generování časově omezených kódů.", "description": "'Authy' and 'Google Authenticator' are product names and should not be translated." }, "yubiKeyTitle": { "message": "YubiKey OTP bezpečnostní klíč" }, "yubiKeyDesc": { "message": "Použít YubiKey pro přístup k vašemu trezoru. Podporuje YubiKey 4. série, 5. série a zařízení řady NEO." }, "duoDesc": { "message": "Ověřit pomocí Duo Security prostřednictvím aplikace Duo Mobile, SMS, telefonního hovoru nebo U2F bezpečnostního kódu.", "description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated." }, "duoOrganizationDesc": { "message": "Ověřit pomocí Duo Security pro vaši organizaci prostřednictvím aplikace Duo Mobile, SMS, telefonního hovoru nebo U2F bezpečnostního kódu.", "description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated." }, "u2fDesc": { "message": "Použít jakýkoliv FIDO U2F bezpečnostní klíč pro přístup k vašemu trezoru." }, "u2fTitle": { "message": "FIDO U2F bezpečnostní klíč" }, "webAuthnTitle": { "message": "FIDO2 WebAuthn" }, "webAuthnDesc": { "message": "Použijte jakýkoliv WebAuthn bezpečnostní klíč pro přístup k vašemu účtu." }, "webAuthnMigrated": { "message": "(Migrováno z FIDO)" }, "emailTitle": { "message": "E-mail" }, "emailDesc": { "message": "Ověřovací kódy vám budou zaslány e-mailem." }, "continue": { "message": "Pokračovat" }, "organization": { "message": "Organizace" }, "organizations": { "message": "Organizace" }, "moveToOrgDesc": { "message": "Vyberte organizaci, do které chcete tuto položku přesunout. Přesun do organizace převede vlastnictví položky této organizaci. Po přesunutí této položky již nebudete přímým vlastníkem této položky." }, "moveManyToOrgDesc": { "message": "Vyberte organizaci, do které chcete tyto položky přesunout. Přesun do organizace převede vlastnictví položek této organizaci. Po přesunutí již nebudete přímým vlastníkem těchto položek." }, "collectionsDesc": { "message": "Upravit kolekce, ve kterých je tato položka sdílená. Pouze uživatelé organizace, kteří mají přístup k těmto kolekcím, budou moci tuto položku vidět." }, "deleteSelectedItemsDesc": { "message": "Vybrali jste $COUNT$ položek ke smazání. Opravdu chcete tyto položky smazat?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "moveSelectedItemsDesc": { "message": "Vyberte složku, do které chcete přesunout $COUNT$ vybraných položek.", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "moveSelectedItemsCountDesc": { "message": "Vybrali jste $COUNT$ položku(ek). $MOVEABLE_COUNT$ položku(ek) lze přesunout do organizace, $NONMOVEABLE_COUNT$ nelze.", "placeholders": { "count": { "content": "$1", "example": "10" }, "moveable_count": { "content": "$2", "example": "8" }, "nonmoveable_count": { "content": "$3", "example": "2" } } }, "verificationCodeTotp": { "message": "Ověřovací kód (TOTP)" }, "copyVerificationCode": { "message": "Zkopírovat ověřovací kód" }, "warning": { "message": "Varování" }, "confirmVaultExport": { "message": "Potvrdit export trezoru" }, "exportWarningDesc": { "message": "Tento export obsahuje data vašeho trezoru v nezašifrovaném formátu. Soubor exportu byste neměli ukládat ani odesílat přes nezabezpečené kanály (např. e-mailem). Odstraňte jej okamžitě po jeho použití." }, "encExportKeyWarningDesc": { "message": "Tento export šifruje vaše data pomocí šifrovacího klíče vašeho účtu. Pokud někdy pozměníte šifrovací klíč svého účtu, měli byste data exportovat znovu, protože tento exportovaný soubor nebudete moci dešifrovat." }, "encExportAccountWarningDesc": { "message": "Šifrovací klíče účtu jsou jedinečné pro každý uživatelský účet Bitwarden, není proto možné importovat šifrovaný export do jiného účtu." }, "export": { "message": "Exportovat" }, "exportVault": { "message": "Exportovat přihlašovací údaje" }, "fileFormat": { "message": "Formát souboru" }, "exportSuccess": { "message": "Data trezoru byla exportována" }, "passwordGenerator": { "message": "Generátor hesla" }, "minComplexityScore": { "message": "Minimální skóre složitosti" }, "minNumbers": { "message": "Minimální počet čísel" }, "minSpecial": { "message": "Minimální počet speciálních znaků", "description": "Minimum Special Characters" }, "ambiguous": { "message": "Použít nezaměnitelné znaky" }, "regeneratePassword": { "message": "Vygenerovat další heslo" }, "length": { "message": "Délka" }, "numWords": { "message": "Počet slov" }, "wordSeparator": { "message": "Oddělovač slov" }, "capitalize": { "message": "Velká písmena na začátku slova", "description": "Make the first letter of a work uppercase." }, "includeNumber": { "message": "Zahrnout číslo" }, "passwordHistory": { "message": "Historie hesel" }, "noPasswordsInList": { "message": "Nejsou k dispozici žádná hesla." }, "clear": { "message": "Vymazat", "description": "To clear something out. example: To clear browser history." }, "accountUpdated": { "message": "Účet byl aktualizován" }, "changeEmail": { "message": "Změnit e-mail" }, "changeEmailTwoFactorWarning": { "message": "Pokračováním se změní e-mailová adresa vašeho účtu. E-mailová adresa používaná pro dvoufázové ověření se nezmění. Tuto e-mailovou adresu můžete změnit v nastavení dvoufázového přihlášení." }, "newEmail": { "message": "Nový e-mail" }, "code": { "message": "Kód" }, "changeEmailDesc": { "message": "Na e-mail $EMAIL$ jsme odeslali ověřovací kód. Zkontrolujte prosím svou e-mailovou schránku a pro potvrzení nové e-mailové adresy zadejte níže obdržený kód.", "placeholders": { "email": { "content": "$1", "example": "john.smith@example.com" } } }, "loggedOutWarning": { "message": "Pokud chcete pokračovat, budete odhlášeni z aktuální relace a bude nutné se znovu přihlásit. Aktivní relace na jiných zařízeních mohou nadále zůstat aktivní po dobu až jedné hodiny." }, "emailChanged": { "message": "E-mail byl změněn" }, "logBackIn": { "message": "Přihlaste se prosím znovu." }, "logBackInOthersToo": { "message": "Přihlaste se prosím znovu. Používáte-li jiné Bitwarden aplikace, přihlaste se znovu i v nich." }, "changeMasterPassword": { "message": "Změnit hlavní heslo" }, "masterPasswordChanged": { "message": "Hlavní heslo bylo změněno" }, "currentMasterPass": { "message": "Současné hlavní heslo" }, "newMasterPass": { "message": "Nové hlavní heslo" }, "confirmNewMasterPass": { "message": "Potvrzení nového hesla" }, "encKeySettings": { "message": "Nastavení šifrovacího klíče" }, "kdfAlgorithm": { "message": "KDF algoritmus" }, "kdfIterations": { "message": "KDF iterace" }, "kdfIterationsDesc": { "message": "Vyšší hodnota KDF iterací pomáhá chránit vaše hlavní heslo před útokem hrubou silou (brute force attack). Doporučujeme nastavit hodnotu $VALUE$ nebo vyšší.", "placeholders": { "value": { "content": "$1", "example": "100,000" } } }, "kdfIterationsWarning": { "message": "Nastavení příliš vysoké hodnoty počtu KDF iterací může mít za následek špatný výkon při přihlašování (a odemykání) aplikace Bitwarden na zařízeních se slabým procesorem. Doporučujeme hodnotu navyšovat přírůstkově po $INCREMENT$ a vyzkoušet všechna vaše zařízení.", "placeholders": { "increment": { "content": "$1", "example": "50,000" } } }, "changeKdf": { "message": "Změnit KDF" }, "encKeySettingsChanged": { "message": "Nastavení šifrovacího klíče bylo změněno" }, "dangerZone": { "message": "Nebezpečná zóna" }, "dangerZoneDesc": { "message": "Opatrně. Tyto akce se nedají vrátit!" }, "deauthorizeSessions": { "message": "Zrušit autorizaci relací" }, "deauthorizeSessionsDesc": { "message": "Je váš účet přihlášen na jiném zařízení? Pokračujte níže ke zrušení přihlášení všech počítačů a zařízení, která jste dříve používali. Tento bezpečnostní krok je doporučen, pokud jste dříve používali veřejný počítač nebo nechtěně uložili heslo na zařízení, které není vaše. Tímto krokem se také zruší dříve zapamatovaná dvoufázová přihlášení." }, "deauthorizeSessionsWarning": { "message": "Pokud chcete pokračovat, budete také odhlášeni z aktuální relace a bude nutné se znovu přihlásit. Pokud používáte dvoufázové přihlášení, bude také vyžadováno. Aktivní relace na jiných zařízeních mohou nadále zůstat aktivní po dobu až jedné hodiny." }, "sessionsDeauthorized": { "message": "Všechny relace byly zrušeny" }, "purgeVault": { "message": "Vymazat celý trezor" }, "purgedOrganizationVault": { "message": "Trezor organizace byl vyprázdněn." }, "vaultAccessedByProvider": { "message": "Trezor zpřístupněný poskytovatelem." }, "purgeVaultDesc": { "message": "Chcete-li smazat všechny položky a složky ve vašem trezoru, pokračujte podle následujících pokynů. Položky sdílené s organizací nebudou smazány." }, "purgeOrgVaultDesc": { "message": "Chcete-li smazat všechny položky v trezoru organizace, pokračujte podle následujících pokynů." }, "purgeVaultWarning": { "message": "Vymazání trezoru je trvalé. Tuto akci nelze vrátit zpět." }, "vaultPurged": { "message": "Výš trezor byl vymazán" }, "deleteAccount": { "message": "Smazat účet" }, "deleteAccountDesc": { "message": "Pokračujte níže ke smazání účtu a všech souvisejících dat." }, "deleteAccountWarning": { "message": "Smazání účtu je trvalé. Tuto akci nelze vrátit zpět." }, "accountDeleted": { "message": "Účet byl smazán." }, "accountDeletedDesc": { "message": "Váš účet byl uzavřen a všechna související data byla smazána." }, "myAccount": { "message": "Můj účet" }, "tools": { "message": "Nástroje" }, "importData": { "message": "Import dat" }, "importError": { "message": "Chyba importu" }, "importErrorDesc": { "message": "Vyskytl se problém s daty, které jste se pokusili importovat. Prosím, vyřešte níže uvedené chyby ve zdrojovém souboru a zkuste to znovu." }, "importSuccess": { "message": "Data byla úspěšně importována" }, "importWarning": { "message": "Importujete data do organizace $ORGANIZATION$. Vaše data mohou být sdílena s členy této organizace. Chcete pokračovat?", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "importFormatError": { "message": "Data nemají správný formát. Zkontrolujte importovaný soubor a zkuste to znovu." }, "importNothingError": { "message": "Nic nebylo importováno" }, "importEncKeyError": { "message": "Chyba při dešifrování exportovaného souboru. Váš šifrovací klíč se neshoduje s klíčem použitým během exportu dat." }, "selectFormat": { "message": "Vyberte formát importovaného souboru" }, "selectImportFile": { "message": "Vyberte soubor pro import" }, "orCopyPasteFileContents": { "message": "nebo zkopírujte a vložte obsah souboru" }, "instructionsFor": { "message": "Instrukce pro $NAME$", "description": "The title for the import tool instructions.", "placeholders": { "name": { "content": "$1", "example": "LastPass (csv)" } } }, "options": { "message": "Možnosti" }, "optionsDesc": { "message": "Přizpůsobte si váš webový trezor." }, "optionsUpdated": { "message": "Možnosti byly upraveny" }, "language": { "message": "Jazyk" }, "languageDesc": { "message": "Změňte jazyk používaný ve webovém trezoru." }, "disableIcons": { "message": "Zakázat ikonky webových stránek" }, "disableIconsDesc": { "message": "Ikonky webových stránek zobrazí snadno rozeznatelný obrázek vedle každé položky ve vašem trezoru." }, "enableGravatars": { "message": "Povolit službu Gravatar", "description": "'Gravatar' is the name of a service. See www.gravatar.com" }, "enableGravatarsDesc": { "message": "Použije profilový obrázek načtený z gravatar.com." }, "enableFullWidth": { "message": "Zapnout rozvržení na celou šířku stránky", "description": "Allows scaling the web vault UI's width" }, "enableFullWidthDesc": { "message": "Povolit webovému trezoru roztáhnout se na celou šířku okna." }, "default": { "message": "Výchozí" }, "domainRules": { "message": "Doménová pravidla" }, "domainRulesDesc": { "message": "Pokud máte stejné přihlašovací údaje napříč různými doménami, můžete je označit jako „ekvivalentní“. Bitwarden za vás již vytvořil seznam globálních domén." }, "globalEqDomains": { "message": "Globální ekvivalentní domény" }, "customEqDomains": { "message": "Vlastní ekvivalentní domény" }, "exclude": { "message": "Vyřadit" }, "include": { "message": "Zahrnout" }, "customize": { "message": "Přizpůsobit" }, "newCustomDomain": { "message": "Přidat vlastní doménu" }, "newCustomDomainDesc": { "message": "Zadejte seznam domén oddělených čárkou. Povolené jsou pouze „základní“ domény. Nezadávejte subdomény. Například zadejte „bitwarden.com“, nikoliv „vault.bitwarden.com“. Můžete také zadat „androidapp://package.name“ pokud chcete přiřadit Android aplikaci k ostatním webovým doménám." }, "customDomainX": { "message": "Vlastní doména $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "domainsUpdated": { "message": "Domény byly upraveny" }, "twoStepLogin": { "message": "Dvoufázové přihlášení" }, "twoStepLoginDesc": { "message": "Zabezpečte svůj účet vyžadováním dodatečného kroku při přihlašování." }, "twoStepLoginOrganizationDesc": { "message": "Vyžadovat dvoufázové přihlášení pro uživatele vaší organizace nastavením poskytovatelů na úrovni organizace." }, "twoStepLoginRecoveryWarning": { "message": "Povolením dvoufázového přihlášení může dojít k trvalému uzamčení vašeho účtu. Obnovovací kód umožňuje přístup do vašeho účtu i v případě, pokud již nemůžete použít svůj normální způsob dvoufázového přihlášení (např. ztráta zařízení). Pokud ztratíte přístup k vašemu účtu, nebude vám schopna pomoci ani zákaznická podpora Bitwardenu. Doporučujeme si proto kód pro obnovení zapsat nebo vytisknout a uložit jej na bezpečném místě." }, "viewRecoveryCode": { "message": "Zobrazit kód pro obnovení" }, "providers": { "message": "Poskytovatelé", "description": "Two-step login providers such as YubiKey, Duo, Authenticator apps, Email, etc." }, "enable": { "message": "Povolit" }, "enabled": { "message": "Povoleno" }, "premium": { "message": "Prémium", "description": "Premium Membership" }, "premiumMembership": { "message": "Prémiové členství" }, "premiumRequired": { "message": "Vyžaduje prémiové členství" }, "premiumRequiredDesc": { "message": "Pro použití této funkce je potřebné prémiové členství." }, "youHavePremiumAccess": { "message": "Máte prémiový přístup" }, "alreadyPremiumFromOrg": { "message": "Již máte přístup k prémiovým funkcím díky organizaci, které jste členem." }, "manage": { "message": "Správa" }, "disable": { "message": "Zakázat" }, "twoStepLoginProviderEnabled": { "message": "Tento poskytovatel dvoufázového přihlášení byl povolen." }, "twoStepLoginAuthDesc": { "message": "Zadejte hlavní heslo pro úpravu dvoufázového přihlášení." }, "twoStepAuthenticatorDesc": { "message": "Postupujte podle následujících kroků pro nastavení pro dvoufázového přihlášení pomocí ověřovací aplikace:" }, "twoStepAuthenticatorDownloadApp": { "message": "Stáhněte si ověřovací aplikaci" }, "twoStepAuthenticatorNeedApp": { "message": "Potřebujete aplikaci pro dvoufázové ověření? Stáhněte si jednu z následujících" }, "iosDevices": { "message": "iOS zařízení" }, "androidDevices": { "message": "Android zařízení" }, "windowsDevices": { "message": "Windows zařízení" }, "twoStepAuthenticatorAppsRecommended": { "message": "Tyto aplikace doporučujeme, nicméně další aplikace pro ověření budou fungovat také." }, "twoStepAuthenticatorScanCode": { "message": "Naskenujte tento QR kód s vaší ověřovací aplikací" }, "key": { "message": "Klíč" }, "twoStepAuthenticatorEnterCode": { "message": "Zadejte 6místný kód z ověřovací aplikace" }, "twoStepAuthenticatorReaddDesc": { "message": "V případě potřeby přidání do jiného zařízení, je níže zobrazen QR kód (nebo klíč) vyžadovaný ověřovací aplikací." }, "twoStepDisableDesc": { "message": "Opravdu chcete zakázat tohoto poskytovatele dvoufázového přihlášení?" }, "twoStepDisabled": { "message": "Poskytovatel dvoufázového přihlášení byl zakázán" }, "twoFactorYubikeyAdd": { "message": "Přidání nového YubiKey k vašemu účtu" }, "twoFactorYubikeyPlugIn": { "message": "Připojte YubiKey do USB portu počítače." }, "twoFactorYubikeySelectKey": { "message": "Vyberte první prázdné pole YubiKey níže." }, "twoFactorYubikeyTouchButton": { "message": "Dotkněte se tlačítka na YubiKey." }, "twoFactorYubikeySaveForm": { "message": "Uložte formulář." }, "twoFactorYubikeyWarning": { "message": "Z důvodu omezení různých platforem, nemůže být YubiKey použit ve všech aplikacích Bitwarden. Měli byste povolit jiný způsob dvoufázového přihlášení pro případy, kdy nelze YubiKey použít. Podporované platformy:" }, "twoFactorYubikeySupportUsb": { "message": "Webový trezor, aplikace, CLI a rozšíření pro prohlížeče na zařízeních s USB portem." }, "twoFactorYubikeySupportMobile": { "message": "Mobilní aplikace na zařízeních s podporou NFC nebo datového portu, která mohou přijmout váš YubiKey." }, "yubikeyX": { "message": "YubiKey $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "u2fkeyX": { "message": "U2F klíč $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "webAuthnkeyX": { "message": "Klíč WebAuthn $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "nfcSupport": { "message": "Podpora NFC" }, "twoFactorYubikeySupportsNfc": { "message": "Jeden z mých klíčů podporuje NFC." }, "twoFactorYubikeySupportsNfcDesc": { "message": "Pokud některý z vašich YubiKey podporuje NFC (např. YubiKey NEO), budete na mobilních zařízeních vyzvání k ověření pomocí NFC, pokud bude na daném zařízení tato technologie detekována." }, "yubikeysUpdated": { "message": "YubiKey byly aktualizovány" }, "disableAllKeys": { "message": "Zakázat všechny klíče" }, "twoFactorDuoDesc": { "message": "Zadejte informace o aplikaci Bitwarden z panelu Duo Admin." }, "twoFactorDuoIntegrationKey": { "message": "Integrační klíč" }, "twoFactorDuoSecretKey": { "message": "Tajný klíč" }, "twoFactorDuoApiHostname": { "message": "Host API" }, "twoFactorEmailDesc": { "message": "Postupujte podle následujících kroků pro nastavení dvoufázového přihlášení pomocí e-mailu:" }, "twoFactorEmailEnterEmail": { "message": "Zadejte e-mail, na který si přejete dostávat ověřovací kódy" }, "twoFactorEmailEnterCode": { "message": "Zadejte 6místný kód zaslaný na e-mail" }, "sendEmail": { "message": "Odeslat e-mail" }, "twoFactorU2fAdd": { "message": "Přidání bezpečnostního klíče FIDO U2F k vašemu účtu" }, "removeU2fConfirmation": { "message": "Opravdu chcete odebrat tento bezpečnostní klíč?" }, "twoFactorWebAuthnAdd": { "message": "Přidejte ke svému účtu bezpečnostní klíč WebAuthn" }, "readKey": { "message": "Přečíst klíč" }, "keyCompromised": { "message": "Klíč je prozrazen." }, "twoFactorU2fGiveName": { "message": "Bezpečnostní klíč si pojmenujte pro jeho snadnou identifikaci." }, "twoFactorU2fPlugInReadKey": { "message": "Připojte bezpečnostní klíč do USB portu vašeho počítače a klikněte na tlačítko „Přečíst klíč“." }, "twoFactorU2fTouchButton": { "message": "Pokud má bezpečnostní klíč tlačítko, zmáčkněte jej." }, "twoFactorU2fSaveForm": { "message": "Uložte formulář." }, "twoFactorU2fWarning": { "message": "Z důvodu omezení různých platforem, nemůže být FIDO U2F použit ve všech aplikacích Bitwarden. Měli byste povolit jiný způsob dvoufázového přihlášení pro případy, kdy nelze FIDO U2F použít. Podporované platformy:" }, "twoFactorU2fSupportWeb": { "message": "Webový trezor a rozšíření pro prohlížeče s podporou U2F (Chrome, Opera, Vivaldi nebo Firefox)." }, "twoFactorU2fWaiting": { "message": "Čeká se na stisknutí tlačítka na bezpečnostním klíči" }, "twoFactorU2fClickSave": { "message": "Tlačítkem „Uložit“ zpřístupníte dvoufázové přihlášení pomocí tohoto bezpečnostního klíče." }, "twoFactorU2fProblemReadingTryAgain": { "message": "Při čtení bezpečnostního klíče došlo k potížím. Zkuste to znovu." }, "twoFactorWebAuthnWarning": { "message": "Z důvodu omezení platformy nelze WebAuthn použít ve všech aplikacích Bitwarden. Měli byste využít i jiného poskytovatele dvoufaktorového přihlášení, abyste měli přístup ke svému účtu, když nelze použít WebAuthn. Podporované platformy:" }, "twoFactorWebAuthnSupportWeb": { "message": "Webový trezor a rozšíření pro prohlížeče s podporou WebAuthn (Chrome, Opera, Vivaldi nebo Firefox)." }, "twoFactorRecoveryYourCode": { "message": "Váše kód pro obnovení dvoufázového přihlášení" }, "twoFactorRecoveryNoCode": { "message": "Doposud jste nepovolili žádný způsob dvoufázového přihlášení. Až některý způsob povolíte, můžete se sem vrátit pro zobrazení kódu pro obnovení." }, "printCode": { "message": "Vytisknout kód", "description": "Print 2FA recovery code" }, "reports": { "message": "Hlášení" }, "reportsDesc": { "message": "Identify and close security gaps in your online accounts by clicking the reports below." }, "unsecuredWebsitesReport": { "message": "Hlášení o nezabezpečených webech" }, "unsecuredWebsitesReportDesc": { "message": "Používání nezabezpečených http:// webových stránek může být nebezpečné. Pokud je to možné, přistupujte na web vždy jen přes zašifrované https:// připojení." }, "unsecuredWebsitesFound": { "message": "Nalezen nezabezpečený web" }, "unsecuredWebsitesFoundDesc": { "message": "Některé položky ($COUNT$) ve vašem trezoru používají nezabezpečené URI. Schémata URI by měla být změněna na https://, pokud to web umožňuje.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noUnsecuredWebsites": { "message": "Žádné položky v trezoru nemají nezabezpečené URI." }, "inactive2faReport": { "message": "Hlášení o neaktivní 2FA ochraně" }, "inactive2faReportDesc": { "message": "Dvoufázové přihlášení (2FA) je důležitý bezpečnostní prvek, který pomáhá zabezpečit vaše účty. Pokud jej web nabízí, měli byste dvoufázové přihlášení vždy používat." }, "inactive2faFound": { "message": "Nalezena přihlášení bez 2FA" }, "inactive2faFoundDesc": { "message": "Některé weby ($COUNT$) ve vašem trezoru zřejmě nejsou nakonfigurovány pro použití dvoufaktorového přihlášení (dle twofactorauth.org). Pro lepší ochranu vašich účtů byste měli dvoufaktorové přihlášení povolit.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noInactive2fa": { "message": "V trezoru nebyly nalezeny žádné weby s chybějící konfigurací dvoufaktorového přihlášení." }, "instructions": { "message": "Instrukce" }, "exposedPasswordsReport": { "message": "Hlášení o úniku hesel" }, "exposedPasswordsReportDesc": { "message": "Uniklá hesla jsou hesla, která byla odhalena během známých úniků dat, zveřejněna nebo prodána hackery na dark webu." }, "exposedPasswordsFound": { "message": "Nalezena uniklá hesla" }, "exposedPasswordsFoundDesc": { "message": "V trezoru jsme našli položky ($COUNT$), jejichž hesla byla odhalena během známých úniků dat. Měli byste u nich použít nové heslo.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noExposedPasswords": { "message": "Žádné položky v trezoru nemají hesla, která byla odhalena během známých úniků dat." }, "checkExposedPasswords": { "message": "Zkontrolovat uniklá hesla" }, "exposedXTimes": { "message": "Počet úniků: $COUNT$", "placeholders": { "count": { "content": "$1", "example": "52" } } }, "weakPasswordsReport": { "message": "Hlášení o slabých heslech" }, "weakPasswordsReportDesc": { "message": "Slabá hesla mohou být snadno uhodnuta hackery či automatickými nástroji určenými pro prolomení hesel. Generátor hesel Bitwarden vám pomůže vytvořit silná hesla." }, "weakPasswordsFound": { "message": "Nalezena slabá hesla" }, "weakPasswordsFoundDesc": { "message": "Našli jsme $COUNT$ položek se slabým heslem. Měli byste je aktualizovat a použit silnější hesla.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noWeakPasswords": { "message": "Žádné položky ve vašem trezoru nemají slabá hesla." }, "reusedPasswordsReport": { "message": "Hlášení o přepoužitých heslech" }, "reusedPasswordsReportDesc": { "message": "Je-li vámi používaná služba kompromitována, stejné heslo použité někde jinde může hackerům umožnit snadný přístup k dalším vašim online účtům. Pro každý účet či službu byste měli vždy použít unikátní heslo." }, "reusedPasswordsFound": { "message": "Nalezena přepoužitá hesla" }, "reusedPasswordsFoundDesc": { "message": "Našli jsme hesla ($COUNT$), která jsou ve vašem trezoru přepoužita. Doporučujeme je změnit, aby byly unikátní.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noReusedPasswords": { "message": "Žádná přihlášení ve vašem trezoru nemají přepoužitá hesla." }, "reusedXTimes": { "message": "Počet přepoužití: $COUNT$", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "dataBreachReport": { "message": "Hlášení o úniku dat" }, "breachDesc": { "message": "„Únik“ je incident, při kterém se podařilo hackerům nelegální cestou získat údaje z webových stránek a následně je také zveřejnit. Zkontrolujte prosím kompromitovaná data (e-mailové adresy, hesla, kreditní karty, …) a proveďte příslušná opatření (např. změňte heslo)." }, "breachCheckUsernameEmail": { "message": "Zkontrolujte všechna uživatelská jména nebo e-mailové adresy, které používáte." }, "checkBreaches": { "message": "Zkontrolovat" }, "breachUsernameNotFound": { "message": "Uživatelské jméno $USERNAME$ nebylo nalezeno v žádném známém úniku dat.", "placeholders": { "username": { "content": "$1", "example": "user@example.com" } } }, "goodNews": { "message": "Dobré zprávy", "description": "ex. Good News, No Breached Accounts Found!" }, "breachUsernameFound": { "message": "Uživatelské jméno $USERNAME$ bylo nalezeno celkem $COUNT$x.", "placeholders": { "username": { "content": "$1", "example": "user@example.com" }, "count": { "content": "$2", "example": "7" } } }, "breachFound": { "message": "Došlo k úniku" }, "compromisedData": { "message": "Kompromitovaná data" }, "website": { "message": "Webová stránka" }, "affectedUsers": { "message": "Ovlivněno uživatelů" }, "breachOccurred": { "message": "Datum úniku" }, "breachReported": { "message": "Datum nahlášení" }, "reportError": { "message": "Při pokosu o načtení hlášení došlo k chybě. Zkuste znovu" }, "billing": { "message": "Fakturace" }, "accountCredit": { "message": "Kredit na účtu", "description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)." }, "accountBalance": { "message": "Zůstatek na účtu", "description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)." }, "addCredit": { "message": "Dobít kredit", "description": "Add more credit to your account's balance." }, "amount": { "message": "Částka", "description": "Dollar amount, or quantity." }, "creditDelayed": { "message": "Navýšený kredit se na vašem účtu objeví po úspěšném zpracování platby. Některé platební metody mají prodlevu a zpracování může trvat déle, než u jiných metod." }, "makeSureEnoughCredit": { "message": "Ujistěte se, že je na vašem účtu dostatečný kredit pro uskutečnění tohoto nákupu. Nemáte-li na účtu dostatečný kredit, bude pro doplacení rozdílu použita vaše výchozí platební metoda. Kredit si můžete navýšit prostřednictvím stránky fakturace." }, "creditAppliedDesc": { "message": "Pro nákupy bude použit kredit z vašeho účtu. Jakýkoliv dostupný kredit bude automaticky použit pro faktury vystavené pro tento účet." }, "goPremium": { "message": "Přejděte na Premium", "description": "Another way of saying \"Get a premium membership\"" }, "premiumUpdated": { "message": "Povýšili jste na premium." }, "premiumUpgradeUnlockFeatures": { "message": "Povyšte svůj účet na prémiové členství a odemkněte další skvělé funkce." }, "premiumSignUpStorage": { "message": "1 GB šifrovaného úložiště pro přílohy." }, "premiumSignUpTwoStep": { "message": "Další možnosti dvoufázového přihlášení, jako je například YubiKey, FIDO U2F a Duo." }, "premiumSignUpEmergency": { "message": "Nouzový přístup" }, "premiumSignUpReports": { "message": "Reporty o hygieně vašich hesel, zdraví účtu a narušeních bezpečnosti." }, "premiumSignUpTotp": { "message": "Generátor TOTP kódu dvoufázového přihlašování (2FA) pro přihlašovací údaje ve vašem trezoru." }, "premiumSignUpSupport": { "message": "Prioritní zákaznická podpora." }, "premiumSignUpFuture": { "message": "Všechny budoucí prémiové funkce. Více již brzy!" }, "premiumPrice": { "message": "Vše jen za $PRICE$ ročně!", "placeholders": { "price": { "content": "$1", "example": "$10" } } }, "addons": { "message": "Doplňky" }, "premiumAccess": { "message": "Prémiový přístup" }, "premiumAccessDesc": { "message": "Můžete přidat prémiový přístup všem členům vaší organizace za $PRICE$/$INTERVAL$.", "placeholders": { "price": { "content": "$1", "example": "$3.33" }, "interval": { "content": "$2", "example": "'month' or 'year'" } } }, "additionalStorageGb": { "message": "Další úložiště (GB)" }, "additionalStorageGbDesc": { "message": "# dalších GB" }, "additionalStorageIntervalDesc": { "message": "Vybraný plán obsahuje $SIZE$ šifrovaného úložiště. Další prostor si můžete přikoupit za $PRICE$/$INTERVAL$ za každý další 1 GB.", "placeholders": { "size": { "content": "$1", "example": "1 GB" }, "price": { "content": "$2", "example": "$4.00" }, "interval": { "content": "$3", "example": "'month' or 'year'" } } }, "summary": { "message": "Souhrn" }, "total": { "message": "Celkem" }, "year": { "message": "rok" }, "month": { "message": "měsíc" }, "monthAbbr": { "message": "měs.", "description": "Short abbreviation for 'month'" }, "paymentChargedAnnually": { "message": "Částka bude stržena okamžitě a poté opakovaně každý rok. Plán můžete kdykoli zrušit." }, "paymentCharged": { "message": "Částka bude stržena okamžitě a poté opakovaně každý $INTERVAL$. Předplatné můžete kdykoli zrušit.", "placeholders": { "interval": { "content": "$1", "example": "month or year" } } }, "paymentChargedWithTrial": { "message": "Vybraný plán obsahuje bezplatnou 7denní zkušební dobu. Částka z vašeho účtu nebude stržena, dokud tato zkušební doba neuplyne. Stržení platby a fakturace bude následně probíhat opakovaně každý $INTERVAL$. Plán můžete kdykoli zrušit." }, "paymentInformation": { "message": "Informace o platbě" }, "billingInformation": { "message": "Fakturační údaje" }, "creditCard": { "message": "Kreditní karta" }, "paypalClickSubmit": { "message": "Pro přihlášení do vašeho PayPal účtu klikněte na tlačítko PayPal a následně na tlačítko Odeslat zobrazené níže." }, "cancelSubscription": { "message": "Zrušit předplatné" }, "subscriptionCanceled": { "message": "Předplatné bylo zrušeno" }, "pendingCancellation": { "message": "Čeká na zrušení" }, "subscriptionPendingCanceled": { "message": "Předplatné bude zrušeno na konci aktuálního fakturačního období." }, "reinstateSubscription": { "message": "Obnovit předplatné" }, "reinstateConfirmation": { "message": "Opravdu chcete zrušit požadavek na ukončení předplatného a obnovit původní předplatné?" }, "reinstated": { "message": "Předplatné bylo obnoveno" }, "cancelConfirmation": { "message": "Opravdu chcete zrušit předplatné? Na konci fakturačního období přijdete o veškeré výhody plynoucí z vybraného plánu." }, "canceledSubscription": { "message": "Předplatné bylo zrušeno" }, "neverExpires": { "message": "Nikdy nevyprší" }, "status": { "message": "Stav" }, "nextCharge": { "message": "Další platba" }, "details": { "message": "Podrobnosti" }, "downloadLicense": { "message": "Stáhnout licenci" }, "updateLicense": { "message": "Aktualizovat licenci" }, "updatedLicense": { "message": "Licence byla aktualizována" }, "manageSubscription": { "message": "Správa předplatného" }, "storage": { "message": "Úložiště" }, "addStorage": { "message": "Přidat úložiště" }, "removeStorage": { "message": "Odebrat úložiště" }, "subscriptionStorage": { "message": "Vaše předplatné zahrnuje celkem $MAX_STORAGE$ GB místa v šifrovaném úložišti. Aktuálně používáte $USED_STORAGE$.", "placeholders": { "max_storage": { "content": "$1", "example": "4" }, "used_storage": { "content": "$2", "example": "65 MB" } } }, "paymentMethod": { "message": "Způsob platby" }, "noPaymentMethod": { "message": "Žádné způsoby platby." }, "addPaymentMethod": { "message": "Přidat platební metodu" }, "changePaymentMethod": { "message": "Změnit způsob platby" }, "invoices": { "message": "Faktury" }, "noInvoices": { "message": "Žádné faktury." }, "paid": { "message": "Zaplaceno", "description": "Past tense status of an invoice. ex. Paid or unpaid." }, "unpaid": { "message": "Nezaplaceno", "description": "Past tense status of an invoice. ex. Paid or unpaid." }, "transactions": { "message": "Transakce", "description": "Payment/credit transactions." }, "noTransactions": { "message": "Žádné transakce." }, "chargeNoun": { "message": "Dobít", "description": "Noun. A charge from a payment method." }, "refundNoun": { "message": "Vrátit peníze", "description": "Noun. A refunded payment that was charged." }, "chargesStatement": { "message": " Veškeré platby se na výpisu objeví jako $STATEMENT_NAME$.", "placeholders": { "statement_name": { "content": "$1", "example": "BITWARDEN" } } }, "gbStorageAdd": { "message": "GB úložiště k přidání" }, "gbStorageRemove": { "message": "GB úložiště k odebrání" }, "storageAddNote": { "message": "Přidání úložiště bude mít za následek úpravy fakturačních součtů a okamžité dobití platební metody v souboru. První poplatek bude účtován pro zbytek aktuálního fakturačního cyklu." }, "storageRemoveNote": { "message": "Odstranění úložiště bude mít za následek úpravy vašich fakturačních součtů, které budou účtovány jako kredity k vašemu dalšímu fakturačnímu poplatku." }, "adjustedStorage": { "message": "Upraveno $AMOUNT$ GB úložiště.", "placeholders": { "amount": { "content": "$1", "example": "5" } } }, "contactSupport": { "message": "Kontaktovat zákaznickou podporu" }, "updatedPaymentMethod": { "message": "Platební metoda byla aktualizována" }, "purchasePremium": { "message": "Zakoupit prémiové členství" }, "licenseFile": { "message": "Soubor s licencí" }, "licenseFileDesc": { "message": "Váš licenční soubor bude pojmenován podobně jako $FILE_NAME$", "placeholders": { "file_name": { "content": "$1", "example": "bitwarden_premium_license.json" } } }, "uploadLicenseFilePremium": { "message": "Pro upgrade vašeho účtu na prémiový musíte nahrát validní licenční soubor." }, "uploadLicenseFileOrg": { "message": "Pro vytvoření organizace hostované na vlastní doméně, musíte nahrát platný licenční soubor." }, "accountEmailMustBeVerified": { "message": "E-mailová adresa vašeho účtu musí být ověřena." }, "newOrganizationDesc": { "message": "Organizace umožňují sdílení položek vašeho trezoru s ostatními uživateli a také správu uživatelů jako členů rodiny, malého týmu nebo velké organizace." }, "generalInformation": { "message": "Obecné informace" }, "organizationName": { "message": "Název organizace" }, "accountOwnedBusiness": { "message": "Tento účet je vlastněn firmou." }, "billingEmail": { "message": "E-mailová adresa pro fakturaci" }, "businessName": { "message": "Název firmy" }, "chooseYourPlan": { "message": "Vyberte plán" }, "users": { "message": "Uživatelé" }, "userSeats": { "message": "Počet uživatelů" }, "additionalUserSeats": { "message": "Další uživatelé" }, "userSeatsDesc": { "message": "# uživatelů" }, "userSeatsAdditionalDesc": { "message": "Váš plán obsahuje $BASE_SEATS$ uživatelských míst. Další místa můžete přidat za $SEAT_PRICE$ na uživatele a měsíc.", "placeholders": { "base_seats": { "content": "$1", "example": "5" }, "seat_price": { "content": "$2", "example": "$2.00" } } }, "userSeatsHowManyDesc": { "message": "Kolik míst pro uživatele potřebujete? Další místa můžete také přidat později." }, "planNameFree": { "message": "Zdarma", "description": "Free as in 'free beer'." }, "planDescFree": { "message": "Pro testování nebo osobní použití a sdílení s $COUNT$ dalším uživatelem.", "placeholders": { "count": { "content": "$1", "example": "1" } } }, "planNameFamilies": { "message": "Rodiny" }, "planDescFamilies": { "message": "Pro osobní použití a sdílení s rodinou či přáteli." }, "planNameTeams": { "message": "Týmy" }, "planDescTeams": { "message": "Pro firmy a různé týmy." }, "planNameEnterprise": { "message": "Podniky" }, "planDescEnterprise": { "message": "Pro firmy a velké organizace." }, "freeForever": { "message": "Navždy zdarma" }, "includesXUsers": { "message": "zahrnuje $COUNT$ uživatelů", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "additionalUsers": { "message": "Další uživatelé" }, "costPerUser": { "message": "$COST$ za uživatele", "placeholders": { "cost": { "content": "$1", "example": "$3" } } }, "limitedUsers": { "message": "Omezeno na $COUNT$ uživatele (včetně vás)", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "limitedCollections": { "message": "Omezeno na $COUNT$ kolekce", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "addShareLimitedUsers": { "message": "Přidání a sdílení až s $COUNT$ uživateli", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "addShareUnlimitedUsers": { "message": "Neomezený počet uživatelů" }, "createUnlimitedCollections": { "message": "Neomezený počet kolekcí" }, "gbEncryptedFileStorage": { "message": "$SIZE$ šifrovaného úložiště", "placeholders": { "size": { "content": "$1", "example": "1 GB" } } }, "onPremHostingOptional": { "message": "Možnost hostování na vlastní doméně" }, "usersGetPremium": { "message": "Uživatelé získají přístup k prémiovým funkcím" }, "controlAccessWithGroups": { "message": "Kontrola uživatelských přístupů pomocí skupin" }, "syncUsersFromDirectory": { "message": "Synchronizace uživatelů a skupin z adresáře" }, "trackAuditLogs": { "message": "Sledování uživatelských akcí pomocí auditních logů" }, "enforce2faDuo": { "message": "Vynutit 2FA s Duo" }, "priorityCustomerSupport": { "message": "Přednostní zákaznická podpora" }, "xDayFreeTrial": { "message": "$COUNT$denní zkušební verze, možno kdykoliv zrušit", "placeholders": { "count": { "content": "$1", "example": "7" } } }, "monthly": { "message": "Měsíčně" }, "annually": { "message": "Ročně" }, "basePrice": { "message": "Základní cena" }, "organizationCreated": { "message": "Organizace byla přidána." }, "organizationReadyToGo": { "message": "Vaše nová organizace je připravena!" }, "organizationUpgraded": { "message": "Vaše organizace byla povýšena." }, "leave": { "message": "Opustit" }, "leaveOrganizationConfirmation": { "message": "Opravdu chcete tuto organizaci opustit?" }, "leftOrganization": { "message": "Organizace byla opuštěna." }, "defaultCollection": { "message": "Výchozí kolekce" }, "getHelp": { "message": "Nápověda" }, "getApps": { "message": "Stáhnout aplikaci" }, "loggedInAs": { "message": "Přihlášen jako" }, "eventLogs": { "message": "Protokol událostí" }, "people": { "message": "Uživatelé" }, "policies": { "message": "Zásady" }, "singleSignOn": { "message": "Jednotné přihlášení" }, "editPolicy": { "message": "Upravit zásadu" }, "groups": { "message": "Skupiny" }, "newGroup": { "message": "Nová Skupina" }, "addGroup": { "message": "Přidat skupinu" }, "editGroup": { "message": "Upravit skupinu" }, "deleteGroupConfirmation": { "message": "Opravdu chcete tuto skupinu smazat?" }, "removeUserConfirmation": { "message": "Opravdu chcete tohoto uživatele smazat?" }, "removeUserConfirmationKeyConnector": { "message": "Warning! This user requires Key Connector to manage their encryption. Removing this user from your organization will permanently disable their account. This action cannot be undone. Do you want to proceed?" }, "externalId": { "message": "Externí ID" }, "externalIdDesc": { "message": "Externí ID může být použito jako reference nebo k propojení tohoto zdroje s externím systémem, jako je adresář uživatelů." }, "accessControl": { "message": "Správa přístupů" }, "groupAccessAllItems": { "message": "Tato skupina může vidět a upravovat vše." }, "groupAccessSelectedCollections": { "message": "Tato skupina může vidět a upravovat pouze vybrané kolekce." }, "readOnly": { "message": "Pouze pro čtení" }, "newCollection": { "message": "Nová kolekce" }, "addCollection": { "message": "Přidat kolekci" }, "editCollection": { "message": "Upravit kolekci" }, "deleteCollectionConfirmation": { "message": "Opravdu chcete tuto kolekci smazat?" }, "editUser": { "message": "Upravit uživatele" }, "inviteUser": { "message": "Pozvat uživatele" }, "inviteUserDesc": { "message": "Pozvěte nového uživatele do vaší organizace zadáním e-mailové adresy jejich Bitwarden účtu. Pokud ještě nemají Bitwarden účet, budou vyzváni k vytvoření nového účtu." }, "inviteMultipleEmailDesc": { "message": "Najednou můžete pozvat až $COUNT$ uživatelů pomocí seznamu jejich e-mailových adres, oddělených čárkami.", "placeholders": { "count": { "content": "$1", "example": "20" } } }, "userUsingTwoStep": { "message": "Tento uživatel používá pro ochranu svého účtu dvoufázové přihlášení." }, "userAccessAllItems": { "message": "Tento uživatel může vidět a upravovat vše." }, "userAccessSelectedCollections": { "message": "Tento uživatel může vidět a upravovat pouze vybrané kolekce." }, "search": { "message": "Hledat" }, "invited": { "message": "Pozváno" }, "accepted": { "message": "Přijato" }, "confirmed": { "message": "Potvrzeno" }, "clientOwnerEmail": { "message": "Client Owner Email" }, "owner": { "message": "Vlastník" }, "ownerDesc": { "message": "Uživatel s nejvyšším přístupem, který může spravovat všechny aspekty vaší organizace." }, "clientOwnerDesc": { "message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization." }, "admin": { "message": "Administrátor" }, "adminDesc": { "message": "Administrátoři mohou prohlížet a spravovat všechny položky, sbírky a uživatele ve vaší organizaci." }, "user": { "message": "Uživatel" }, "userDesc": { "message": "Běžný uživatel s přístupem k přiřazeným kolekcím vaší organizace." }, "manager": { "message": "Správce" }, "managerDesc": { "message": "Správci mohou přistupovat a spravovat přiřazené kolekce ve vaší organizaci." }, "all": { "message": "Vše" }, "refresh": { "message": "Obnovit" }, "timestamp": { "message": "Časová značka" }, "event": { "message": "Událost" }, "unknown": { "message": "Neznámé" }, "loadMore": { "message": "Načíst více" }, "mobile": { "message": "Mobil", "description": "Mobile app" }, "extension": { "message": "Rozšíření", "description": "Browser extension/addon" }, "desktop": { "message": "Počítač", "description": "Desktop app" }, "webVault": { "message": "Webový trezor" }, "loggedIn": { "message": "Přihlášen." }, "changedPassword": { "message": "Heslo účtu bylo změněno" }, "enabledUpdated2fa": { "message": "Dvoufázové přihlášení bylo povoleno/upraveno." }, "disabled2fa": { "message": "Dvoufázové přihlášení bylo zakázáno" }, "recovered2fa": { "message": "Obnovit účet z dvoufázového přihlášení." }, "failedLogin": { "message": "Pokus o přihlášení se nezdařil s nesprávným heslem." }, "failedLogin2fa": { "message": "Pokus o přihlášení se nezdařil s nesprávným dvoufázovým přihlášením." }, "exportedVault": { "message": "Trezor byl exportován." }, "exportedOrganizationVault": { "message": "Trezor organizace byl exportován." }, "editedOrgSettings": { "message": "Nastavení organizace upraveno." }, "createdItemId": { "message": "Položka $ID$ byla přidána.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "editedItemId": { "message": "Položka $ID$ byla upravena", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "deletedItemId": { "message": "Položka $ID$ byla přesunuta do koše.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "movedItemIdToOrg": { "message": "Položka $ID$ přesunuta do organizace.", "placeholders": { "id": { "content": "$1", "example": "'Google'" } } }, "viewedItemId": { "message": "Položka $ID$ byla zobrazena.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedPasswordItemId": { "message": "Heslo pro položku $ID$ bylo zobrazeno.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedHiddenFieldItemId": { "message": "Skryté pole pro položku $ID$ bylo zobrazeno.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedSecurityCodeItemId": { "message": "Bezpečnostní kód pro položku $ID$ byl zobrazen.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedPasswordItemId": { "message": "Heslo pro položku $ID$ bylo zkopírováno.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedHiddenFieldItemId": { "message": "Skryté pole pro položku $ID$ bylo zkopírováno.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedSecurityCodeItemId": { "message": "Bezpečnostní kód pro položku $ID$ byl zkopírován.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "autofilledItemId": { "message": "Automaticky vyplněná položka $ID$.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "createdCollectionId": { "message": "Kolekce $ID$ byla přidána.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "editedCollectionId": { "message": "Kolekce $ID$ byla upravena", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "deletedCollectionId": { "message": "Kolekce $ID$ byla smazána.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "editedPolicyId": { "message": "Zásada $ID$ byla upravena.", "placeholders": { "id": { "content": "$1", "example": "Master Password" } } }, "createdGroupId": { "message": "Skupina $ID$ byla přidána.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "editedGroupId": { "message": "Skupina $ID$ byla upravena.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "deletedGroupId": { "message": "Skupina $ID$ byla smazána.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "removedUserId": { "message": "Uživatel $ID$ byl odebrán.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "createdAttachmentForItem": { "message": "Příloha pro položku $ID$ byla přidána.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "deletedAttachmentForItem": { "message": "Příloha pro položku $ID$ byla smazána.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "editedCollectionsForItem": { "message": "Kolekce položky $ID$ byly upraveny.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "invitedUserId": { "message": "Uživatel $ID$ byl pozván.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "confirmedUserId": { "message": "Uživatel $ID$ byl potvrzen.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "editedUserId": { "message": "Uživatel $ID$ byl upraven.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "editedGroupsForUser": { "message": "Skupiny uživatele $ID$ byly upraveny.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "unlinkedSsoUser": { "message": "Odpojené SSO pro uživatele $ID$.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "createdOrganizationId": { "message": "Created organization $ID$.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "addedOrganizationId": { "message": "Added organization $ID$.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "removedOrganizationId": { "message": "Removed organization $ID$.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "accessedClientVault": { "message": "Accessed $ID$ organization vault.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "device": { "message": "Zařízení" }, "view": { "message": "Zobrazit" }, "invalidDateRange": { "message": "Neplatné časové rozmezí." }, "errorOccurred": { "message": "Došlo k chybě." }, "userAccess": { "message": "Oprávnění uživatele" }, "userType": { "message": "Typ uživatele" }, "groupAccess": { "message": "Oprávnění skupiny" }, "groupAccessUserDesc": { "message": "Upravit skupiny, do kterých uživatel spadá." }, "invitedUsers": { "message": "Pozvaní uživatelé." }, "resendInvitation": { "message": "Znovu poslat pozvánku" }, "resendEmail": { "message": "Resend Email" }, "hasBeenReinvited": { "message": "Uživatel $USER$ byl znovu pozván.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "confirm": { "message": "Potvrdit" }, "confirmUser": { "message": "Potvrdit uživatele" }, "hasBeenConfirmed": { "message": "Uživatel $USER$ byl potvrzen.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "confirmUsers": { "message": "Potvrdit uživatele" }, "usersNeedConfirmed": { "message": "Někteří uživatelé přijali pozvánku, ale nejdříve musí být potvrzeni. Dokud nedojde k potvrzení, nebudou mít tito uživatelé přístup k organizaci." }, "startDate": { "message": "Datum začátku" }, "endDate": { "message": "Datum konce" }, "verifyEmail": { "message": "Ověřit e-mail" }, "verifyEmailDesc": { "message": "Ověřte e-mailovou adresu vašeho účtu pro získání přístupu ke všem funkcím." }, "verifyEmailFirst": { "message": "E-mailová adresa vašeho účtu musí být ověřena." }, "checkInboxForVerification": { "message": "Zkontrolujte svůj e-mail, měli byste obdržet odkaz pro ověření." }, "emailVerified": { "message": "Vaše e-mailová adresa byla ověřena" }, "emailVerifiedFailed": { "message": "Váš e-mail se nepodařilo ověřit. Zkuste odeslat nový ověřovací e-mail." }, "emailVerificationRequired": { "message": "Je vyžadováno ověření emailu" }, "emailVerificationRequiredDesc": { "message": "K použití této funkce je zapotřebí ověření vašeho e-mailu." }, "updateBrowser": { "message": "Aktualizace prohlížeče" }, "updateBrowserDesc": { "message": "Používáte nepodporovaný webový prohlížeč. Aplikace nemusí pracovat správně." }, "joinOrganization": { "message": "Přidat se k organizaci" }, "joinOrganizationDesc": { "message": "Byly jste pozváni do výše uvedené organizace. Pro přijetí pozvánky se musíte přihlásit nebo si založit nový účet." }, "inviteAccepted": { "message": "Pozvánka byla přijata." }, "inviteAcceptedDesc": { "message": "K této organizaci získáte přístup jakmile vám administrátor udělí členství. Až se tak stane, pošleme vám e-mail." }, "inviteAcceptFailed": { "message": "Pozvánku nelze přijmout. Požádejte administrátora organizace o novou pozvánku." }, "inviteAcceptFailedShort": { "message": "Pozvánku nelze přijmout. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must enable 2FA on your user account before you can join this organization." } } }, "rememberEmail": { "message": "Pamatovat si e-mail" }, "recoverAccountTwoStepDesc": { "message": "Nemůžete-li přistoupit ke svému účtu pomocí běžné metody dvoufázového přihlášení, můžete použít váš kód pro obnovení dvoufázového přihlášení pro vypnutí všech dvoufázových ověření ve vašem účtu." }, "recoverAccountTwoStep": { "message": "Obnovit dvoufázové přihlášení k účtu" }, "twoStepRecoverDisabled": { "message": "Dvoufázové ověření na vašem účtu bylo vypnuto." }, "learnMore": { "message": "Dozvědět se více" }, "deleteRecoverDesc": { "message": "Zadejte svou e-mailovou adresu pro obnovení a odstranění vašeho účtu." }, "deleteRecoverEmailSent": { "message": "Pokud váš účet existuje, zaslali jsme vám e-mail s dalšími pokyny." }, "deleteRecoverConfirmDesc": { "message": "Vyžádali jste si odstranění vašeho Bitwarden účtu. Klepnutím na tlačítko níže akci potvrďte." }, "myOrganization": { "message": "Má organizace" }, "deleteOrganization": { "message": "Smazat organizaci" }, "deletingOrganizationContentWarning": { "message": "Enter the master password to confirm deletion of $ORGANIZATION$ and all associated data. Vault data in $ORGANIZATION$ includes:", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "deletingOrganizationActiveUserAccountsWarning": { "message": "User accounts will remain active after deletion but will no longer be associated to this organization." }, "deletingOrganizationIsPermanentWarning": { "message": "Deleting $ORGANIZATION$ is permanent and irreversible.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "organizationDeleted": { "message": "Organizace byla smazána." }, "organizationDeletedDesc": { "message": "Organizace a veškerá související data byla smazána." }, "organizationUpdated": { "message": "Organizace byla aktualizována." }, "taxInformation": { "message": "Daňové údaje" }, "taxInformationDesc": { "message": "Pro poskytnutí nebo aktualizaci daňových údajů pro vaše faktury kontaktujte zákaznickou podporu." }, "billingPlan": { "message": "Plán", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "changeBillingPlan": { "message": "Změnit plán", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "changeBillingPlanUpgrade": { "message": "Povyšte svůj účet na jiný plán zadáním údajů níže. Ujistěte se prosím, že máte k účtu přidaný platný způsob platby.", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "invoiceNumber": { "message": "Faktura #$NUMBER$", "description": "ex. Invoice #79C66F0-0001", "placeholders": { "number": { "content": "$1", "example": "79C66F0-0001" } } }, "viewInvoice": { "message": "Zobrazit fakturu" }, "downloadInvoice": { "message": "Stáhnout fakturu" }, "verifyBankAccount": { "message": "Ověření bankovního účtu" }, "verifyBankAccountDesc": { "message": "Provedli jsme dva mikro vklady na váš bankovní účet (může trvat 1 až 2 pracovní dny, než se zobrazí). Zadejte částky vkladů pro ověření vašeho bankovního účtu." }, "verifyBankAccountInitialDesc": { "message": "Platba s bankovním účtem je k dispozici pouze zákazníkům ve Spojených státech. Budete vyzváni k ověření vašeho bankovního účtu. V následujících 1-2 pracovních dnech provedeme dva mikro-vklady. Zadejte tyto částky na fakturační stránce organizace pro ověření vašeho bankovního účtu." }, "verifyBankAccountFailureWarning": { "message": "Neschopnost ověření vašeho bankovního účtu bude mít za následek zmeškání platby a zrušení vašeho předplatného." }, "verifiedBankAccount": { "message": "Bankovní účet byl ověřen." }, "bankAccount": { "message": "Bankovní účet" }, "amountX": { "message": "Částka $COUNT$", "description": "Used in bank account verification of micro-deposits. Amount, as in a currency amount. Ex. Amount 1 is $2.00, Amount 2 is $1.50", "placeholders": { "count": { "content": "$1", "example": "1" } } }, "routingNumber": { "message": "Směrovací číslo", "description": "Bank account routing number" }, "accountNumber": { "message": "Číslo účtu" }, "accountHolderName": { "message": "Jméno majitele účtu" }, "bankAccountType": { "message": "Typ účtu" }, "bankAccountTypeCompany": { "message": "Společnost (firma)" }, "bankAccountTypeIndividual": { "message": "Individuální (osobní)" }, "enterInstallationId": { "message": "Zadejte ID instalace" }, "limitSubscriptionDesc": { "message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users." }, "maxSeatLimit": { "message": "Maximum Seat Limit (optional)", "description": "Upper limit of seats to allow through autoscaling" }, "maxSeatCost": { "message": "Max potential seat cost" }, "addSeats": { "message": "Přidat uživatele", "description": "Seat = User Seat" }, "removeSeats": { "message": "Odstranit uživatele", "description": "Seat = User Seat" }, "subscriptionDesc": { "message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users." }, "subscriptionUserSeats": { "message": "Vaše předplatné vám dává prostor pro celkem $COUNT$ uživatelů.", "placeholders": { "count": { "content": "$1", "example": "50" } } }, "limitSubscription": { "message": "Limit Subscription (Optional)" }, "subscriptionSeats": { "message": "Subscription Seats" }, "subscriptionUpdated": { "message": "Subscription updated" }, "additionalOptions": { "message": "Další možnosti" }, "additionalOptionsDesc": { "message": "For additional help in managing your subscription, please contact Customer Support." }, "subscriptionUserSeatsUnlimitedAutoscale": { "message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users." }, "subscriptionUserSeatsLimitedAutoscale": { "message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.", "placeholders": { "max": { "content": "$1", "example": "50" } } }, "subscriptionFreePlan": { "message": "You cannot invite more than $COUNT$ users without upgrading your plan.", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "subscriptionFamiliesPlan": { "message": "You cannot invite more than $COUNT$ users without upgrading your plan. Please contact Customer Support to upgrade.", "placeholders": { "count": { "content": "$1", "example": "6" } } }, "subscriptionSponsoredFamiliesPlan": { "message": "Your subscription allows for a total of $COUNT$ users. Your plan is sponsored and billed to an external organization.", "placeholders": { "count": { "content": "$1", "example": "6" } } }, "subscriptionMaxReached": { "message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.", "placeholders": { "count": { "content": "$1", "example": "50" } } }, "seatsToAdd": { "message": "Uživatelé k přidání" }, "seatsToRemove": { "message": "Uživatelé k odebrání" }, "seatsAddNote": { "message": "Přidání uživatelských míst bude mít za následek úpravy fakturačních součtů a okamžité dobití platební metody v souboru. První poplatek bude účtován pro zbytek aktuálního fakturačního cyklu." }, "seatsRemoveNote": { "message": "Odebrání uživatelských míst bude mít za následek úpravy vašich fakturačních součtů, které budou účtovány jako kredity k vašemu dalšímu fakturačnímu poplatku." }, "adjustedSeats": { "message": "Upraveno $AMOUNT$ uživatelských míst.", "placeholders": { "amount": { "content": "$1", "example": "15" } } }, "keyUpdated": { "message": "Klíč byl upraven." }, "updateKeyTitle": { "message": "Aktualizovat klíč" }, "updateEncryptionKey": { "message": "Aktualizovat šifrovací klíč" }, "updateEncryptionKeyShortDesc": { "message": "Používáte zastaralé šifrovací schéma." }, "updateEncryptionKeyDesc": { "message": "Přešli jsme na delší šifrovací klíče, které poskytují vyšší úroveň zabezpečení a přístup k novým funkcím. Aktualizace vašeho šifrovacího klíče je rychlá a snadná. Stačí níže zadat vaše hlavní heslo. Provedení této aktualizace může být v budoucnu povinné." }, "updateEncryptionKeyWarning": { "message": "Po aktualizace šifrovacího klíče dojde k odhlášení a budete se muset opětovně přihlásit do všech Bitwarden aplikací, které aktuálně používáte (např. mobilní aplikace či rozšíření pro prohlížeč). Nezdaří-li se odhlášení a opětovné přihlášení (během něhož bude stažen nový šifrovací klíč), může dojít k poškození údajů. Pokusíme se vás automaticky odhlásit, nicméně, může to chvíli trvat." }, "updateEncryptionKeyExportWarning": { "message": "Jakékoliv šifrované exporty, které jste uložili, budou také neplatné." }, "subscription": { "message": "Odběr" }, "loading": { "message": "Načítání" }, "upgrade": { "message": "Povýšit" }, "upgradeOrganization": { "message": "Povýšit organizaci" }, "upgradeOrganizationDesc": { "message": "Tato funkce je nedostupná pro bezplatné organizace. Přejděte na placené členství a odemkněte více funkcí." }, "createOrganizationStep1": { "message": "Vytvoření organizace: Krok 1" }, "createOrganizationCreatePersonalAccount": { "message": "Před vytvořením organizace si musíte nejdříve vytvořit bezplatný osobní účet." }, "refunded": { "message": "Platba vrácena" }, "nothingSelected": { "message": "Nevybrali jste žádné položky." }, "acceptPolicies": { "message": "Zaškrtnutím tohoto políčka souhlasím s následujícím:" }, "acceptPoliciesError": { "message": "Podmínky služby a zásady ochrany osobních údajů nebyly uznány." }, "termsOfService": { "message": "Podmínky služby" }, "privacyPolicy": { "message": "Zásady ochrany osobních údajů" }, "filters": { "message": "Filtry" }, "vaultTimeout": { "message": "Časový limit trezoru" }, "vaultTimeoutDesc": { "message": "Vyberte, kdy vyprší bezpečnostní limit trezoru. Poté bude provedena vybraná akce." }, "oneMinute": { "message": "Po 1 minutě" }, "fiveMinutes": { "message": "Po 5 minutách" }, "fifteenMinutes": { "message": "Po 15 minutách" }, "thirtyMinutes": { "message": "Po 30 minutách" }, "oneHour": { "message": "Po 1 hodině" }, "fourHours": { "message": "Po 4 hodinách" }, "onRefresh": { "message": "Při obnově karty prohlížeče" }, "dateUpdated": { "message": "Upraveno", "description": "ex. Date this item was updated" }, "datePasswordUpdated": { "message": "Heslo bylo změněno", "description": "ex. Date this password was updated" }, "organizationIsDisabled": { "message": "Organizace je zakázána." }, "licenseIsExpired": { "message": "Licence vypršela." }, "updatedUsers": { "message": "Uživatelé byli aktualizováni" }, "selected": { "message": "Vybrané" }, "ownership": { "message": "Vlastnictví" }, "whoOwnsThisItem": { "message": "Kdo vlastní tuto položku?" }, "strong": { "message": "Silné", "description": "ex. A strong password. Scale: Very Weak -> Weak -> Good -> Strong" }, "good": { "message": "Dobré", "description": "ex. A good password. Scale: Very Weak -> Weak -> Good -> Strong" }, "weak": { "message": "Slabé", "description": "ex. A weak password. Scale: Very Weak -> Weak -> Good -> Strong" }, "veryWeak": { "message": "Velmi slabé", "description": "ex. A very weak password. Scale: Very Weak -> Weak -> Good -> Strong" }, "weakMasterPassword": { "message": "Slabé hlavní heslo" }, "weakMasterPasswordDesc": { "message": "Zvolené hlavní heslo je slabé. Pro správnou ochranu účtu Bitwarden byste měli použít silné hlavní heslo (nebo heslovou frázi). Opravdu chcete toto heslo použít?" }, "rotateAccountEncKey": { "message": "Změnit také šifrovací klíč k mému účtu" }, "rotateEncKeyTitle": { "message": "Změnit šifrovací klíč" }, "rotateEncKeyConfirmation": { "message": "Opravdu chcete změnit šifrovací klíč k vašemu účtu?" }, "attachmentsNeedFix": { "message": "Tato položka obsahuje staré přílohy, které vyžadují opravu." }, "attachmentFixDesc": { "message": "Tato stará příloha vyžaduje opravu. Klepnutím zobrazíte více informací." }, "fix": { "message": "Opravit", "description": "This is a verb. ex. 'Fix The Car'" }, "oldAttachmentsNeedFixDesc": { "message": "Ve vašem trezoru jsou staré přílohy vyžadující opravu před změnou šifrovacího klíče k vašemu účtu." }, "yourAccountsFingerprint": { "message": "Fráze otisku prstu vašeho účtu", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "fingerprintEnsureIntegrityVerify": { "message": "Pro zajištění integrity vašich šifrovacích klíčů proveďte nejprve ověření fráze uživatelského otisku prstu.", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "dontAskFingerprintAgain": { "message": "Již se neptat na ověření fráze otisku prstu", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "free": { "message": "Zdarma", "description": "Free, as in 'Free beer'" }, "apiKey": { "message": "API klíč" }, "apiKeyDesc": { "message": "Váš API klíč může být použit pro ověření přístupu k veřejnému Bitwarden API." }, "apiKeyRotateDesc": { "message": "Změna API klíče zruší platnost předchozího klíče. API klíč můžete změnit, pokud se domníváte, že aktuální klíč již není bezpečný." }, "apiKeyWarning": { "message": "Váš API klíč má plný přístup k organizaci. Měl by být uchován v tajnosti." }, "userApiKeyDesc": { "message": "Váš API klíč může být použit k ověření v Bitwarden CLI." }, "userApiKeyWarning": { "message": "Váš API klíč je alternativní ověřovací mechanismus, který by měl být zachován v tajnosti." }, "oauth2ClientCredentials": { "message": "OAuth 2.0 klientské údaje", "description": "'OAuth 2.0' is a programming protocol. It should probably not be translated." }, "viewApiKey": { "message": "Zobrazit API klíč" }, "rotateApiKey": { "message": "Změnit API klíč" }, "selectOneCollection": { "message": "Musíte vybrat alespoň jednu kolekci." }, "couldNotChargeCardPayInvoice": { "message": "Nepodařilo se nám strhnout platbu z vaší karty. Prohlédněte si a zaplaťte nezaplacenou fakturu uvedenou níže." }, "inAppPurchase": { "message": "Nákup v aplikaci" }, "cannotPerformInAppPurchase": { "message": "Tuto akci nelze provést při použití platební metody „nákup v aplikaci“." }, "manageSubscriptionFromStore": { "message": "Své předplatné musíte spravovat z obchodu, pomocí kterého byl nákup v aplikaci proveden." }, "minLength": { "message": "Minimální délka" }, "clone": { "message": "Duplikovat" }, "masterPassPolicyDesc": { "message": "Nastavte minimální požadavky pro sílu hlavního hesla." }, "twoStepLoginPolicyDesc": { "message": "Požadovat po uživatelích nastavení dvoufázového přihlášení pro jejich osobní účty." }, "twoStepLoginPolicyWarning": { "message": "Členové organizace, kteří nemají povoleno dvoufázové přihlášení pro svůj osobní účet, budou odstraněni z organizace a obdrží e-mail, který je o změně informuje." }, "twoStepLoginPolicyUserWarning": { "message": "Jste členem organizace, která vyžaduje použití dvoufázové přihlášení na vašem uživatelském účtu. Pokud zakážete všechny poskytovatele dvoufázového přihlášení, budete z takovýchto organizací automaticky odebráni." }, "passwordGeneratorPolicyDesc": { "message": "Nastavení minimálních požadavků složitosti hesla pro konfiguraci generátoru hesel." }, "passwordGeneratorPolicyInEffect": { "message": "Jedna nebo více zásad organizace ovlivňují nastavení generátoru." }, "masterPasswordPolicyInEffect": { "message": "Jedna nebo více zásad organizace vyžaduje, aby hlavní heslo splňovalo následující požadavky:" }, "policyInEffectMinComplexity": { "message": "Minimální skóre složitosti $SCORE$", "placeholders": { "score": { "content": "$1", "example": "4" } } }, "policyInEffectMinLength": { "message": "Minimální délka $LENGTH$", "placeholders": { "length": { "content": "$1", "example": "14" } } }, "policyInEffectUppercase": { "message": "Obsahuje jedno nebo více velkých písmen" }, "policyInEffectLowercase": { "message": "Obsahuje jedno nebo více malých písmen" }, "policyInEffectNumbers": { "message": "Obsahuje jednu nebo více číslic" }, "policyInEffectSpecial": { "message": "Obsahuje jeden nebo více následujících speciálních znaků: $CHARS$", "placeholders": { "chars": { "content": "$1", "example": "!@#$%^&*" } } }, "masterPasswordPolicyRequirementsNotMet": { "message": "Vaše nové hlavní heslo nesplňuje požadavky zásad organizace." }, "minimumNumberOfWords": { "message": "Minimální počet slov" }, "defaultType": { "message": "Výchozí typ" }, "userPreference": { "message": "Uživatelská volba" }, "vaultTimeoutAction": { "message": "Akce při vypršení časového limitu" }, "vaultTimeoutActionLockDesc": { "message": "Trezor bude uzamčen. Pro opětovný přístup k trezoru bude vyžadováno hlavní heslo." }, "vaultTimeoutActionLogOutDesc": { "message": "Budete odhlášeni. Pro opětovný přístup k trezoru bude vyžadováno ověření." }, "lock": { "message": "Zamknout", "description": "Verb form: to make secure or inaccesible by" }, "trash": { "message": "Koš", "description": "Noun: A special folder for holding deleted items that have not yet been permanently deleted" }, "searchTrash": { "message": "Hledat v koši" }, "permanentlyDelete": { "message": "Trvale smazat" }, "permanentlyDeleteSelected": { "message": "Trvale smazat vybrané" }, "permanentlyDeleteItem": { "message": "Trvale smazat položku" }, "permanentlyDeleteItemConfirmation": { "message": "Opravdu chcete tuto položku trvale smazat?" }, "permanentlyDeletedItem": { "message": "Položka byla trvale smazána" }, "permanentlyDeletedItems": { "message": "Položky byly trvale smazány" }, "permanentlyDeleteSelectedItemsDesc": { "message": "Vybrané položky ($COUNT$) budou trvale smazány. Opravdu chcete všechny vybrané položky trvale smazat?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "permanentlyDeletedItemId": { "message": "Položka $ID$ byla trvale smazána.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "restore": { "message": "Obnovit" }, "restoreSelected": { "message": "Obnovit vybrané" }, "restoreItem": { "message": "Obnovit položku" }, "restoredItem": { "message": "Položka byla obnovena" }, "restoredItems": { "message": "Položky byly obnoveny" }, "restoreItemConfirmation": { "message": "Opravdu chcete tuto položku obnovit?" }, "restoreItems": { "message": "Obnovit položky" }, "restoreSelectedItemsDesc": { "message": "Vybrané položky ($COUNT$) budou obnoveny. Opravdu chcete všechny vybrané položky obnovit?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "restoredItemId": { "message": "Položka $ID$ byla obnovena.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "vaultTimeoutLogOutConfirmation": { "message": "Po vypršení časového limitu dojde k odhlášení. Přístup k trezoru bude odebrán a pro opětovné přihlášení bude vyžadováno online ověření. Opravdu chcete použít toto nastavení?" }, "vaultTimeoutLogOutConfirmationTitle": { "message": "Potvrzení akce při vypršení časového limitu" }, "hidePasswords": { "message": "Skrýt hesla" }, "countryPostalCodeRequiredDesc": { "message": "Tyto informace potřebujeme pouze pro výpočet daně a pro finanční přehledy." }, "includeVAT": { "message": "Zahrnout údaje o DPH (volitelné)" }, "taxIdNumber": { "message": "DIČ" }, "taxInfoUpdated": { "message": "Údaje pro DPH aktualizovány." }, "setMasterPassword": { "message": "Nastavit hlavní heslo" }, "ssoCompleteRegistration": { "message": "Chcete-li dokončit přihlášení pomocí SSO, nastavte prosím hlavní přístupové heslo k vašemu trezoru." }, "identifier": { "message": "Identifikátor" }, "organizationIdentifier": { "message": "Identifikátor organizace" }, "ssoLogInWithOrgIdentifier": { "message": "Přihlaste se pomocí přihlašovacího portálu vaší organizace. Chcete-li začít, zadejte prosím identifikátor vaší organizace." }, "enterpriseSingleSignOn": { "message": "Jednotné podnikové přihlášení" }, "ssoHandOff": { "message": "Nyní můžete zavřít tuto kartu a pokračovat v rozšíření." }, "includeAllTeamsFeatures": { "message": "Všechny funkce Týmů, navíc:" }, "includeSsoAuthentication": { "message": "Podnikové přihlášení prostřednictvím SAML2.0 a OpenID Connect" }, "includeEnterprisePolicies": { "message": "Podnikové politiky" }, "ssoValidationFailed": { "message": "Ověření pomocí SSO selhalo" }, "ssoIdentifierRequired": { "message": "Je vyžadován identifikátor organizace." }, "unlinkSso": { "message": "Odebrat podnikové přihlášení" }, "unlinkSsoConfirmation": { "message": "Are you sure you want to unlink SSO for this organization?" }, "linkSso": { "message": "Propojit s podnikovým přihlášením" }, "singleOrg": { "message": "Jedna organizace" }, "singleOrgDesc": { "message": "Omezí uživatelům možnost připojit se k jiným organizacím." }, "singleOrgBlockCreateMessage": { "message": "Vaše současná organizace má pravidla, která vám nedovolují připojit se k více než jedné organizaci. Obraťte se na správce organizace nebo se zaregistrujte z jiného účtu Bitwarden." }, "singleOrgPolicyWarning": { "message": "Členové organizace, kteří nejsou vlastníky nebo správci, a jsou již členy jiné organizace, budou odstraněni z vaší organizace." }, "requireSso": { "message": "Ověření jednotného přihlášení" }, "requireSsoPolicyDesc": { "message": "Vyžaduje přihlášení uživatelů pomocí metody jednotného přihlášení." }, "prerequisite": { "message": "Předpoklady" }, "requireSsoPolicyReq": { "message": "Před aktivací této politiky musí být povolena politika jednotné organizace." }, "requireSsoPolicyReqError": { "message": "Jednotná pravidla organizace není povolena." }, "requireSsoExemption": { "message": "Majitelé a správci organizací jsou od prosazování těchto zásad osvobozeni." }, "sendTypeFile": { "message": "Soubor" }, "sendTypeText": { "message": "Text" }, "createSend": { "message": "Vytvořit nový Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "editSend": { "message": "Upravit Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "createdSend": { "message": "Send vytvořen", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "editedSend": { "message": "Send upraven", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deletedSend": { "message": "Send smazán", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deleteSend": { "message": "Smazat Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deleteSendConfirmation": { "message": "Jste si jisti, že chcete odstranit tento Send?", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "whatTypeOfSend": { "message": "Jakého typu je tento Send?", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deletionDate": { "message": "Datum odstranění" }, "deletionDateDesc": { "message": "Tento Send bude trvale smazán v určený datum a čas.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "expirationDate": { "message": "Datum expirace" }, "expirationDateDesc": { "message": "Je-li nastaveno, přístup k tomuto Send vyprší v daný datum a čas.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "maxAccessCount": { "message": "Maximální počet přístupů" }, "maxAccessCountDesc": { "message": "Je-li nastaveno, uživatelé již nebudou mít přístup k tomuto Send, jakmile bude dosaženo maximálního počtu přístupů.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "currentAccessCount": { "message": "Počet aktuálních přístupů" }, "sendPasswordDesc": { "message": "Volitelně vyžadovat heslo pro přístup k tomuto Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendNotesDesc": { "message": "Soukromé poznámky o tomto Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "disabled": { "message": "Zakázáno" }, "sendLink": { "message": "Odkaz tohoto Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "copySendLink": { "message": "Zkopírovat odkaz Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "removePassword": { "message": "Odstranit heslo" }, "removedPassword": { "message": "Heslo odstraněno" }, "removePasswordConfirmation": { "message": "Jste si jisti, že chcete odstranit heslo?" }, "hideEmail": { "message": "Skrýt mou e-mailovou adresu před příjemci." }, "disableThisSend": { "message": "Zakažte tento Send, aby k němu nikdo neměl přístup.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "allSends": { "message": "Všechny Sends" }, "maxAccessCountReached": { "message": "Dosažen maximální počet přístupů", "description": "This text will be displayed after a Send has been accessed the maximum amount of times." }, "pendingDeletion": { "message": "Čeká na smazání" }, "expired": { "message": "Vypršela platnost" }, "searchSends": { "message": "Hledat Sends", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendProtectedPassword": { "message": "Toto Send je chráněno heslem. Pro pokračování zadejte prosím níže heslo.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendProtectedPasswordDontKnow": { "message": "Neznáte heslo? Požádejte odesílatele o heslo potřebné pro přístup k tomuto Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendHiddenByDefault": { "message": "Toto Send je ve výchozím nastavení skryté. Viditelnost můžete přepnout pomocí tlačítka níže.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "downloadFile": { "message": "Stáhnout soubor" }, "sendAccessUnavailable": { "message": "Send, ke kterému se pokoušíte přistupovat, neexistuje nebo již není k dispozici.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "missingSendFile": { "message": "Soubor přidružený tomuto Send nebyl nalezen.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "noSendsInList": { "message": "Nebyly nalezeny žádné Send položky.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "emergencyAccess": { "message": "Nouzový přístup" }, "emergencyAccessDesc": { "message": "Udělit a spravovat nouzový přístup důvěryhodným kontaktům. Důvěryhodné kontakty mohou požádat o přístup k zobrazení nebo převzetí vašeho účtu v případě nouze. Navštivte naši stránku nápovědy pro více informací a podrobností o tom, jak funguje nulové sdílení znalostí." }, "emergencyAccessOwnerWarning": { "message": "Jste vlastníkem jedné nebo více organizací. Pokud dáte přístup k převzetí nouzovému kontaktu, bude moci po převzetí použít všechna vaše oprávnění jako vlastník." }, "trustedEmergencyContacts": { "message": "Důvěryhodné nouzové kontakty" }, "noTrustedContacts": { "message": "Zatím jste nepřidali žádné nouzové kontakty, pozvěte důvěryhodný kontakt, abyste mohli začít." }, "addEmergencyContact": { "message": "Přidat nouzový kontakt" }, "designatedEmergencyContacts": { "message": "Určeno jako nouzový kontakt" }, "noGrantedAccess": { "message": "Zatím jste nebyl určen jako nouzový kontakt pro nikoho." }, "inviteEmergencyContact": { "message": "Pozvat nouzový kontakt" }, "editEmergencyContact": { "message": "Upravit nouzový kontakt" }, "inviteEmergencyContactDesc": { "message": "Pozvěte nový nouzový kontakt zadáním níže uvedené e-mailové adresy účtu Bitwarden. Pokud nemají Bitwarden účet, budou vyzváni k vytvoření nového účtu." }, "emergencyAccessRecoveryInitiated": { "message": "Nouzový přístup zahájen" }, "emergencyAccessRecoveryApproved": { "message": "Nouzový přístup schválen" }, "viewDesc": { "message": "Může zobrazit všechny položky ve vašem trezoru." }, "takeover": { "message": "Převzetí" }, "takeoverDesc": { "message": "Může obnovit váš účet s novým hlavním heslem." }, "waitTime": { "message": "Čas čekání" }, "waitTimeDesc": { "message": "Čas potřebný před automatickým udělením přístupu." }, "oneDay": { "message": "1 den" }, "days": { "message": "$DAYS$ dní", "placeholders": { "days": { "content": "$1", "example": "1" } } }, "invitedUser": { "message": "Uživatel byl pozván." }, "acceptEmergencyAccess": { "message": "Byli jste pozváni, abyste se stali nouzovým kontaktem pro výše uvedené uživatele. Chcete-li přijmout pozvánku, musíte se přihlásit nebo vytvořit nový účet Bitwarden." }, "emergencyInviteAcceptFailed": { "message": "Pozvánku nelze přijmout. Požádejte uživatele o zaslání nové pozvánky." }, "emergencyInviteAcceptFailedShort": { "message": "Pozvánku nelze přijmout. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must enable 2FA on your user account before you can join this organization." } } }, "emergencyInviteAcceptedDesc": { "message": "Po potvrzení Vaší identity můžete pro tohoto uživatele přistupovat k nouzovým možnostem. Jakmile se tak stane, pošleme vám e-mail." }, "requestAccess": { "message": "Požádat o přístup" }, "requestAccessConfirmation": { "message": "Jste si jisti, že chcete požádat o nouzový přístup? Přístup vám bude poskytnut po $WAITTIME$ dnech nebo po ručním schválení žádosti.", "placeholders": { "waittime": { "content": "$1", "example": "1" } } }, "requestSent": { "message": "Požádáno o nouzový přístup k $USER$. Jakmile bude možné pokračovat, budeme vás informovat e-mailem.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "approve": { "message": "Schválit" }, "reject": { "message": "Odmítnout" }, "approveAccessConfirmation": { "message": "Jste si jisti, že chcete schválit nouzový přístup? To umožní $USER$ $ACTION$ na váš účet.", "placeholders": { "user": { "content": "$1", "example": "John Smith" }, "action": { "content": "$2", "example": "View" } } }, "emergencyApproved": { "message": "Nouzový přístup byl schválen." }, "emergencyRejected": { "message": "Nouzový přístup odmítnut" }, "passwordResetFor": { "message": "Heslo obnoveno pro $USER$. Nyní se můžete přihlásit pomocí nového hesla.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "personalOwnership": { "message": "Osobní vlastnictví" }, "personalOwnershipPolicyDesc": { "message": "Vyžaduje po uživatelích uložení položek trezoru do organizace odstraněním možnosti osobního vlastnictví." }, "personalOwnershipExemption": { "message": "Majitelé a správci organizací jsou od prosazování těchto zásad osvobozeni." }, "personalOwnershipSubmitError": { "message": "Vzhledem k podnikovým zásadám je zakázáno ukládat položky do vašeho osobního trezoru. Změňte možnost vlastnictví na organizaci a vyberte z dostupných kolekcí." }, "disableSend": { "message": "Deaktivovat Send" }, "disableSendPolicyDesc": { "message": "Nedovolit uživatelům vytvářet nebo upravovat Bitwarden Send. Smazání existujícího Send je stále povoleno.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "disableSendExemption": { "message": "Uživatelé organizace, kteří mohou spravovat zásady organizace, jsou osvobozeni od vynucování těchto zásad." }, "sendDisabled": { "message": "Send deaktivován", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendDisabledWarning": { "message": "Kvůli zásadám podniku můžete odstranit pouze existující Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptions": { "message": "Nastavení Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsPolicyDesc": { "message": "Nastavte možnosti pro vytváření a úpravy Sendů.", "description": "'Sends' is a plural noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsExemption": { "message": "Uživatelé organizace, kteří mohou spravovat zásady organizace, jsou osvobozeni od vynucování těchto zásad." }, "disableHideEmail": { "message": "Nedovolte uživatelům skrýt svou e-mailovou adresu před příjemci při vytváření nebo úpravách Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsPolicyInEffect": { "message": "V současné době platí následující zásady organizace:" }, "sendDisableHideEmailInEffect": { "message": "Uživatelé nesmí při vytváření nebo úpravách Send skrýt svou e-mailovou adresu před příjemci.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "modifiedPolicyId": { "message": "Změněné zásady $ID$.", "placeholders": { "id": { "content": "$1", "example": "Master Password" } } }, "planPrice": { "message": "Cena plánu" }, "estimatedTax": { "message": "Odhadovaná daň" }, "custom": { "message": "Vlastní" }, "customDesc": { "message": "Umožňuje větší kontrolu nad uživatelských oprávnění pro pokročilé konfigurace." }, "permissions": { "message": "Oprávnění" }, "accessEventLogs": { "message": "Přístup k logům" }, "accessImportExport": { "message": "Přístup k importu/exportu" }, "accessReports": { "message": "Přístup k výkazům" }, "missingPermissions": { "message": "You lack the necessary permissions to perform this action." }, "manageAllCollections": { "message": "Spravovat všechny kolekce" }, "createNewCollections": { "message": "Create New Collections" }, "editAnyCollection": { "message": "Upravit jakoukoliv kolekci" }, "deleteAnyCollection": { "message": "Odstranit jakoukoliv kolekci" }, "manageAssignedCollections": { "message": "Spravovat přiřazené kolekce" }, "editAssignedCollections": { "message": "Edit Assigned Collections" }, "deleteAssignedCollections": { "message": "Spravovat přiřazené kolekce" }, "manageGroups": { "message": "Spravovat skupiny" }, "managePolicies": { "message": "Spravovat zásady" }, "manageSso": { "message": "Spravovat SSO" }, "manageUsers": { "message": "Spravovat uživatele" }, "manageResetPassword": { "message": "Správa obnovení hesla" }, "disableRequiredError": { "message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.", "placeholders": { "policyName": { "content": "$1", "example": "Single Sign-On Authentication" } } }, "personalOwnershipPolicyInEffect": { "message": "Zásady organizace ovlivňují možnosti vlastnictví." }, "personalOwnershipPolicyInEffectImports": { "message": "An organization policy has disabled importing items into your personal vault." }, "personalOwnershipCheckboxDesc": { "message": "Zakázat osobní vlastnictví pro uživatele organizace" }, "textHiddenByDefault": { "message": "Při přístupu k Send, skrýt text ve výchozím nastavení", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendNameDesc": { "message": "Přátelský název pro popis tohoto Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendTextDesc": { "message": "Text, který chcete odeslat." }, "sendFileDesc": { "message": "Soubor, který chcete odeslat." }, "copySendLinkOnSave": { "message": "Zkopírovat odkaz tohoto Send do mé schránky při uložení." }, "sendLinkLabel": { "message": "Odkaz tohoto Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "send": { "message": "Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendAccessTaglineProductDesc": { "message": "Bitwarden Send odesílá citlivé, dočasné informace ostatním snadno a bezpečně.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendAccessTaglineLearnMore": { "message": "Zjistěte více o", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more about** Bitwarden Send or sign up to try it today.'" }, "sendVaultCardProductDesc": { "message": "Sdílejte text či soubory s kýmkoliv." }, "sendVaultCardLearnMore": { "message": "Zjistěte více", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more**, see how it works, or try it now. '" }, "sendVaultCardSee": { "message": "podívejte se", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, **see** how it works, or try it now.'" }, "sendVaultCardHowItWorks": { "message": "jak to funguje", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see **how it works**, or try it now.'" }, "sendVaultCardOr": { "message": "nebo", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, **or** try it now.'" }, "sendVaultCardTryItNow": { "message": "to teď vyzkoušejte", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, or **try it now**.'" }, "sendAccessTaglineOr": { "message": "nebo", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send **or** sign up to try it today.'" }, "sendAccessTaglineSignUp": { "message": "se zaregistrujte", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or **sign up** to try it today.'" }, "sendAccessTaglineTryToday": { "message": "abyste to vyzkoušeli již dnes.", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or sign up to **try it today.**'" }, "sendCreatorIdentifier": { "message": "Uživatel Bitwarden $USER_IDENTIFIER$ s vámi sdílel následující", "placeholders": { "user_identifier": { "content": "$1", "example": "An email address" } } }, "viewSendHiddenEmailWarning": { "message": "Uživatel Bitwarden, který vytvořil tento Send, se rozhodl skrýt svou e-mailovou adresu. Před použitím nebo stažením jeho obsahu byste se měli ujistit, že zdroji tohoto odkazu důvěřujete.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "expirationDateIsInvalid": { "message": "Uvedené datum vypršení platnosti není platné." }, "deletionDateIsInvalid": { "message": "Uvedené datum odstranění není platné." }, "expirationDateAndTimeRequired": { "message": "Je vyžadováno datum a čas vypršení platnosti." }, "deletionDateAndTimeRequired": { "message": "Je vyžadováno datum a čas odstranění." }, "dateParsingError": { "message": "Došlo k chybě při ukládání dat odstranění a vypršení platnosti." }, "webAuthnFallbackMsg": { "message": "Chcete-li ověřit své dvoufaktorové ověření, klikněte na tlačítko níže." }, "webAuthnAuthenticate": { "message": "Ověřit WebAuthn" }, "webAuthnNotSupported": { "message": "WebAuthn není v tomto prohlížeči podporován." }, "webAuthnSuccess": { "message": "<strong>WebAuthn úspěšně ověřen!</strong><br>Tuto kartu můžete zavřít." }, "hintEqualsPassword": { "message": "Nápověda k vašemu heslu nemůže být stejná jako vaše heslo." }, "enrollPasswordReset": { "message": "Zapsat do procesu obnovení hesla" }, "enrolledPasswordReset": { "message": "Zapsáno do procesu obnovení hesla" }, "withdrawPasswordReset": { "message": "Odstoupit z obnovení hesla" }, "enrollPasswordResetSuccess": { "message": "Zapsání bylo úspěšné!" }, "withdrawPasswordResetSuccess": { "message": "Odstoupení bylo úspěšné!" }, "eventEnrollPasswordReset": { "message": "Uživatel $ID$ se zapsal do pomoci s obnovením hesla.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventWithdrawPasswordReset": { "message": "Uživatel $ID$ odstoupil z pomoci s obnovením hesla.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventAdminPasswordReset": { "message": "Hlavní heslo uživatele $ID$ obnoveno.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventResetSsoLink": { "message": "Reset Sso link for user $ID$", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "firstSsoLogin": { "message": "$ID$ logged in using Sso for the first time", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "resetPassword": { "message": "Obnovit heslo" }, "resetPasswordLoggedOutWarning": { "message": "Pokračováním odhlásíte $NAME$ z aktuální relace, což znamená, že se budou muset znovu přihlásit. Aktivní relace na jiných zařízeních mohou zůstat aktivní až po dobu jedné hodiny.", "placeholders": { "name": { "content": "$1", "example": "John Smith" } } }, "thisUser": { "message": "tento uživatel" }, "resetPasswordMasterPasswordPolicyInEffect": { "message": "Jedna nebo více zásad organizace vyžaduje, aby hlavní heslo splňovalo následující požadavky:" }, "resetPasswordSuccess": { "message": "Heslo bylo úspěšně obnoveno!" }, "resetPasswordEnrollmentWarning": { "message": "Registrace umožní správcům organizace změnit vaše hlavní heslo. Opravdu se chcete zaregistrovat?" }, "resetPasswordPolicy": { "message": "Obnovení hlavního hesla" }, "resetPasswordPolicyDescription": { "message": "Povolte správcům v organizaci resetovat hlavní heslo uživatelů organizace." }, "resetPasswordPolicyWarning": { "message": "Uživatelé v organizaci se budou muset sami zaregistrovat nebo být automaticky zaregistrovaní předtím, než budou moct správcové resetovat jejich hlavní heslo." }, "resetPasswordPolicyAutoEnroll": { "message": "Automatická registrace" }, "resetPasswordPolicyAutoEnrollDescription": { "message": "Jakmile bude jejich pozvání přijato, všichni uživatelé budou automaticky zaregistrováni do obnovení hesla." }, "resetPasswordPolicyAutoEnrollWarning": { "message": "Uživatelé, kteří jsou již v organizaci, nebudou zpětně zaregistrováni do obnovení hesla. Než budou moci správci obnovit hlavní heslo, budou se muset zaregistrovat sami." }, "resetPasswordPolicyAutoEnrollCheckbox": { "message": "Automaticky zaregistrovat nové uživatele" }, "resetPasswordAutoEnrollInviteWarning": { "message": "Tato organizace má podnikové zásady, které vás automaticky zaregistrují k obnovení hesla. Registrace umožní správcům organizace změnit vaše hlavní heslo." }, "resetPasswordOrgKeysError": { "message": "Odpověď klíčů organizace je prázdná" }, "resetPasswordDetailsError": { "message": "Odpověď na obnovení hesla je prázdná" }, "trashCleanupWarning": { "message": "Položky, které byly v koši déle než 30 dní, budou automaticky smazány." }, "trashCleanupWarningSelfHosted": { "message": "Položky, které byly nějakou dobu v koši, budou automaticky smazány." }, "passwordPrompt": { "message": "Zeptat se znovu na hlavní heslo" }, "passwordConfirmation": { "message": "Potvrzení hlavního hesla" }, "passwordConfirmationDesc": { "message": "Tato akce je chráněna. Chcete-li pokračovat, zadejte znovu vaše hlavní heslo, abychom ověřili vaší totožnost." }, "reinviteSelected": { "message": "Znovu odeslat pozvánky" }, "noSelectedUsersApplicable": { "message": "Tuto akci nelze použít na žádného z vybraných uživatelů." }, "removeUsersWarning": { "message": "Opravdu chcete odebrat následující uživatele? Proces může trvat několik sekund a nelze jej přerušit ani zrušit." }, "theme": { "message": "Motiv" }, "themeDesc": { "message": "Vyberte si šablonu pro váš webový trezor." }, "themeSystem": { "message": "Použít systémový motiv" }, "themeDark": { "message": "Tmavý" }, "themeLight": { "message": "Světlý" }, "confirmSelected": { "message": "Potvrdit vybrané" }, "bulkConfirmStatus": { "message": "Stav hromadné akce" }, "bulkConfirmMessage": { "message": "Úspěšně potvrzeno." }, "bulkReinviteMessage": { "message": "Znovu úspěšně pozváno." }, "bulkRemovedMessage": { "message": "Úspěšně odstraněno" }, "bulkFilteredMessage": { "message": "Vyloučené, neplatí pro tuto akci." }, "fingerprint": { "message": "Otisk prstu" }, "removeUsers": { "message": "Odebrat uživatele" }, "error": { "message": "Chyba" }, "resetPasswordManageUsers": { "message": "Správa uživatelů musí být také povolena s oprávněním spravovat obnovení hesla" }, "setupProvider": { "message": "Nastavení poskytovatele" }, "setupProviderLoginDesc": { "message": "Byli jste pozváni k nastavení nového poskytovatele. Chcete-li pokračovat, musíte se přihlásit nebo vytvořit nový Bitwarden účet." }, "setupProviderDesc": { "message": "Pro dokončení nastavení poskytovatele, zadejte prosím níže uvedené údaje. Pokud máte nějaké dotazy, kontaktujte zákaznickou podporu." }, "providerName": { "message": "Jméno poskytovatele" }, "providerSetup": { "message": "Poskytovatel byl vytvořen." }, "clients": { "message": "Klienti" }, "providerAdmin": { "message": "Administrátor poskytovatele" }, "providerAdminDesc": { "message": "Uživatel s nejvyšším oprávněním, který může spravovat všechny aspekty vašeho poskytovatele a také přístup a správu klientských organizací." }, "serviceUser": { "message": "Servisní uživatel" }, "serviceUserDesc": { "message": "Servisní uživatelé mohou přistupovat ke všem klientským organizacím a spravovat je." }, "providerInviteUserDesc": { "message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account." }, "joinProvider": { "message": "Join Provider" }, "joinProviderDesc": { "message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account." }, "providerInviteAcceptFailed": { "message": "Unable to accept invitation. Ask a provider admin to send a new invitation." }, "providerInviteAcceptedDesc": { "message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens." }, "providerUsersNeedConfirmed": { "message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed." }, "provider": { "message": "Provider" }, "newClientOrganization": { "message": "New Client Organization" }, "newClientOrganizationDesc": { "message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization." }, "addExistingOrganization": { "message": "Přidat existující organizaci" }, "myProvider": { "message": "Můj poskytovatel" }, "addOrganizationConfirmation": { "message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" }, "provider": { "content": "$2", "example": "My Provider Name" } } }, "organizationJoinedProvider": { "message": "Organization was successfully added to the provider" }, "accessingUsingProvider": { "message": "Accessing organization using provider $PROVIDER$", "placeholders": { "provider": { "content": "$1", "example": "My Provider Name" } } }, "providerIsDisabled": { "message": "Provider is disabled." }, "providerUpdated": { "message": "Provider updated" }, "yourProviderIs": { "message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.", "placeholders": { "provider": { "content": "$1", "example": "My Provider Name" } } }, "detachedOrganization": { "message": "The organization $ORGANIZATION$ has been detached from your provider.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "detachOrganizationConfirmation": { "message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider." }, "add": { "message": "Přidat" }, "updatedMasterPassword": { "message": "Hlavní heslo aktualizováno" }, "updateMasterPassword": { "message": "Aktualizovat hlavní heslo" }, "updateMasterPasswordWarning": { "message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour." }, "masterPasswordInvalidWarning": { "message": "Your Master Password does not meet the policy requirements of this organization. In order to join the organization, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour." }, "maximumVaultTimeout": { "message": "Vault Timeout" }, "maximumVaultTimeoutDesc": { "message": "Configure a maximum vault timeout for all users." }, "maximumVaultTimeoutLabel": { "message": "Maximum Vault Timeout" }, "invalidMaximumVaultTimeout": { "message": "Invalid Maximum Vault Timeout." }, "hours": { "message": "Hodin" }, "minutes": { "message": "Minut" }, "vaultTimeoutPolicyInEffect": { "message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)", "placeholders": { "hours": { "content": "$1", "example": "5" }, "minutes": { "content": "$2", "example": "5" } } }, "customVaultTimeout": { "message": "Custom Vault Timeout" }, "vaultTimeoutToLarge": { "message": "Your vault timeout exceeds the restriction set by your organization." }, "disablePersonalVaultExport": { "message": "Disable Personal Vault Export" }, "disablePersonalVaultExportDesc": { "message": "Prohibits users from exporting their private vault data." }, "vaultExportDisabled": { "message": "Vault Export Disabled" }, "personalVaultExportPolicyInEffect": { "message": "One or more organization policies prevents you from exporting your personal vault." }, "selectType": { "message": "Select SSO Type" }, "type": { "message": "Typ" }, "openIdConnectConfig": { "message": "OpenID Connect Configuration" }, "samlSpConfig": { "message": "SAML Service Provider Configuration" }, "samlIdpConfig": { "message": "SAML Identity Provider Configuration" }, "callbackPath": { "message": "Callback Path" }, "signedOutCallbackPath": { "message": "Signed Out Callback Path" }, "authority": { "message": "Authority" }, "clientId": { "message": "Client ID" }, "clientSecret": { "message": "Client Secret" }, "metadataAddress": { "message": "Metadata Address" }, "oidcRedirectBehavior": { "message": "OIDC Redirect Behavior" }, "getClaimsFromUserInfoEndpoint": { "message": "Get claims from user info endpoint" }, "additionalScopes": { "message": "Custom Scopes" }, "additionalUserIdClaimTypes": { "message": "Custom User ID Claim Types" }, "additionalEmailClaimTypes": { "message": "Email Claim Types" }, "additionalNameClaimTypes": { "message": "Custom Name Claim Types" }, "acrValues": { "message": "Requested Authentication Context Class Reference values" }, "expectedReturnAcrValue": { "message": "Expected \"acr\" Claim Value In Response" }, "spEntityId": { "message": "SP Entity ID" }, "spMetadataUrl": { "message": "SAML 2.0 Metadata URL" }, "spAcsUrl": { "message": "Assertion Consumer Service (ACS) URL" }, "spNameIdFormat": { "message": "Formát jména ID" }, "spOutboundSigningAlgorithm": { "message": "Outbound Signing Algorithm" }, "spSigningBehavior": { "message": "Signing Behavior" }, "spMinIncomingSigningAlgorithm": { "message": "Minimum Incoming Signing Algorithm" }, "spWantAssertionsSigned": { "message": "Expect signed assertions" }, "spValidateCertificates": { "message": "Validate certificates" }, "idpEntityId": { "message": "ID subjektu" }, "idpBindingType": { "message": "Binding Type" }, "idpSingleSignOnServiceUrl": { "message": "Single Sign On Service URL" }, "idpSingleLogoutServiceUrl": { "message": "Single Log Out Service URL" }, "idpX509PublicCert": { "message": "X509 Public Certificate" }, "idpOutboundSigningAlgorithm": { "message": "Outbound Signing Algorithm" }, "idpAllowUnsolicitedAuthnResponse": { "message": "Allow unsolicited authentication response" }, "idpAllowOutboundLogoutRequests": { "message": "Allow outbound logout requests" }, "idpSignAuthenticationRequests": { "message": "Sign authentication requests" }, "ssoSettingsSaved": { "message": "Single Sign-On configuration was saved." }, "sponsoredFamilies": { "message": "Free Bitwarden Families" }, "sponsoredFamiliesEligible": { "message": "You and your family are eligible for Free Bitwarden Families. Redeem with your personal email to keep your data secure even when you are not at work." }, "sponsoredFamiliesEligibleCard": { "message": "Redeem your Free Bitwarden for Families plan today to keep your data secure even when you are not at work." }, "sponsoredFamiliesInclude": { "message": "The Bitwarden for Families plan include" }, "sponsoredFamiliesPremiumAccess": { "message": "Premium access for up to 6 users" }, "sponsoredFamiliesSharedCollections": { "message": "Shared collections for Family secrets" }, "badToken": { "message": "The link is no longer valid. Please have the sponsor resend the offer." }, "reclaimedFreePlan": { "message": "Reclaimed free plan" }, "redeem": { "message": "Redeem" }, "sponsoredFamiliesSelectOffer": { "message": "Select the organization you would like sponsored" }, "familiesSponsoringOrgSelect": { "message": "Which Free Families offer would you like to redeem?" }, "sponsoredFamiliesEmail": { "message": "Enter your personal email to redeem Bitwarden Families" }, "sponsoredFamiliesLeaveCopy": { "message": "If you leave or are removed from the sponsoring organization, your Families plan will expire at the end of the billing period." }, "acceptBitwardenFamiliesHelp": { "message": "Accept offer for an existing organization or create a new Families organization." }, "setupSponsoredFamiliesLoginDesc": { "message": "You've been offered a free Bitwarden Families Plan Organization. To continue, you need to log in to the account that received the offer." }, "sponsoredFamiliesAcceptFailed": { "message": "Unable to accept offer. Please resend the offer email from your enterprise account and try again." }, "sponsoredFamiliesAcceptFailedShort": { "message": "Unable to accept offer. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must have at least one existing Families Organization." } } }, "sponsoredFamiliesOffer": { "message": "Accept Free Bitwarden Families" }, "sponsoredFamiliesOfferRedeemed": { "message": "Free Bitwarden Families offer successfully redeemed" }, "redeemed": { "message": "Redeemed" }, "redeemedAccount": { "message": "Redeemed Account" }, "revokeAccount": { "message": "Revoke account $NAME$", "placeholders": { "name": { "content": "$1", "example": "My Sponsorship Name" } } }, "resendEmailLabel": { "message": "Resend Sponsorship email to $NAME$ sponsorship", "placeholders": { "name": { "content": "$1", "example": "My Sponsorship Name" } } }, "freeFamiliesPlan": { "message": "Free Families Plan" }, "redeemNow": { "message": "Redeem Now" }, "recipient": { "message": "Recipient" }, "removeSponsorship": { "message": "Remove Sponsorship" }, "removeSponsorshipConfirmation": { "message": "After removing a sponsorship, you will be responsible for this subscription and related invoices. Are you sure you want to continue?" }, "sponsorshipCreated": { "message": "Sponsorship Created" }, "revoke": { "message": "Revoke" }, "emailSent": { "message": "Email Sent" }, "revokeSponsorshipConfirmation": { "message": "After removing this account, the Families organization owner will be responsible for this subscription and related invoices. Are you sure you want to continue?" }, "removeSponsorshipSuccess": { "message": "Sponsorship Removed" }, "ssoKeyConnectorUnavailable": { "message": "Unable to reach the Key Connector, try again later." }, "keyConnectorUrl": { "message": "Key Connector URL" }, "sendVerificationCode": { "message": "Send a verification code to your email" }, "sendCode": { "message": "Send Code" }, "codeSent": { "message": "Code Sent" }, "verificationCode": { "message": "Verification Code" }, "confirmIdentity": { "message": "Confirm your identity to continue." }, "verificationCodeRequired": { "message": "Verification code is required." }, "invalidVerificationCode": { "message": "Invalid verification code" }, "convertOrganizationEncryptionDesc": { "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "leaveOrganization": { "message": "Leave Organization" }, "removeMasterPassword": { "message": "Remove Master Password" }, "removedMasterPassword": { "message": "Master password removed." }, "allowSso": { "message": "Allow SSO authentication" }, "allowSsoDesc": { "message": "Once set up, your configuration will be saved and members will be able to authenticate using their Identity Provider credentials." }, "ssoPolicyHelpStart": { "message": "Enable the", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpLink": { "message": "SSO Authentication policy", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpEnd": { "message": "to require all members to log in with SSO.", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpKeyConnector": { "message": "SSO Authentication and Single Organization policies are required to set up Key Connector decryption." }, "memberDecryptionOption": { "message": "Member Decryption Options" }, "memberDecryptionPassDesc": { "message": "Once authenticated, members will decrypt vault data using their Master Passwords." }, "keyConnector": { "message": "Key Connector" }, "memberDecryptionKeyConnectorDesc": { "message": "Connect Login with SSO to your self-hosted decryption key server. Using this option, members won’t need to use their Master Passwords to decrypt vault data. Contact Bitwarden Support for set up assistance." }, "keyConnectorPolicyRestriction": { "message": "\"Login with SSO and Key Connector Decryption\" is enabled. This policy will only apply to Owners and Admins." }, "enabledSso": { "message": "Enabled SSO" }, "disabledSso": { "message": "Disabled SSO" }, "enabledKeyConnector": { "message": "Enabled Key Connector" }, "disabledKeyConnector": { "message": "Disabled Key Connector" }, "keyConnectorWarning": { "message": "Once members begin using Key Connector, your Organization cannot revert to Master Password decryption. Proceed only if you are comfortable deploying and managing a key server." }, "migratedKeyConnector": { "message": "Migrated to Key Connector" }, "paymentSponsored": { "message": "Please provide a payment method to associate with the organization. Don't worry, we won't charge you anything unless you select additional features or your sponsorship expires. " }, "orgCreatedSponsorshipInvalid": { "message": "The sponsorship offer has expired. You may delete the organization you created to avoid a charge at the end of your 7 day trial. Otherwise you may close this prompt to keep the organization and assume billing responsibility." }, "newFamiliesOrganization": { "message": "New Families Organization" }, "acceptOffer": { "message": "Accept Offer" }, "sponsoringOrg": { "message": "Sponsoring Organization" }, "keyConnectorTest": { "message": "Test" }, "keyConnectorTestSuccess": { "message": "Success! Key Connector reached." }, "keyConnectorTestFail": { "message": "Cannot reach Key Connector. Check URL." }, "sponsorshipTokenHasExpired": { "message": "The sponsorship offer has expired." }, "freeWithSponsorship": { "message": "FREE with sponsorship" }, "formErrorSummaryPlural": { "message": "$COUNT$ fields above need your attention.", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "formErrorSummarySingle": { "message": "1 field above needs your attention." }, "fieldRequiredError": { "message": "$FIELDNAME$ is required.", "placeholders": { "fieldname": { "content": "$1", "example": "Full name" } } }, "required": { "message": "required" }, "idpSingleSignOnServiceUrlRequired": { "message": "Required if Entity ID is not a URL." }, "openIdOptionalCustomizations": { "message": "Optional Customizations" }, "openIdAuthorityRequired": { "message": "Required if Authority is not valid." }, "separateMultipleWithComma": { "message": "Separate multiple with a comma." }, "sessionTimeout": { "message": "Your session has timed out. Please go back and try logging in again." }, "exportingPersonalVaultTitle": { "message": "Exporting Personal Vault" }, "exportingOrganizationVaultTitle": { "message": "Exporting Organization Vault" }, "exportingPersonalVaultDescription": { "message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.", "placeholders": { "email": { "content": "$1", "example": "name@example.com" } } }, "exportingOrganizationVaultDescription": { "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Personal vault items and items from other organizations will not be included.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "backToReports": { "message": "Back to Reports" }, "generator": { "message": "Generator" }, "whatWouldYouLikeToGenerate": { "message": "What would you like to generate?" }, "passwordType": { "message": "Password Type" }, "regenerateUsername": { "message": "Regenerate Username" }, "generateUsername": { "message": "Generate Username" }, "usernameType": { "message": "Username Type" }, "plusAddressedEmail": { "message": "Plus Addressed Email", "description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com" }, "plusAddressedEmailDesc": { "message": "Use your email provider's sub-addressing capabilities." }, "catchallEmail": { "message": "Catch-all Email" }, "catchallEmailDesc": { "message": "Use your domain's configured catch-all inbox." }, "random": { "message": "Random" }, "randomWord": { "message": "Random Word" }, "service": { "message": "Service" } }
bitwarden/web/src/locales/cs/messages.json/0
{ "file_path": "bitwarden/web/src/locales/cs/messages.json", "repo_id": "bitwarden", "token_count": 66572 }
142
{ "pageTitle": { "message": "$APP_NAME$ webes széf", "description": "The title of the website in the browser window.", "placeholders": { "app_name": { "content": "$1", "example": "Bitwarden" } } }, "whatTypeOfItem": { "message": "Milyen típusú elem ez?" }, "name": { "message": "Név" }, "uri": { "message": "URI" }, "uriPosition": { "message": "URI $POSITION$", "description": "A listing of URIs. Ex: URI 1, URI 2, URI 3, etc.", "placeholders": { "position": { "content": "$1", "example": "2" } } }, "newUri": { "message": "Új URI" }, "username": { "message": "Felhasználónév" }, "password": { "message": "Jelszó" }, "newPassword": { "message": "Új jelszó" }, "passphrase": { "message": "Kulcskifejezés" }, "notes": { "message": "Jegyzetek" }, "customFields": { "message": "Egyedi mezők" }, "cardholderName": { "message": "Kártyatulajdonos neve" }, "number": { "message": "Szám" }, "brand": { "message": "Márka" }, "expiration": { "message": "Lejárat" }, "securityCode": { "message": "Biztonsági kód (CVV)" }, "identityName": { "message": "Személyazonosság megnevezés" }, "company": { "message": "Cég" }, "ssn": { "message": "Társadalombiztosítási szám" }, "passportNumber": { "message": "Útlevélszám" }, "licenseNumber": { "message": "Vezetői engedély száma" }, "email": { "message": "Email cím" }, "phone": { "message": "Telefonszám" }, "january": { "message": "Január" }, "february": { "message": "Február" }, "march": { "message": "Március" }, "april": { "message": "Április" }, "may": { "message": "Május" }, "june": { "message": "Június" }, "july": { "message": "Július" }, "august": { "message": "Augusztus" }, "september": { "message": "Szeptember" }, "october": { "message": "Október" }, "november": { "message": "November" }, "december": { "message": "December" }, "title": { "message": "Címzés" }, "mr": { "message": "Úr" }, "mrs": { "message": "Asszony" }, "ms": { "message": "Kisasszony" }, "dr": { "message": "Dr." }, "expirationMonth": { "message": "Lejárati hónap" }, "expirationYear": { "message": "Lejárati év" }, "authenticatorKeyTotp": { "message": "Hitelesítő kulcs (egyszeri idő alapú)" }, "folder": { "message": "Mappa" }, "newCustomField": { "message": "Új egyedi mező" }, "value": { "message": "Érték" }, "dragToSort": { "message": "Húzás a rendezéshez" }, "cfTypeText": { "message": "Szöveg" }, "cfTypeHidden": { "message": "Rejtett" }, "cfTypeBoolean": { "message": "Logikai" }, "cfTypeLinked": { "message": "Csatolt", "description": "This describes a field that is 'linked' (related) to another field." }, "remove": { "message": "Eltávolítás" }, "unassigned": { "message": "Nincs hozzárendelve" }, "noneFolder": { "message": "Nincs mappa", "description": "This is the folder for uncategorized items" }, "addFolder": { "message": "Mappa hozzáadása" }, "editFolder": { "message": "Mappa szerkesztése" }, "baseDomain": { "message": "Alap domain", "description": "Domain name. Ex. website.com" }, "domainName": { "message": "Domain Name", "description": "Domain name. Ex. website.com" }, "host": { "message": "Kiszolgáló", "description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'." }, "exact": { "message": "Pontos" }, "startsWith": { "message": "Ezzel kezdődik:" }, "regEx": { "message": "Reguláris kifejezés", "description": "A programming term, also known as 'RegEx'." }, "matchDetection": { "message": "Találat érzékelés", "description": "URI match detection for auto-fill." }, "defaultMatchDetection": { "message": "Alapértelmezett találat érzékelés", "description": "Default URI match detection for auto-fill." }, "never": { "message": "Soha" }, "toggleVisibility": { "message": "Láthatóság váltása" }, "toggleCollapse": { "message": "Összezárás váltás", "description": "Toggling an expand/collapse state." }, "generatePassword": { "message": "Jelszó generálása" }, "checkPassword": { "message": "A jelszóvédelmi állapot ellenőrzése." }, "passwordExposed": { "message": "Ez a jelszó már $VALUE$ alkalommal volt kitéve az adatszivárgásnak. Célszerű megváltoztatni.", "placeholders": { "value": { "content": "$1", "example": "2" } } }, "passwordSafe": { "message": "Ez a jelszó nem érintett egyetlen ismert adatszivárgásban sem. Biztonságos a használata." }, "save": { "message": "Mentés" }, "cancel": { "message": "Mégsem" }, "canceled": { "message": "Megszakítva" }, "close": { "message": "Bezárás" }, "delete": { "message": "Törlés" }, "favorite": { "message": "Kedvenc" }, "unfavorite": { "message": "Nem kedvenc" }, "edit": { "message": "Szerkesztés" }, "searchCollection": { "message": "Gyűjtemény keresése" }, "searchFolder": { "message": "Mappa keresése" }, "searchFavorites": { "message": "Kedvencek keresése" }, "searchType": { "message": "Típus keresése", "description": "Search item type" }, "searchVault": { "message": "Keresés a széfben" }, "allItems": { "message": "Összes elem" }, "favorites": { "message": "Kedvencek" }, "types": { "message": "Típusok" }, "typeLogin": { "message": "Bejelentkezés" }, "typeCard": { "message": "Kártya" }, "typeIdentity": { "message": "Személyazonosság" }, "typeSecureNote": { "message": "Biztonságos jegyzet" }, "typeLoginPlural": { "message": "Bejelentkezések" }, "typeCardPlural": { "message": "Kártyák" }, "typeIdentityPlural": { "message": "Azonosságok" }, "typeSecureNotePlural": { "message": "Biztonságos jegyzetek" }, "folders": { "message": "Mappák" }, "collections": { "message": "Gyűjtemények" }, "firstName": { "message": "Személynév" }, "middleName": { "message": "Középső név" }, "lastName": { "message": "Családnév" }, "fullName": { "message": "Teljes név" }, "address1": { "message": "Cím 1" }, "address2": { "message": "Cím 2" }, "address3": { "message": "Cím 3" }, "cityTown": { "message": "Település" }, "stateProvince": { "message": "Állam/Megye" }, "zipPostalCode": { "message": "Irányítószám" }, "country": { "message": "Ország" }, "shared": { "message": "Megosztott" }, "attachments": { "message": "Mellékletek" }, "select": { "message": "Kijelölés" }, "addItem": { "message": "Elem hozzáadása" }, "editItem": { "message": "Elem szerkesztése" }, "viewItem": { "message": "Elem megtekintése" }, "ex": { "message": "Példa:", "description": "Short abbreviation for 'example'." }, "other": { "message": "Egyéb" }, "share": { "message": "Megosztás" }, "moveToOrganization": { "message": "Áthelyezés szervezetbe" }, "valueCopied": { "message": "$VALUE$ másolásra került.", "description": "Value has been copied to the clipboard.", "placeholders": { "value": { "content": "$1", "example": "Password" } } }, "copyValue": { "message": "Érték másolása", "description": "Copy value to clipboard" }, "copyPassword": { "message": "Jelszó másolása", "description": "Copy password to clipboard" }, "copyUsername": { "message": "Felhasználónév másolása", "description": "Copy username to clipboard" }, "copyNumber": { "message": "Szám másolása", "description": "Copy credit card number" }, "copySecurityCode": { "message": "Biztonsági kód másolása", "description": "Copy credit card security code (CVV)" }, "copyUri": { "message": "URI másolása", "description": "Copy URI to clipboard" }, "myVault": { "message": "Saját széf" }, "vault": { "message": "Széf" }, "moveSelectedToOrg": { "message": "A kiválasztott áthelyezése szervezetbe" }, "deleteSelected": { "message": "Kijelöltek törlése" }, "moveSelected": { "message": "Kijelöltek áthelyezése" }, "selectAll": { "message": "Összes kijelölése" }, "unselectAll": { "message": "Összes kijelölés megszüntetése" }, "launch": { "message": "Indítás" }, "newAttachment": { "message": "Új melléklet hozzáadása" }, "deletedAttachment": { "message": "A melléklet törlésre került." }, "deleteAttachmentConfirmation": { "message": "Biztos törlésre kerüljön ez a melléklet?" }, "attachmentSaved": { "message": "A melléklet mentésre került." }, "file": { "message": "Fájl" }, "selectFile": { "message": "Válasszunk egy fájlt." }, "maxFileSize": { "message": "A maximális fájl méret 500 MB." }, "updateKey": { "message": "Ez a funkció nem használható a titkosítási kulcs frissítéséig." }, "addedItem": { "message": "Az elem hozzáadásra került." }, "editedItem": { "message": "Az elem szerkesztésre került." }, "movedItemToOrg": { "message": "$ITEMNAME$ átkerült $ORGNAME$ szervezethez", "placeholders": { "itemname": { "content": "$1", "example": "Secret Item" }, "orgname": { "content": "$2", "example": "Company Name" } } }, "movedItemsToOrg": { "message": "A kiválasztott elemek átkerültek $ORGNAME$ szervezethez", "placeholders": { "orgname": { "content": "$1", "example": "Company Name" } } }, "deleteItem": { "message": "Elem törlése" }, "deleteFolder": { "message": "Mappa törlése" }, "deleteAttachment": { "message": "Melléklet törlése" }, "deleteItemConfirmation": { "message": "Biztosan törlésre kerüljön ezt az elem?" }, "deletedItem": { "message": "Az elem törlésre került." }, "deletedItems": { "message": "Törölt elemek" }, "movedItems": { "message": "Áthelyezett elemek" }, "overwritePasswordConfirmation": { "message": "Biztosan felülírásra kerüljön a jelenlegi jelszó?" }, "editedFolder": { "message": "A mappa szerkesztésre került." }, "addedFolder": { "message": "A mappa hozzáadásra került." }, "deleteFolderConfirmation": { "message": "Biztosan törlésre kerüljön ez a mappa?" }, "deletedFolder": { "message": "A mappa törlésre került." }, "loggedOut": { "message": "Megtörtént a kijelentkezés." }, "loginExpired": { "message": "A bejelentkezési munkamenet lejárt." }, "logOutConfirmation": { "message": "Biztosan szeretnénk kijelentkezni?" }, "logOut": { "message": "Kijelentkezés" }, "ok": { "message": "Ok" }, "yes": { "message": "Igen" }, "no": { "message": "Nem" }, "loginOrCreateNewAccount": { "message": "Bejelentkezés vagy új fiók létrehozása a biztonsági széf eléréséhez." }, "createAccount": { "message": "Fiók létrehozása" }, "logIn": { "message": "Bejelentkezés" }, "submit": { "message": "Elküldés" }, "emailAddressDesc": { "message": "Az email címmel lehet bejelentkezni." }, "yourName": { "message": "Név" }, "yourNameDesc": { "message": "Mi legyen a megszólítás?" }, "masterPass": { "message": "Mesterjelszó" }, "masterPassDesc": { "message": "A mesterjelszó a jelszó a széf eléréséhez. Nagyon fontos a mesterjelszó ismerete. Nincs mód a jelszó visszaállítására." }, "masterPassHintDesc": { "message": "A mesterjelszó emlékeztető segíthet emlékezni a jelszóra elfelejtése esetén." }, "reTypeMasterPass": { "message": "Mesterjelszó ismételt beírása" }, "masterPassHint": { "message": "Mesterjelszó emlékeztető (nem kötelező)" }, "masterPassHintLabel": { "message": "Mesterjelszó emlékeztető" }, "settings": { "message": "Beállítások" }, "passwordHint": { "message": "Jelszó emlékeztető" }, "enterEmailToGetHint": { "message": "A fiók email címének megadása a mesterjelszó emlékeztető fogadásához." }, "getMasterPasswordHint": { "message": "Mesterjelszó emlékeztető kérése" }, "emailRequired": { "message": "Az email cím megadása kötelező." }, "invalidEmail": { "message": "Az email cím érvénytelen." }, "masterPassRequired": { "message": "A mesterjelszó megadása kötelező." }, "masterPassLength": { "message": "A mesterjelszó legyen legalább 8 karakter hosszú." }, "masterPassDoesntMatch": { "message": "A megadott két jelszó nem egyezik meg." }, "newAccountCreated": { "message": "A fiók létrehozásra került. Most már be lehet jelentkezni." }, "masterPassSent": { "message": "A mesterjelszó emlékeztetőt tartalmazó email elküldésre került." }, "unexpectedError": { "message": "Váratlan hiba történt." }, "emailAddress": { "message": "Email cím" }, "yourVaultIsLocked": { "message": "A széf zárolásra került. A folytatáshoz meg kell adni a mesterjelszót." }, "unlock": { "message": "Feloldás" }, "loggedInAsEmailOn": { "message": "Bejelentkezve mint $EMAIL$ $HOSTNAME$ webhelyen.", "placeholders": { "email": { "content": "$1", "example": "name@example.com" }, "hostname": { "content": "$2", "example": "bitwarden.com" } } }, "invalidMasterPassword": { "message": "A mesterjelszó érvénytelen." }, "lockNow": { "message": "Zárolás most" }, "noItemsInList": { "message": "Nincsenek megjeleníthető elemek." }, "noCollectionsInList": { "message": "Nincsenek megjeleníthető gyűjtemények." }, "noGroupsInList": { "message": "Nincsenek megjeleníthető csoportok." }, "noUsersInList": { "message": "Nincsenek megjeleníthető felhasználók." }, "noEventsInList": { "message": "Nincsenek megjeleníthető események." }, "newOrganization": { "message": "Új szervezet" }, "noOrganizationsList": { "message": "Még nem tartozunk egyik szervezethez sem. A szervezetek lehetővé teszik az elemek megosztását más felhasználókkal." }, "versionNumber": { "message": "Verzió: $VERSION_NUMBER$", "placeholders": { "version_number": { "content": "$1", "example": "1.2.3" } } }, "enterVerificationCodeApp": { "message": "A 6 számjegyű ellenőrző kód megadása a hitelesítő alkalmazásból." }, "enterVerificationCodeEmail": { "message": "$EMAIL$ email címre elküldött 6 számjegyű ellenőrző kód megadása.", "placeholders": { "email": { "content": "$1", "example": "example@gmail.com" } } }, "verificationCodeEmailSent": { "message": "Az ellenőrző kód elküldésre került $EMAIL$ email címre.", "placeholders": { "email": { "content": "$1", "example": "example@gmail.com" } } }, "rememberMe": { "message": "Adatok megjegyzése" }, "sendVerificationCodeEmailAgain": { "message": "Megerősítő kód ismételt elküldése emailben" }, "useAnotherTwoStepMethod": { "message": "Másik kétlépcsős bejelentkezés használata" }, "insertYubiKey": { "message": "A YubiKey beillesztése a számítógép USB portjába és a rajta levő gomb megnyomása." }, "insertU2f": { "message": "A biztonsági kulcs beillesztése a számítógép USB portjába. Ha van rajta gomb, nyomjuk meg." }, "loginUnavailable": { "message": "A bejelentkezés nem érhető el." }, "noTwoStepProviders": { "message": "Ezen a fiókon kétlépcsős bejelentkezés van engedélyezve, de ez az eszköz nem támogatja egyik beállított kétlépcsős szolgáltatót sem." }, "noTwoStepProviders2": { "message": "Támogatott böngészőt (mint például a Chrome) kell használni és/vagy a böngészők között jobb támogatást nyújtó szolgáltatót kell megadni (mint például egy hitelesítő alkalmazás)." }, "twoStepOptions": { "message": "Kétlépcsős bejelentkezés opciók" }, "recoveryCodeDesc": { "message": "Elveszett a hozzáférés az összes kétlépcsős szolgáltatóhoz? A visszaállítókód használatával letilthatók fiókból a kétlépcsős szolgáltatók." }, "recoveryCodeTitle": { "message": "Helyreállító kód" }, "authenticatorAppTitle": { "message": "Hitelesítő alkalmazás" }, "authenticatorAppDesc": { "message": "Hitelesítő alkalmazás használata (mint például az Authy vagy a Google Authenticator) idő alapú ellenőrzőkód generálásához.", "description": "'Authy' and 'Google Authenticator' are product names and should not be translated." }, "yubiKeyTitle": { "message": "YubiKey OTP egyszeri időalapú jelszó biztonsági kulcs" }, "yubiKeyDesc": { "message": "YubiKey használata a fiók eléréséhez. Működik a YubiKey 4, 4 Nano, 4C, és NEO eszközökkel." }, "duoDesc": { "message": "Ellenőrzés Duo Security-val, a Duo Mobile alkalmazás, SMS, telefonhívás vagy U2F biztonsági kulcs használatával.", "description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated." }, "duoOrganizationDesc": { "message": "Ellenőrzés szervezeti Duo Security segítségével a Duo Mobile alkalmazás, SMS, telefonhívás vagy U2F biztonsági kulcs használatával.", "description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated." }, "u2fDesc": { "message": "Bármilyen FIDO U2F által engedélyezett biztonsági kulcs használata a fiók eléréséhez." }, "u2fTitle": { "message": "FIDO U2F Biztonsági kulcs" }, "webAuthnTitle": { "message": "FIDO2 WebAuthn" }, "webAuthnDesc": { "message": "Használjunk bármilyen WebAuthn engedélyezett biztonsági kulcsot a saját fiók eléréséhez." }, "webAuthnMigrated": { "message": "(FIDO-ból áthelyezve)" }, "emailTitle": { "message": "Email cím" }, "emailDesc": { "message": "Az ellenőrző kódok emailben kerülnek elküldésre." }, "continue": { "message": "Folytatás" }, "organization": { "message": "Szervezet" }, "organizations": { "message": "Szervezetek" }, "moveToOrgDesc": { "message": "Válasszunk egy szervezetet, ahová áthelyezni szeretnénk ezt az elemet. A szervezetbe áthelyezés átruházza az elem tulajdonjogát az adott szervezetre. Az áthelyezés után többé nem leszünk az elem közvetlen tulajdonosa." }, "moveManyToOrgDesc": { "message": "Válasszunk egy szervezetet, ahová áthelyezni szeretnénk ezeket az elemeket. A szervezetbe áthelyezés átruházza az elemek tulajdonjogát az adott szervezetre. Az áthelyezés után többé nem leszünk az elemek közvetlen tulajdonosa." }, "collectionsDesc": { "message": "A megosztásra kerülő elem gyűjteményének szerkesztése. Csak az ezeket a gyűjteményeket elérő szervezeti felhasználók látják ezt az elemet." }, "deleteSelectedItemsDesc": { "message": "$COUNT$ elem törlésre lett kijelölve. Biztosan törölni szeretnénk az összes ilyen elemet?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "moveSelectedItemsDesc": { "message": "Célmappa kiválasztás $COUNT$ kijelölt elem áthelyezéséhez.", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "moveSelectedItemsCountDesc": { "message": "$COUNT$ elem került kiválasztásra. $MOVEABLE_COUNT$ elem áthelyezhető szervezethezi, $NONMOVEABLE_COUNT$ nem.", "placeholders": { "count": { "content": "$1", "example": "10" }, "moveable_count": { "content": "$2", "example": "8" }, "nonmoveable_count": { "content": "$3", "example": "2" } } }, "verificationCodeTotp": { "message": "Ellenőrző kód (egyszeri időalapú)" }, "copyVerificationCode": { "message": "Ellenőrző kód másolása" }, "warning": { "message": "Figyelmeztetés" }, "confirmVaultExport": { "message": "Széf export megerősítése" }, "exportWarningDesc": { "message": "Ez az exportálás titkosítás nélkül tartalmazza a széfadatokat.Nem célszerű az exportált fájlt nem biztonságos csatornákon tárolni és továbbküldeni (például emailben). A felhasználás után erősen ajánlott a törlés." }, "encExportKeyWarningDesc": { "message": "Ez az exportálás titkosítja az adatokat a fiók titkosítási kulcsával. Ha valaha a diók forgatási kulcsa más lesz, akkor újra exportálni kell, mert nem lehet visszafejteni ezt az exportálási fájlt." }, "encExportAccountWarningDesc": { "message": "A fiók titkosítási kulcsai minden Bitwarden felhasználói fiókhoz egyediek, ezért nem importálhatunk titkosított exportálást egy másik fiókba." }, "export": { "message": "Exportálás" }, "exportVault": { "message": "Széf exportálása" }, "fileFormat": { "message": "Fájlformátum" }, "exportSuccess": { "message": "A széfadatok exportálásra kerültek." }, "passwordGenerator": { "message": "Jelszó generátor" }, "minComplexityScore": { "message": "Minimális összetettségi pontszám" }, "minNumbers": { "message": "Minimális szám" }, "minSpecial": { "message": "Minimális speciális", "description": "Minimum Special Characters" }, "ambiguous": { "message": "Félreérthető karakterek mellőzése" }, "regeneratePassword": { "message": "Jelszó újragenerálása" }, "length": { "message": "Hossz" }, "numWords": { "message": "Szavak száma" }, "wordSeparator": { "message": "Szóelválasztó" }, "capitalize": { "message": "Nagy kezdőbetű", "description": "Make the first letter of a work uppercase." }, "includeNumber": { "message": "Szám is" }, "passwordHistory": { "message": "Jelszó előzmények" }, "noPasswordsInList": { "message": "Nincsenek listázható jelszavak." }, "clear": { "message": "Kiürítés", "description": "To clear something out. example: To clear browser history." }, "accountUpdated": { "message": "A fiók frissítésre került." }, "changeEmail": { "message": "Email cím módosítása" }, "changeEmailTwoFactorWarning": { "message": "A folytatás megváltoztatja fiók email címét. Nem változtatja meg a kétlépcsős hitelesítéshez használt email címet. Ez az email cím a kétlépcsős bejelentkezés beállításaiban módosítható." }, "newEmail": { "message": "Új email cím" }, "code": { "message": "Kód" }, "changeEmailDesc": { "message": "Az ellenőrző kód elküldésre került $EMAIL$ email címre. Ellenőrizzük az kódot tartalmazó emailt és adjuk meg azt itt az email cím megváltoztatásához.", "placeholders": { "email": { "content": "$1", "example": "john.smith@example.com" } } }, "loggedOutWarning": { "message": "A folytatásban a felhasználó kiléptetésre kerül a jelenlegi munkamenetből, szükséges az ismételt bejelentkezés. Más eszközökön aktív munkamenetek akár egy órán keresztül is aktívak maradhatnak." }, "emailChanged": { "message": "Az email cím megváltozott." }, "logBackIn": { "message": "Ismételten be kell jelentkezni." }, "logBackInOthersToo": { "message": "Ismételten be kell jelentkezni. Ha másik Bitwarden alkalmazásokat használunk, ott is jelentkezzünk ki és ismételten be." }, "changeMasterPassword": { "message": "Mesterjelszó módosítása" }, "masterPasswordChanged": { "message": "A mesterjelszó megváltozott." }, "currentMasterPass": { "message": "Jelenlegi mesterjelszó" }, "newMasterPass": { "message": "Új mesterjelszó" }, "confirmNewMasterPass": { "message": "Új jelszó megerősítése" }, "encKeySettings": { "message": "Kulcs beállítások titkosítása" }, "kdfAlgorithm": { "message": "KDF algoritmus" }, "kdfIterations": { "message": "KDF iterációk" }, "kdfIterationsDesc": { "message": "A magasabb KDF iterációk segíthetnek a megvédeni a mesterjelszót a \"brute force\" jellegű támadásoktól. Javaslunk $VALUE$, vagy magasabb értéket.", "placeholders": { "value": { "content": "$1", "example": "100,000" } } }, "kdfIterationsWarning": { "message": "A túl magas KDF iterációk lelassíthatják a lassabb CPU-val rendelkező eszközökön a bejelentkezést a Bitwardenbe (és a lezárást is). Javasoljuk az érték növelését $INCREMENT$ lépéssel és teszteljük azt az összes eszközön.", "placeholders": { "increment": { "content": "$1", "example": "50,000" } } }, "changeKdf": { "message": "KDF megváltoztatása" }, "encKeySettingsChanged": { "message": "A kulcs beállítás titkosítása megváltozott." }, "dangerZone": { "message": "Veszélyes terület" }, "dangerZoneDesc": { "message": "Óvatosan! Ezeket a műveleteket nem lehet visszaállítani." }, "deauthorizeSessions": { "message": "Munkamenetek hitelesítésének eldobása" }, "deauthorizeSessionsDesc": { "message": "Aggódunk a egy másik eszközön történő bejelentkezés miatt? Az alábbiakban ismertetett módon dobjuk el az összes hitelesítést az összes számítógépen és eszközön. Ez a biztonsági lépés akkor ajánlott, ha korábban nyilvános helyen levő számítógépet használtunk vagy véletlenül mentettünk jelszót egy olyan eszközön, amely nem a sajátunk. Ez a lépés törli az összes korábban megjegyzett kétlépéses bejelentkezési munkamenetet." }, "deauthorizeSessionsWarning": { "message": "A folytatásban s felhasználó kiléptetésre kerül az aktuális munkamenetből, szükséges az ismételt bejelentkezés. Ismételten megjelenik a kétlépcsős bejelentkezés, ha az engedélyezett. Más eszközök aktív munkamenetei akár egy óráig is aktívak maradhatnak." }, "sessionsDeauthorized": { "message": "Az összes munkamenet hitelesítése eldobásra került." }, "purgeVault": { "message": "Széf kitakarítása" }, "purgedOrganizationVault": { "message": "A szervezeti széf kitakarításra került." }, "vaultAccessedByProvider": { "message": "A tárolóhoz a szolgáltató fér hozzá." }, "purgeVaultDesc": { "message": "Az alábbiak szerint törölhetjük a széfben található összes elemet és mappát. Nem kerülnek törlésre azok az elemek,, amelyek egy megosztott szervezethez tartoznak." }, "purgeOrgVaultDesc": { "message": "Folytatás lentebb a szervezeti széf összes elemének törléséhez." }, "purgeVaultWarning": { "message": "A széf kitakarítása végleges. A művelet nem vonható vissza." }, "vaultPurged": { "message": "A széf kitakarításra került." }, "deleteAccount": { "message": "Fiók törlése" }, "deleteAccountDesc": { "message": "A továbbiakban a fiók és összes társított adata törlésre kerül.." }, "deleteAccountWarning": { "message": "A fiók végleges törlése következik. A művelet nem vonható vissza." }, "accountDeleted": { "message": "A fiók törlésre került." }, "accountDeletedDesc": { "message": "A fiók bezárásra került és minden társított adat törölve lett." }, "myAccount": { "message": "Saját fiók" }, "tools": { "message": "Eszközök" }, "importData": { "message": "Adatok importálása" }, "importError": { "message": "Importálási hiba" }, "importErrorDesc": { "message": "Hiba történt az importálni próbált adatokkal. Javítsuk a felsorolt hibákat a forrásfájlban és próbáljuk újra." }, "importSuccess": { "message": "Az adatok sikeresen importálásra kerültek a széfbe." }, "importWarning": { "message": "Adatokat importálunk $ORGANIZATION$ mappába. Az adatok megoszthatók a szervezet tagjaival. Folytatjuk?", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "importFormatError": { "message": "Az adatok formázása nem megfelelő. Ellenőrizzük az import fájlt és próbáljuk újra." }, "importNothingError": { "message": "Semmi nem lett importálva." }, "importEncKeyError": { "message": "Hiba történt az exportált fájl visszafejtése során. A titkosítási kulcs nem egyezik meg az adatok exportálásához használt titkosítási kulccsal." }, "selectFormat": { "message": "Válasszuk ki az import fájl formátumát." }, "selectImportFile": { "message": "Válasszuk ki az import fájlt" }, "orCopyPasteFileContents": { "message": "vagy vágólapon vigyük be fájl tartalmat" }, "instructionsFor": { "message": "$NAME$ utasítások", "description": "The title for the import tool instructions.", "placeholders": { "name": { "content": "$1", "example": "LastPass (csv)" } } }, "options": { "message": "Opciók" }, "optionsDesc": { "message": "A webes széf működésének testreszabása." }, "optionsUpdated": { "message": "Az opciók frissítésre kerültek." }, "language": { "message": "Nyelv" }, "languageDesc": { "message": "A webes széf nyelvének megváltoztatása." }, "disableIcons": { "message": "Webhely ikonok letiltása" }, "disableIconsDesc": { "message": "A webhelyek ikonjai felismerhető ikonként jelennek meg a széf összes eleme mellett." }, "enableGravatars": { "message": "Gravatarok engedélyezése", "description": "'Gravatar' is the name of a service. See www.gravatar.com" }, "enableGravatarsDesc": { "message": "Avatar képek használata a gravatar.com webhelyről." }, "enableFullWidth": { "message": "Teljes szélességű elrendezés engedélyezése", "description": "Allows scaling the web vault UI's width" }, "enableFullWidthDesc": { "message": "A webes széf teljes szélességűre tágításának engedélyezése a böngészőablakban." }, "default": { "message": "Alapértelmezett" }, "domainRules": { "message": "Domain szabályok" }, "domainRulesDesc": { "message": "Ha ugyanazokat a bejelentkezési adatokat használjuk több különböző webhely domainen, ezeket \"azonos\"-ként jelölhetjük meg. A \"Globális\" domainek a Bitwarden által már létrehozottak." }, "globalEqDomains": { "message": "Globális azonos domainek" }, "customEqDomains": { "message": "Egyedi azonos domainek" }, "exclude": { "message": "Kizárás" }, "include": { "message": "Bevonás" }, "customize": { "message": "Testreszabás" }, "newCustomDomain": { "message": "Új egyedi domain" }, "newCustomDomainDesc": { "message": "A domainek listája vesszővel elválasztva. Csak \"alap\" domainek engedélyezettek. Ne adjunk meg aldomaineket. Például \"google.com\" legyen \"www.google.com\" helyett. Megadható \"androidapp://csomag.nev forma android alkalmazás társításához ás webhely domainekhez." }, "customDomainX": { "message": "Egyedi domain $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "domainsUpdated": { "message": "A domainek frissítésre kerültek." }, "twoStepLogin": { "message": "Kétlépcsős bejelentkezés" }, "twoStepLoginDesc": { "message": "A fiók biztosítása kiegészítő lépéssel bejelentkezéskor." }, "twoStepLoginOrganizationDesc": { "message": "Kétlépéses bejelentkezés szükséges a szervezet felhasználói számára a szolgáltatók szervezeti szintű konfigurálásával." }, "twoStepLoginRecoveryWarning": { "message": "A kétlépcsős bejelentkezés engedélyezése véglegesen kizárhatja a felhasználót a Bitwarden fiókból. A helyreállítási kód lehetővé teszi a fiókjához való hozzáférést abban az esetben, ha már nem tudjuk használni a szokásos kétlépcsős bejelentkezési szolgáltatást (pl. készülék elvesztése). A Bitwarden támogatás nem tud segíteni abban az esetben, ha elveszítjük a hozzáférést a fiókhoz. Célszerű leírni vagy kinyomtatni a helyreállítási kódot és azt biztonságos helyen tartani." }, "viewRecoveryCode": { "message": "Helyreállító kód megtekintése" }, "providers": { "message": "Szolgáltatók", "description": "Two-step login providers such as YubiKey, Duo, Authenticator apps, Email, etc." }, "enable": { "message": "Engedélyezés" }, "enabled": { "message": "Engedélyezve" }, "premium": { "message": "Prémium", "description": "Premium Membership" }, "premiumMembership": { "message": "Prémium tagság" }, "premiumRequired": { "message": "Prémium funkció szükséges" }, "premiumRequiredDesc": { "message": "A funkció használatához prémium tagság szükséges." }, "youHavePremiumAccess": { "message": "Már rendelkezünk prémium tagsággal." }, "alreadyPremiumFromOrg": { "message": "Már rendelkezünk a prémium funkciókkal, mert egy szervezet tagjai vagyunk." }, "manage": { "message": "Kezelés" }, "disable": { "message": "Letiltás" }, "twoStepLoginProviderEnabled": { "message": "Ez a kétlépéses bejelentkezés szolgáltató már engedélyezett a fiókon." }, "twoStepLoginAuthDesc": { "message": "A kétlépéses bejelentkezési beállítások módosításához meg kell adni a mesterjelszót." }, "twoStepAuthenticatorDesc": { "message": "Kövesük a következő lépéseket a kétlépéses bejelentkezés beállításához egy hitelesítő alkalmazással:" }, "twoStepAuthenticatorDownloadApp": { "message": "Kétlépéses hitelesítő alkalmazás letöltése" }, "twoStepAuthenticatorNeedApp": { "message": "Szükség van egy kétlépéses hitelesítő alkalmazásra? Töltsük le a következők egyikét." }, "iosDevices": { "message": "iOS eszközök" }, "androidDevices": { "message": "Android eszközök" }, "windowsDevices": { "message": "Windows eszközök" }, "twoStepAuthenticatorAppsRecommended": { "message": "Ezek az alkalmazások ajánlottak, de más hitelesítő alkalmazások is működnek." }, "twoStepAuthenticatorScanCode": { "message": "Ezt a kódot kell beolvasni a hitelesítő alkalmazással." }, "key": { "message": "Kulcs" }, "twoStepAuthenticatorEnterCode": { "message": "Adjuk meg az alkalmazásból kapott 6 számjegyű ellenőrző kódot." }, "twoStepAuthenticatorReaddDesc": { "message": "Ha ezt egy másik eszközhöz is hozzá kell adni, lentebb található a hitelesítő alkalmazás QR kódja (vagy kulcsa)." }, "twoStepDisableDesc": { "message": "Biztosan szeretnénk kapcsolni ezt a kétlépcsős bejelentkezés szolgáltatót?" }, "twoStepDisabled": { "message": "A kétlépcsős azonosító szolgáltatás kikapcsolásra került." }, "twoFactorYubikeyAdd": { "message": "Új YubiKey hozzáadása a fiókhoz." }, "twoFactorYubikeyPlugIn": { "message": "Helyezzük be a YubiKey eszközt a számítógép USB portjába." }, "twoFactorYubikeySelectKey": { "message": "Válasszuk ki az első üres YubiKey beviteli mezőt lentebb." }, "twoFactorYubikeyTouchButton": { "message": "Érintsük meg a YubiKey gombját." }, "twoFactorYubikeySaveForm": { "message": "Az űrlap mentése." }, "twoFactorYubikeyWarning": { "message": "Platform korlátozások miatt nem lehetséges minden Bitwarden alkalmazásban YubiKey eszközt használni. Engedélyezzünk egy másik kétlépcsős bejelentkezés szolgáltatót, hogy hozzáférhessünk a fiókhoz akkor is, ha a YubiKey nem használható. Támogatott platformok:" }, "twoFactorYubikeySupportUsb": { "message": "Webes széf, asztali alkalmazás, CLI, és minden egyéb böngésző bővítmény olyan USB porttal rendelkező eszközön, amely elfogadja a YubiKey eszközt." }, "twoFactorYubikeySupportMobile": { "message": "Az NFC szolgáltatással vagy adatporttal ellátott eszközök mobil alkalmazásai elfogadhatják a YubiKey eszközt." }, "yubikeyX": { "message": "YubiKey $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "u2fkeyX": { "message": "U2F kulcs $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "webAuthnkeyX": { "message": "WebAuthn Kulcs $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "nfcSupport": { "message": "NFC támogatás" }, "twoFactorYubikeySupportsNfc": { "message": "Az egyik kulcs támogatja az NFC-t." }, "twoFactorYubikeySupportsNfcDesc": { "message": "Ha van NFC támogatott YubiKey eszköz (pl. YubiKey NEO), akkor a mobileszközök jelzik az NFC elérhetőség észlelését." }, "yubikeysUpdated": { "message": "A YubiKey eszközök frissítésre kerültek." }, "disableAllKeys": { "message": "Összes kulcs letiltása" }, "twoFactorDuoDesc": { "message": "A Bitwarden alkalmazás információjának megadása a Duo Admin panelről." }, "twoFactorDuoIntegrationKey": { "message": "Integrációs kulcs" }, "twoFactorDuoSecretKey": { "message": "Titkos kulcs" }, "twoFactorDuoApiHostname": { "message": "API kiszolgálónév" }, "twoFactorEmailDesc": { "message": "Kövessük a következő lépéseket a kétlépcsős bejelentkezés beállításához email segítségével:" }, "twoFactorEmailEnterEmail": { "message": "Adjuk meg azt az email címet, ahol az ellenőrző kódokat fogadjuk." }, "twoFactorEmailEnterCode": { "message": "Adjuk meg az emailbőll kapott 6 számjegyű ellenőrző kódot." }, "sendEmail": { "message": "Email küldés" }, "twoFactorU2fAdd": { "message": "Adjunk meg egy FIDO U2F biztonsági kulcsot a fiókhoz." }, "removeU2fConfirmation": { "message": "Biztosan eltávolításra kerüljön a biztonsági kulcs?" }, "twoFactorWebAuthnAdd": { "message": "Adjunk meg egy Webauthn biztonsági kulcsot a felhasználói fiókhoz" }, "readKey": { "message": "Kulcs beolvasása" }, "keyCompromised": { "message": "A kulcs megsérült." }, "twoFactorU2fGiveName": { "message": "Adjunk egy megfelelő nevet a biztonsági kulcsnak az azonosításhoz." }, "twoFactorU2fPlugInReadKey": { "message": "Helyezzük be a biztonsági kulcsot a számítógép USB portjába ás kattintsunk a \"Kulcs beolvasása\" gombra." }, "twoFactorU2fTouchButton": { "message": "Ha biztonsági kulcsnak van gombja, érintsük meg azt." }, "twoFactorU2fSaveForm": { "message": "Az űrlap mentése." }, "twoFactorU2fWarning": { "message": "A platform korlátozások miatt nem lehet minden Bitwarden alkalmazásban FIDO U2F-t használni. Célszerű engedélyezni egy másik kétlépcsős bejelentkezés szolgáltatót a fiók eléréséhez akkor, ha a FIDO U2F nem használható. Támogatott platformok:" }, "twoFactorU2fSupportWeb": { "message": "Web széf és böngésző kiegészítők asztali gépen / laptopon engedélyezett U2F böngészővel (Chrome, Opera, Vivaldi, vagy Firefox bekapcsolt FIDO U2F-fel)." }, "twoFactorU2fWaiting": { "message": "Várakozás a biztonsági kulcs gombjának megérintésére." }, "twoFactorU2fClickSave": { "message": "Kattintás lentebb a \"Mentés\" gombra a kétlépcsős bejelentkezés biztonsági kulcsának engedélyezéséhez." }, "twoFactorU2fProblemReadingTryAgain": { "message": "Probléma lépett fel a biztonsági kulcs olvasásakor. Próbáljuk újra." }, "twoFactorWebAuthnWarning": { "message": "A platform korlátozások miatt nem lehetséges minden Bitwarden alkalmazásban YubiKey eszközt használni. Engedélyezzünk egy másik kétlépcsős bejelentkezés szolgáltatót, hogy hozzáférhessünk a fiókhoz akkor is, ha a YubiKey nem használható. Támogatott platformok:" }, "twoFactorWebAuthnSupportWeb": { "message": "Web széf és böngésző kiegészítők asztali gépen / laptopon engedélyezett U2F böngészővel (Chrome, Opera, Vivaldi, vagy Firefox bekapcsolt FIDO U2F-fel)." }, "twoFactorRecoveryYourCode": { "message": "Bitwarden kétlépcsős bejelentkezés helyreállító kód" }, "twoFactorRecoveryNoCode": { "message": "Még nem lett engedélyezve kétlépcsős bejelentkezés szolgáltató. A kétlépcsős bejelentkezés szolgáltató engedélyezése után visszatérhetünk ide a helyreállító kódért." }, "printCode": { "message": "Kód nyomtatása", "description": "Print 2FA recovery code" }, "reports": { "message": "Jelentések" }, "reportsDesc": { "message": "Az alábbi jelentésekre kattintva azonosítsuk és zárjuk le a webes kiókjaink biztonsági hiányosságait." }, "unsecuredWebsitesReport": { "message": "Nem-biztonságos webhelyek jelentés" }, "unsecuredWebsitesReportDesc": { "message": "A http:// sémájú nem-biztonságos webhelyek használata veszélyes lehet. Ha a webhely engedi, mindig használuk a https:// sémát a kapcsolat titkosítására." }, "unsecuredWebsitesFound": { "message": "Nem-biztonságos webhelyek találhatók." }, "unsecuredWebsitesFoundDesc": { "message": "$COUNT$ elem található a széfben nem-biztonságos URI-val. Ezeket URI sémáját célszerű módosítani https://-re.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noUnsecuredWebsites": { "message": "A széfben nincs nem-biztonságos URI-val rendelkező elem." }, "inactive2faReport": { "message": "2FA jelentés kikapcsolása" }, "inactive2faReportDesc": { "message": "A kétlépcsős hitelesítés (2FA) egy fontos biztonsági beállítás, amely biztosítja a fiókokat. Ha egy webhely felkínálja ezt, célszerű mindig engedélyezni a kétlépcsős hitelesítést." }, "inactive2faFound": { "message": "2FA nélküli bejelentkezések találhatók." }, "inactive2faFoundDesc": { "message": "$COUNT$ olyan webhelyet találtunk a széfben, amely nincs kétlépcsős hitelesítéssel konfigurálva (a 2fa.directory adatbázisa alapján). Ezen fiókok további védelme érdekében, javasolt a kétlépcsős hitelesítés használata.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noInactive2fa": { "message": "A széfben nincs hiányzó kétlépcsős hitelesítés konfigurációval rendelkező webhely." }, "instructions": { "message": "Utasítások" }, "exposedPasswordsReport": { "message": "Kiszivárgott jelszavak jelentés" }, "exposedPasswordsReportDesc": { "message": "A kiszivárgott jelszavak olyan jelszavak, amelyek ismert adatsértések miatt nyilvánosságra kerültek vagy a sötét interneten hackerek értékesítettek azokat." }, "exposedPasswordsFound": { "message": "Kiszivárgott jelszavak találhatók." }, "exposedPasswordsFoundDesc": { "message": "$COUNT$ elem található a széfben, amelyek érintve voltak ismert adatszivárgásban. Célszerű új jelszavakra lecserélni ezeket.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noExposedPasswords": { "message": "Nem található a széfben ismert adatszivárgásban érintett jelszó." }, "checkExposedPasswords": { "message": "Kiszivárgott jelszavak ellenőrzése" }, "exposedXTimes": { "message": "$COUNT$ alkalommal szivárgott ki", "placeholders": { "count": { "content": "$1", "example": "52" } } }, "weakPasswordsReport": { "message": "Gyenge jelszavak jelentés" }, "weakPasswordsReportDesc": { "message": "A gyenge jelszavakat könnyen megfejthetik hackerek és jelszótöréshez használt eszközök. A Bitwarden jelszógenerátor segít erős jelszót készíteni." }, "weakPasswordsFound": { "message": "Gyenge jelszavak találhatók." }, "weakPasswordsFoundDesc": { "message": "$COUNT$ gyenge jelszó van a széfben. Célszerű lenne ezeket lecserélni erősebb jelszóra.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noWeakPasswords": { "message": "Egyik elemnél sincsenek gyenge jelszavak." }, "reusedPasswordsReport": { "message": "Újrahasznált jelszavak jelentés" }, "reusedPasswordsReportDesc": { "message": "Ha használatban levő szolgáltatást feltörtek, ugyanannak a jelszónak a használata máshol lehetővé teszi a hackereknek a hozzáférés elérését több webes fióknál is. Fontos, hogy egyedi jelszavakat használjunk minden fiókhoz vagy szolgáltatáshoz." }, "reusedPasswordsFound": { "message": "Újrahasznált jelszavak találhatók." }, "reusedPasswordsFoundDesc": { "message": "$COUNT$ újrahasznált jelszó van a széfben. Változtassuk meg ezeket egyedi értékűre.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noReusedPasswords": { "message": "A széfben nincsenek újrahasznált jelszóval rendelkező bejelentkezések." }, "reusedXTimes": { "message": "$COUNT$ alkalommal újrafelhasználva", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "dataBreachReport": { "message": "Adatszivárgás jelentés" }, "breachDesc": { "message": "Adatszivárgásnak hívják azokat az incidenseket, amelyek során a webhelyek adataihoz illegálisan férnek hozzá hackerek és az így megszerzett adatokat nyilvánosságra hozzák. Ellenőrizzük a kompromittálódott adatok típusait (email cím, jelszó, hitelkártya adatok, stb.) és hajtsuk végre a megfelelő műveleteket, ilyen a jelszócsere." }, "breachCheckUsernameEmail": { "message": "Ellenőriztük a használatban levő felhasználóneveket vagy email címeket." }, "checkBreaches": { "message": "Szivárgás ellenőrzés" }, "breachUsernameNotFound": { "message": "$USERNAME$ nem található egyik ismert adatszivárgásban sem.", "placeholders": { "username": { "content": "$1", "example": "user@example.com" } } }, "goodNews": { "message": "Jó hírek", "description": "ex. Good News, No Breached Accounts Found!" }, "breachUsernameFound": { "message": "$USERNAME$ $COUNT$ különböző webes adatszivárgásban megtalálható.", "placeholders": { "username": { "content": "$1", "example": "user@example.com" }, "count": { "content": "$2", "example": "7" } } }, "breachFound": { "message": "Kiszivárgott fiókok találhatók." }, "compromisedData": { "message": "Sérült adatok" }, "website": { "message": "Webhely" }, "affectedUsers": { "message": "Érintett felhasználók" }, "breachOccurred": { "message": "Adatszivárgás történt." }, "breachReported": { "message": "Az adatszivárgás jelentésre került." }, "reportError": { "message": "Hiba történt a jelentés betöltése közben. Próbáljuk újra." }, "billing": { "message": "Számlázás" }, "accountCredit": { "message": "Fiók hitelkeret", "description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)." }, "accountBalance": { "message": "Számla egyenleg", "description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)." }, "addCredit": { "message": "Hitelkeret hozzáadása", "description": "Add more credit to your account's balance." }, "amount": { "message": "Összeg", "description": "Dollar amount, or quantity." }, "creditDelayed": { "message": "A feltöltött hitelkeret megjelenik a fiókban a fizetés teljes feldolgozása után. Néhány fizetési mód késhet és hosszabb időt is igénybe vehet." }, "makeSureEnoughCredit": { "message": "Ellenőrizzük, hogy a fióknak elég hitelkerete van a vásárláshoz. Ha nincs elég keret, akkor az alapértelmezett fizetési mód kerül használatba a különbségnél. Hitelkeretet a Számlázás oldalon adhatunk hozzá." }, "creditAppliedDesc": { "message": "A fiók hitelkeret vásárlásra használható. A rendelkezésre álló keret automatikusan ehhez a fiókhoz generálódó számlákra kerül alkalmazásra." }, "goPremium": { "message": "Váltás Prémiumra", "description": "Another way of saying \"Get a premium membership\"" }, "premiumUpdated": { "message": "Megtörtént az áttérés a Prémium verzióra." }, "premiumUpgradeUnlockFeatures": { "message": "A fiók átállítása prémium tagságra és sok kiegészítő lehetőség feloldása." }, "premiumSignUpStorage": { "message": "1 GB titkosított tárhely a fájlmellékleteknek." }, "premiumSignUpTwoStep": { "message": "További olyan kétlépcsős bejelentkezési opciók mint a YubiKey, FIDO U2F és Duo." }, "premiumSignUpEmergency": { "message": "Sürgősségi hozzáférés" }, "premiumSignUpReports": { "message": "Jelszó higiénia, felhasználói fiók biztonsága, és adatszivárgási jelentések a széf biztonsága érdekében." }, "premiumSignUpTotp": { "message": "Egyszeri időalapú TOTP ellenőrző kód (2FA) generátor a széfbe bejelentkezésekhez." }, "premiumSignUpSupport": { "message": "Elsőbbségi ügyfélszolgálat." }, "premiumSignUpFuture": { "message": "Minden jövőbeli prémium funkció. Hamarosan jön még több!" }, "premiumPrice": { "message": "Mindez csak $PRICE$ /év.", "placeholders": { "price": { "content": "$1", "example": "$10" } } }, "addons": { "message": "Kiegészítők" }, "premiumAccess": { "message": "Prémium hozzáférés" }, "premiumAccessDesc": { "message": "Prémium hozzáférés adható a szervezet összes tagjának $PRICE$ /$INTERVAL$ összegért.", "placeholders": { "price": { "content": "$1", "example": "$3.33" }, "interval": { "content": "$2", "example": "'month' or 'year'" } } }, "additionalStorageGb": { "message": "Kiegészítő tárhely (GB)" }, "additionalStorageGbDesc": { "message": "További # GB" }, "additionalStorageIntervalDesc": { "message": "Az előfizetői díjcsomag $SIZE$ titkosított tárhelyet tartalmaz. További tárhellyel bővíthető $PRICE$ /GB /$INTERVAL$ összegben.", "placeholders": { "size": { "content": "$1", "example": "1 GB" }, "price": { "content": "$2", "example": "$4.00" }, "interval": { "content": "$3", "example": "'month' or 'year'" } } }, "summary": { "message": "Összegzés" }, "total": { "message": "Összesen" }, "year": { "message": "év" }, "month": { "message": "hónap" }, "monthAbbr": { "message": "hó.", "description": "Short abbreviation for 'month'" }, "paymentChargedAnnually": { "message": "A fizetési mód azonnal, ezután évente kerül ráterhelésre. Bármikor lemondható." }, "paymentCharged": { "message": "A fizetési mód azonnal, ezután $INTERVAL$ időszakonként kerül ráterhelésre. Bármikor lemondható.", "placeholders": { "interval": { "content": "$1", "example": "month or year" } } }, "paymentChargedWithTrial": { "message": "A csomagod 7 napos ingyenes próbaidőszakot tartalmaz. A fizetési módját az időszak végéig nem terheljük. A csomag bármikor lemondható." }, "paymentInformation": { "message": "Fizetési információ" }, "billingInformation": { "message": "Számlázási adatok" }, "creditCard": { "message": "Hitelkártya" }, "paypalClickSubmit": { "message": "Kattintás a PayPal gombra a PayPal fiókba bejelentkezéshez, ezután kattintás a Beküldés gombra a folytatáshoz." }, "cancelSubscription": { "message": "Előfizetés megszüntetése" }, "subscriptionCanceled": { "message": "Az előfizetés törlésre került." }, "pendingCancellation": { "message": "Függő törlés" }, "subscriptionPendingCanceled": { "message": "Az előfizetés törlésre lett kijelölve az aktuális számlázási időszak végéig." }, "reinstateSubscription": { "message": "Előfizetés visszaállítása" }, "reinstateConfirmation": { "message": "Biztosan eltávolításra kerüljön a függőben levő törlés kérés és visszaállításra kerüljön az előfizetés?" }, "reinstated": { "message": "Az előfizetés visszaállításra került." }, "cancelConfirmation": { "message": "Biztosan törlésre kerüljön? A számlázási időszak végén az összes előfizetési hozzáférés elveszik." }, "canceledSubscription": { "message": "Az előfizetés törlésre került." }, "neverExpires": { "message": "Nincs lejárat" }, "status": { "message": "Állapot" }, "nextCharge": { "message": "Következő terhelés" }, "details": { "message": "Részletek" }, "downloadLicense": { "message": "Licensz letöltése" }, "updateLicense": { "message": "Licensz frissítése" }, "updatedLicense": { "message": "A licensz frissítésre került." }, "manageSubscription": { "message": "Előfizetés kezelése" }, "storage": { "message": "Tárhely" }, "addStorage": { "message": "Tárhely hozzáadása" }, "removeStorage": { "message": "Tárhely eltávolítása" }, "subscriptionStorage": { "message": "Az előfizetéshez összesen $MAX_STORAGE$ GB titkosított tárhely tartozik. Jelenleg $USED_STORAGE$ GB van használatban.", "placeholders": { "max_storage": { "content": "$1", "example": "4" }, "used_storage": { "content": "$2", "example": "65 MB" } } }, "paymentMethod": { "message": "Fizetési mód" }, "noPaymentMethod": { "message": "Nincs fizetési mód beállítva." }, "addPaymentMethod": { "message": "Fizetési mód hozzáadása" }, "changePaymentMethod": { "message": "Fizetési mód módosítása" }, "invoices": { "message": "Számlák" }, "noInvoices": { "message": "Nincsenek számlák." }, "paid": { "message": "Fizetve", "description": "Past tense status of an invoice. ex. Paid or unpaid." }, "unpaid": { "message": "Nincs fizetve", "description": "Past tense status of an invoice. ex. Paid or unpaid." }, "transactions": { "message": "Tranzakciók", "description": "Payment/credit transactions." }, "noTransactions": { "message": "Nincsenek tranzakciók." }, "chargeNoun": { "message": "Terhelés", "description": "Noun. A charge from a payment method." }, "refundNoun": { "message": "Visszatérítés", "description": "Noun. A refunded payment that was charged." }, "chargesStatement": { "message": "A kivonaton minden terhelés $STATEMENT_NAME$ néven jelenik meg.", "placeholders": { "statement_name": { "content": "$1", "example": "BITWARDEN" } } }, "gbStorageAdd": { "message": "Hozzáadandó tárhely GB mennyiség" }, "gbStorageRemove": { "message": "Eltávolítandó tárhely GB mennyiség" }, "storageAddNote": { "message": "A tárhely bővítés megjelenik a számlaösszesítőben és azonnal terheli a fizetési módot. Az első díj az aktuális számlázási időszak időarányos fennmaradó részére kerül számlázásra." }, "storageRemoveNote": { "message": "A tárhely eltávolítás módosítja a számlázási összegeket, amelyeket jóváírásként számítanak be a következő számlázási díjhoz." }, "adjustedStorage": { "message": "A módosított tárhely mérete $AMOUNT$ GB.", "placeholders": { "amount": { "content": "$1", "example": "5" } } }, "contactSupport": { "message": "Ügyfélszolgálat elérése" }, "updatedPaymentMethod": { "message": "A fizetési mód frissítésre került." }, "purchasePremium": { "message": "Prémium vásárlása" }, "licenseFile": { "message": "Licenszfájl" }, "licenseFileDesc": { "message": "A licenszfájl elnevezése ehhez hasonló: $FILE_NAME$", "placeholders": { "file_name": { "content": "$1", "example": "bitwarden_premium_license.json" } } }, "uploadLicenseFilePremium": { "message": "A fiók prémium tagságira frissítéséhez fel kell tölteni egy érvényes licenszfájlt." }, "uploadLicenseFileOrg": { "message": "Saját tárolt szervezet létrehozásához feltölteni kell egy érvényes licenszfájlt." }, "accountEmailMustBeVerified": { "message": "Ellenőrizni kell a fiókhoz tartozó email címet." }, "newOrganizationDesc": { "message": "A szervezetek lehetővé teszik a széf részeinek megosztását másokkal, valamint egy adott entitással kapcsolatos olyan felhasználók kezelését mint például egy család, kis csapat vagy nagyvállalat." }, "generalInformation": { "message": "Általános információk" }, "organizationName": { "message": "Szervezet neve" }, "accountOwnedBusiness": { "message": "Ez a fiók egy vállalkozás tulajdonában van." }, "billingEmail": { "message": "Számlázási email cím" }, "businessName": { "message": "Vállalkozás neve" }, "chooseYourPlan": { "message": "Díjcsomag választás" }, "users": { "message": "Felhasználók" }, "userSeats": { "message": "Felhasználói helyek" }, "additionalUserSeats": { "message": "Kiegészítő felhasználói helyek" }, "userSeatsDesc": { "message": "Felhasználói helyek száma" }, "userSeatsAdditionalDesc": { "message": "A díjcsomag $BASE_SEATS$ felhasználói helyet tartalmaz. További felhasználókat havi $SEAT_PRICE$/felhasználó/hónap áron lehet felvenni.", "placeholders": { "base_seats": { "content": "$1", "example": "5" }, "seat_price": { "content": "$2", "example": "$2.00" } } }, "userSeatsHowManyDesc": { "message": "Mennyi felhasználói helyre van szükséged? A felhasználói helyeket később szükség esetén bővítheted." }, "planNameFree": { "message": "Ingyenes", "description": "Free as in 'free beer'." }, "planDescFree": { "message": "Tesztelésre vagy személyes felhasználóknál megosztás $COUNT$ egyéb felhasználóval.", "placeholders": { "count": { "content": "$1", "example": "1" } } }, "planNameFamilies": { "message": "Családok" }, "planDescFamilies": { "message": "Személyes használatra, családtagokkal és ismerősökkel történő megosztásra." }, "planNameTeams": { "message": "Csoportok" }, "planDescTeams": { "message": "Vállalkozásoknak és más szervezeti csoportoknak." }, "planNameEnterprise": { "message": "Vállalatok" }, "planDescEnterprise": { "message": "Vállalkozásoknak és más nagy szervezeteknek." }, "freeForever": { "message": "Örökre ingyenes" }, "includesXUsers": { "message": "$COUNT$ felhasználót tartalmaz", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "additionalUsers": { "message": "További felhasználók" }, "costPerUser": { "message": "$COST$/felhasználó", "placeholders": { "cost": { "content": "$1", "example": "$3" } } }, "limitedUsers": { "message": "$COUNT$ felhasználóra korlátozva (az aktuálissal együtt)", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "limitedCollections": { "message": "$COUNT$ gyűjteményre korlátozva", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "addShareLimitedUsers": { "message": "Hozzáadás és megosztás legfeljebb $COUNT$ felhasználóval", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "addShareUnlimitedUsers": { "message": "Hozzáadás és megosztás legfeljebb korlátlan felhasználóval" }, "createUnlimitedCollections": { "message": "Korlátlan gyűjtemény létrehozása" }, "gbEncryptedFileStorage": { "message": "1 GB titkosított fájl tárhely.", "placeholders": { "size": { "content": "$1", "example": "1 GB" } } }, "onPremHostingOptional": { "message": "Saját tárolás (opcionális)" }, "usersGetPremium": { "message": "A felhasználók hozzáférést kapnak a prémium tagság funkcióihoz." }, "controlAccessWithGroups": { "message": "Felhasználó hozzáférés vezérlése csoportokkal." }, "syncUsersFromDirectory": { "message": "A felhasználók és csoportok szinkronizálása könyvtárból." }, "trackAuditLogs": { "message": "Felhasználói műveletek nyomon követése elemző naplózással." }, "enforce2faDuo": { "message": "2FA Duo erőltetése" }, "priorityCustomerSupport": { "message": "Elsőbbségi felhasználói támogatás" }, "xDayFreeTrial": { "message": "$COUNT$ ingyenes nap van még, bármikor megszakítható.", "placeholders": { "count": { "content": "$1", "example": "7" } } }, "monthly": { "message": "Havi" }, "annually": { "message": "Évente" }, "basePrice": { "message": "Alapár" }, "organizationCreated": { "message": "A szervezet létrehozásra került." }, "organizationReadyToGo": { "message": "A szervezet használatra kész." }, "organizationUpgraded": { "message": "A szervezet felminősítésre került." }, "leave": { "message": "Kilépés" }, "leaveOrganizationConfirmation": { "message": "Biztosan kilépünk ebből a szervezetből?" }, "leftOrganization": { "message": "Megtörtént a kilépés a szervezetből." }, "defaultCollection": { "message": "Alapértelmezett gyűjtemény" }, "getHelp": { "message": "Segítségkérés" }, "getApps": { "message": "Alkalmazások letöltése" }, "loggedInAs": { "message": "Bejelentkezve mint" }, "eventLogs": { "message": "Eseménynapló" }, "people": { "message": "Emberek" }, "policies": { "message": "Szabályok" }, "singleSignOn": { "message": "Egyszeri bejelentkezés" }, "editPolicy": { "message": "Szabály szerkesztése" }, "groups": { "message": "Csoportok" }, "newGroup": { "message": "Új csoport" }, "addGroup": { "message": "Csoport hozzáadása" }, "editGroup": { "message": "Csoport szerkesztése" }, "deleteGroupConfirmation": { "message": "Biztosan törlésre kerüljön ez a csoport?" }, "removeUserConfirmation": { "message": "Biztosan eltávolításra kerüljön ez a felhasználó?" }, "removeUserConfirmationKeyConnector": { "message": "Figyelem! Ennek a felhasználónak kulcskapcsolóra van szüksége a titkosítás kezeléséhez. Ha eltávolítjuk ezt a felhasználót a szervezetből, azzal véglegesen letiltjuk a fiókját. Ez a művelet nem visszavonható. Folytatás?" }, "externalId": { "message": "Külső azonosító" }, "externalIdDesc": { "message": "A külső azonosító hivatkozásként használható, vagy ahhoz, hogy ezt az erőforrást egy külső rendszerhez, például felhasználói könyvtárhoz kapcsoljuk." }, "accessControl": { "message": "Hozzáférés vezérlés" }, "groupAccessAllItems": { "message": "Ez a csoport minden elemhez hozzáfér és módosíthatja azokat." }, "groupAccessSelectedCollections": { "message": "Ez a csoport csak a kiválasztott gyűjteményekhez fér hozzá." }, "readOnly": { "message": "Csak olvasható" }, "newCollection": { "message": "Új gyűjtemény" }, "addCollection": { "message": "Gyűjtemény hozzáadása" }, "editCollection": { "message": "Gyűjtemény szerkesztése" }, "deleteCollectionConfirmation": { "message": "Biztosan törlésre kerüljön ez a gyűjtemény?" }, "editUser": { "message": "Felhasználó szerkesztése" }, "inviteUser": { "message": "Felhasználó meghívása" }, "inviteUserDesc": { "message": "Új felhasználó meghívása a szervezetéhez a Bitwarden fiók e-mail címének megadásával. Ha még nem rendelkezik Bitwarden-fiókkal, felkérjük új fiók létrehozására.\n" }, "inviteMultipleEmailDesc": { "message": "Egymástól vesszővel elválasztott email címek megadásával egyszerre akár $COUNT$ felhasználó meghívható.", "placeholders": { "count": { "content": "$1", "example": "20" } } }, "userUsingTwoStep": { "message": "Ez a felhasználó kétlépcsős bejelentkezést használ fiókja védelmére." }, "userAccessAllItems": { "message": "Ez a felhasználó minden elemhez hozzáfér és módosítani tudja azokat." }, "userAccessSelectedCollections": { "message": "Ez a felhasználó csak a kiválasztott gyűjteményekhez fér hozzá." }, "search": { "message": "Keresés" }, "invited": { "message": "Meghívott" }, "accepted": { "message": "Elfogadva" }, "confirmed": { "message": "Megerősítve" }, "clientOwnerEmail": { "message": "Ügyféltulajdonos e-mail cím" }, "owner": { "message": "Tulajdonos" }, "ownerDesc": { "message": "A legmagasabb hozzáféréssel rendelkező felhasználó kezelheti a szervezet összes lehetőségét." }, "clientOwnerDesc": { "message": "Ennek a felhasználónak függetlennek kell lennie a szolgáltatótól. Ha a Szolgáltató nincs kapcsolatban a szervezettel, akkor ez a felhasználó tartja fenn a szervezet tulajdonjogát." }, "admin": { "message": "Adminisztrátor" }, "adminDesc": { "message": "Az adminisztrátorok hozzáférhetnek a szervezet összes eleméhez, gyűjteményéhez és felhasználójához, valamint kezelhetik azokat." }, "user": { "message": "Felhasználó" }, "userDesc": { "message": "Normál felhasználó a szervezeti gyűjtemények elérésével." }, "manager": { "message": "Menedzser" }, "managerDesc": { "message": "A menedzserek hozzáférhetnek a szervezet összes gyűjteményéhez, valamint kezelhetik azokat." }, "all": { "message": "Összes" }, "refresh": { "message": "Frissítés" }, "timestamp": { "message": "Időbélyeg" }, "event": { "message": "Esemény" }, "unknown": { "message": "Ismeretlen" }, "loadMore": { "message": "Továbbiak betöltése" }, "mobile": { "message": "Mobil", "description": "Mobile app" }, "extension": { "message": "Bővítmény", "description": "Browser extension/addon" }, "desktop": { "message": "Asztali", "description": "Desktop app" }, "webVault": { "message": "Webes széf" }, "loggedIn": { "message": "Megtörtént a bejelentkezés." }, "changedPassword": { "message": "A fiók jelszava megváltozott." }, "enabledUpdated2fa": { "message": "A kétlépcsős bejelentkezés bekapcsolásra/frissítésre került." }, "disabled2fa": { "message": "A kétlépcsős bejelentkezés kikapcsolásra került." }, "recovered2fa": { "message": "38/5000\nA fiók visszaállításra került a kétlépcsős bejelentkezésről." }, "failedLogin": { "message": "A bejelentkezési kísérlet hibás jelszó miatt meghiúsult." }, "failedLogin2fa": { "message": "A bejelentkezés meghiúsult hibás kétlépcsős bejelentkezés miatt." }, "exportedVault": { "message": "A széf exportálásra került." }, "exportedOrganizationVault": { "message": "A szervezeti széf exportálásra került." }, "editedOrgSettings": { "message": "A szervezeti beállítások módosításra kerültek." }, "createdItemId": { "message": "$ID$ azonosítójú elem létrehozásra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "editedItemId": { "message": "$ID$ azonosítójú elem módosításra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "deletedItemId": { "message": "$ID$ azonosítójú elemtörlésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "movedItemIdToOrg": { "message": "$ID$ elem átkerült egy szervezethez.", "placeholders": { "id": { "content": "$1", "example": "'Google'" } } }, "viewedItemId": { "message": "$ID$ azonosítójú elem megtekintésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedPasswordItemId": { "message": "$ID$ azonosítójú elem jelszava megtekintésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedHiddenFieldItemId": { "message": "$ID$ azonosítójú elem rejhtett mezője megtekintésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedSecurityCodeItemId": { "message": "$ID$ azonosítójú elem biztonsági kódja megtekintésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedPasswordItemId": { "message": "$ID$ azonosítójú elem jelszava másolásra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedHiddenFieldItemId": { "message": "$ID$ azonosítójú elem rejtett mezője másolásra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedSecurityCodeItemId": { "message": "$ID$ azonosítójú elem biztonsági kódja másolásra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "autofilledItemId": { "message": "$ID$ azonosítójú elem automatikusan kitöltésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "createdCollectionId": { "message": "$ID$ azonosítójú gyűjtemény létrehozásra került.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "editedCollectionId": { "message": "$ID$ azonosítójú gyűjtemény módosításra került.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "deletedCollectionId": { "message": "$ID$ azonosítójú gyűjtemény törlésre került.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "editedPolicyId": { "message": "$ID$ szabály szerkesztésre került.", "placeholders": { "id": { "content": "$1", "example": "Master Password" } } }, "createdGroupId": { "message": "$ID$ azonosítójú csoport létrehozásra került.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "editedGroupId": { "message": "$ID$ azonosítójú csoport módosításra került.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "deletedGroupId": { "message": "$ID$ azonosítójú csoport törlésre került.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "removedUserId": { "message": "$ID$ azonosítójú felhasználó eltávolításra került.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "createdAttachmentForItem": { "message": "$ID$ azonosítójú elem melléklete létrehozásra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "deletedAttachmentForItem": { "message": "$ID$ azonosítójú elem melléklete törlésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "editedCollectionsForItem": { "message": "$ID$ azonosítójú elem gyűjteménye módosításra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "invitedUserId": { "message": "$ID$ azonosítójú felhasználó meghívásra került.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "confirmedUserId": { "message": "$ID$ azonosítójú felhasználó megerősítésre került.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "editedUserId": { "message": "$ID$ azonosítójú felhasználó módosításra került.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "editedGroupsForUser": { "message": "$ID$ azonosítójú felhasználó csoportjai módosításra kerültek.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "unlinkedSsoUser": { "message": "SSO szétkapcsolva $ID$ felhasználónál.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "createdOrganizationId": { "message": "Létrehozott szervezet: $ID$.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "addedOrganizationId": { "message": "Hozzáadott szervezet: $ID$.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "removedOrganizationId": { "message": "Eltávolított szervezet: $ID$.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "accessedClientVault": { "message": "Hozzáfért $ID$ szervezeti széf.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "device": { "message": "Eszköz" }, "view": { "message": "Megtekintés" }, "invalidDateRange": { "message": "Az időintervallum érvénytelen." }, "errorOccurred": { "message": "Valamilyen hiba történt." }, "userAccess": { "message": "Felhasználói hozzáférés" }, "userType": { "message": "Felhasználó típus" }, "groupAccess": { "message": "Csoport hozzáférés" }, "groupAccessUserDesc": { "message": "A felhasználóhoz tartozó csoportok szerkesztése." }, "invitedUsers": { "message": "A meghívott felhasználók." }, "resendInvitation": { "message": "Meghívás újraküldése" }, "resendEmail": { "message": "Email újraküldése" }, "hasBeenReinvited": { "message": "$USER$ ismételten meghívásra került.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "confirm": { "message": "Megerősítés" }, "confirmUser": { "message": "Felhasználó megerősítése" }, "hasBeenConfirmed": { "message": "$USER$ felhasználó megerősítésre került.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "confirmUsers": { "message": "Felhasználók megerősítése" }, "usersNeedConfirmed": { "message": "Vannak olyan felhasználók, akik elfogadták a meghívást, de ezt még meg kell erősíteni. A felhasználók csak a megerősítésük utánt férhetnek hozzá a szervezethez." }, "startDate": { "message": "Kezdő dátum" }, "endDate": { "message": "Végdátum" }, "verifyEmail": { "message": "Email cím ellenőrzése" }, "verifyEmailDesc": { "message": "A fiók email címének ellenőrzése az összes funkció feloldásához." }, "verifyEmailFirst": { "message": "A fiók email címét először ellenőrizni kell." }, "checkInboxForVerification": { "message": "A bejövő postaláda ellenőrzése az ellenőrző linkért." }, "emailVerified": { "message": "Az email cím megerősítésre került." }, "emailVerifiedFailed": { "message": "Nem sikerült az email cím ellenőrzése. Új ellenőrző email küldése." }, "emailVerificationRequired": { "message": "E-mail hitelesítés szükséges" }, "emailVerificationRequiredDesc": { "message": "A funkció használatához ellenőrizni kell az email címet." }, "updateBrowser": { "message": "Böngésző frissítése" }, "updateBrowserDesc": { "message": "Nem támogatott böngészőt használunk. Előfordulhat, hogy a webes széf nem működik megfelelően." }, "joinOrganization": { "message": "Csatlakozás szervezethez" }, "joinOrganizationDesc": { "message": "Meghívást érkezett a fenti szervezethez csatlakozáshoz. A meghívás elfogadásához be kell jelentkezni vagy új Bitwarden fiókot kell létrehozni." }, "inviteAccepted": { "message": "A meghívás elfogadásra került." }, "inviteAcceptedDesc": { "message": "A szervezet elérhető, amikor az adminisztrátor jóváhagyja a tagságot. Amint ez megtörténik, értesítő email érkezik." }, "inviteAcceptFailed": { "message": "A meghívás nem fogadható el. Kérjük fel a szervezet adminisztrátorát új meghívó küldésére." }, "inviteAcceptFailedShort": { "message": "Nem lehet elfogadni a meghívást. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must enable 2FA on your user account before you can join this organization." } } }, "rememberEmail": { "message": "E-mail megjegyzése" }, "recoverAccountTwoStepDesc": { "message": "Ha nem férünk hozzá a fiókhoz a normál kétlépcsős bejelentkezési módokkal, használhatjuk a kétlépcsős bejelentkezés helyreállító kódot a fiókra vonatkozó összes kétlépcsős szolgáltató kikapcsolásához." }, "recoverAccountTwoStep": { "message": "Fiók kétlépcsős bejelentkezés helyreállítása" }, "twoStepRecoverDisabled": { "message": "A kétlécsős hitelesítés kikapcsolásra került a fióknál." }, "learnMore": { "message": "További információ" }, "deleteRecoverDesc": { "message": "Az email cím megadása lentebb a fiók helyreállításához és törléséhez." }, "deleteRecoverEmailSent": { "message": "Ha létezik a fiók, egy email kerül kiküldésre további utasításokkal." }, "deleteRecoverConfirmDesc": { "message": "A Bitwarden fiók törlését kértük. Kattintás a lenti gombra a megerősítéshez." }, "myOrganization": { "message": "Saját szervezet" }, "deleteOrganization": { "message": "Szervezet törlése" }, "deletingOrganizationContentWarning": { "message": "Adjuk meg a mesterjelszót $ORGANIZATION$ és az összes társított adat törlésének megerősítéséhez. $ORGANIZATION$ széfadatainak tartalma:", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "deletingOrganizationActiveUserAccountsWarning": { "message": "A felhasználói fiókok aktívak maradnak a törlés után, de a továbbiakben nincsenek társítva ehhez a szervezethez." }, "deletingOrganizationIsPermanentWarning": { "message": "$ORGANIZATION$ törlése végleges és nincs visszaállítási lehetőség.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "organizationDeleted": { "message": "A szervezet törlésre került." }, "organizationDeletedDesc": { "message": "A szervezet és az összes társított adat törlésre került." }, "organizationUpdated": { "message": "A szervezet frissítésre került." }, "taxInformation": { "message": "Adó információ" }, "taxInformationDesc": { "message": "Vegyük fel a kapcsolatot a támogatással a számlához tartozó adóinformáció megadásával (vagy frissítésével) kapcsolatban." }, "billingPlan": { "message": "Díjcsomag", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "changeBillingPlan": { "message": "Díjcsomag változtatása", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "changeBillingPlanUpgrade": { "message": "A fiók felminősítése másik díjcsomagra az alábbi megadott információ alapján. Ellenőrizzük a fiókhoz adott aktív fizetési módot.", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "invoiceNumber": { "message": "#$NUMBER$ számla", "description": "ex. Invoice #79C66F0-0001", "placeholders": { "number": { "content": "$1", "example": "79C66F0-0001" } } }, "viewInvoice": { "message": "Számla megtekintése" }, "downloadInvoice": { "message": "Számla letöltése" }, "verifyBankAccount": { "message": "Bankfiók ellenőrzése" }, "verifyBankAccountDesc": { "message": "Két mikroterhelést végeztünk a bankszámlán (akár 1-2 napot is igénybe vehet a megjelenésig). Adjuk meg ezeket az összegeket a bankszámla ellenőrzéséhez." }, "verifyBankAccountInitialDesc": { "message": "A bankszámlával történő fizetés csak az USA ügyfelek számára érhető el. Ehhez ellenőrizni kell a bankszámlát. Két mikroterhelést végeztünk a bankszámlán a következő 1-2 napban. Adjuk meg ezeket az összegeket a szervezet számlázási oldalán a bankszámla ellenőrzéséhez." }, "verifyBankAccountFailureWarning": { "message": "A bankszámla ellenőrzésének sikertelensége elmaradt fizetéshez és az előfizetés leállításához vezet." }, "verifiedBankAccount": { "message": "A bankszámla megerősítésre került." }, "bankAccount": { "message": "Bankszámla" }, "amountX": { "message": "$COUNT$. összeg", "description": "Used in bank account verification of micro-deposits. Amount, as in a currency amount. Ex. Amount 1 is $2.00, Amount 2 is $1.50", "placeholders": { "count": { "content": "$1", "example": "1" } } }, "routingNumber": { "message": "Banki azonosító szám", "description": "Bank account routing number" }, "accountNumber": { "message": "Számlaszám" }, "accountHolderName": { "message": "Számlatulajdonos neve" }, "bankAccountType": { "message": "Számlatípus" }, "bankAccountTypeCompany": { "message": "Cég (üzleti)" }, "bankAccountTypeIndividual": { "message": "Egyéni (személyes)" }, "enterInstallationId": { "message": "Telepítési azonosító megadása" }, "limitSubscriptionDesc": { "message": "Állítsunk be helykorlátot az előfizetéshez. Ha elérjük ezt a korlátot, nem tudunk új felhasználókat meghívni." }, "maxSeatLimit": { "message": "Maximális helykorlát (opcionális)", "description": "Upper limit of seats to allow through autoscaling" }, "maxSeatCost": { "message": "Maximális lehetséges helyköltség" }, "addSeats": { "message": "Helyek hozzáadása", "description": "Seat = User Seat" }, "removeSeats": { "message": "Helyek eltávolítása", "description": "Seat = User Seat" }, "subscriptionDesc": { "message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Ha az újonnan meghívott felhasználók túllépik az előfizetői helyeket, akkor haladéktalanul külön díjat kapunk a további felhasználókért." }, "subscriptionUserSeats": { "message": "Az előfizetés összesen $COUNT$ felhasználót tesz lehetővé.", "placeholders": { "count": { "content": "$1", "example": "50" } } }, "limitSubscription": { "message": "Előfizetés korlát (opcionális)" }, "subscriptionSeats": { "message": "Előfizetői helyek" }, "subscriptionUpdated": { "message": "Az előfizetés frissítésre került." }, "additionalOptions": { "message": "Kiegészítő opciók" }, "additionalOptionsDesc": { "message": "Az előfizetés kezelésével kapcsolatos további segítségért forduljunk az Ügyfélszolgálathoz." }, "subscriptionUserSeatsUnlimitedAutoscale": { "message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Ha az újonnan meghívott felhasználók túllépik az előfizetői helyeket, akkor haladéktalanul külön díjat kapunk a további felhasználókért." }, "subscriptionUserSeatsLimitedAutoscale": { "message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Ha az újonnan meghívott felhasználók túllépik az előfizetési helyeket, akkor haladéktalanul külön díjat kapunk a további felhasználókért, amíg el nem érjük a $MAX$ helykorlátot.", "placeholders": { "max": { "content": "$1", "example": "50" } } }, "subscriptionFreePlan": { "message": "$COUNT$ felhasználónál több nem hívható meg magasabb szintű előfizetés nélkül.", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "subscriptionFamiliesPlan": { "message": "$COUNT$ felhasználónál több nem hívható meg magasabb szintű előfizetés nélkül. Az áttéréshez vegyük fel a kapcsolatot a vevőszolgálattal.", "placeholders": { "count": { "content": "$1", "example": "6" } } }, "subscriptionSponsoredFamiliesPlan": { "message": "Az előfizetés összesen $COUNT$ felhasználót tesz lehetővé. A csomagot egy külső szervezet szponzorálja és számlázza ki.", "placeholders": { "count": { "content": "$1", "example": "6" } } }, "subscriptionMaxReached": { "message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Nem hívhatunk meg több, mint $COUNT$ felhasználót az előfizetői helyek növelése nélkül.", "placeholders": { "count": { "content": "$1", "example": "50" } } }, "seatsToAdd": { "message": "Hozzáadandó helyek" }, "seatsToRemove": { "message": "Eltávolítandó helyek" }, "seatsAddNote": { "message": "A felhasználó helyek hozzáadása megjelenik a számlaösszesítőben és azonnal terheli a fizetési módot. Az első terhelés az aktuális számlázási ciklus időarányos fennmaradó része eszerint kerül számlázásra." }, "seatsRemoveNote": { "message": "A felhasználó helyek eltávolítása megjelenik a számlaösszesítőben és előlegként jelenik meg a következő számlázási terheléskor." }, "adjustedSeats": { "message": "$AMOUNT$ felhasználói hely beállításra került.", "placeholders": { "amount": { "content": "$1", "example": "15" } } }, "keyUpdated": { "message": "A kulcs frissítésre került." }, "updateKeyTitle": { "message": "Kulcs frissítés" }, "updateEncryptionKey": { "message": "Titkosítási kulcs frissítés" }, "updateEncryptionKeyShortDesc": { "message": "Jelenleg elavult titkosítási séma van használatban." }, "updateEncryptionKeyDesc": { "message": "Hosszabb titkosítókulcsok kerültek használatba, amelyek jobb biztonságot és hozzáférést biztosítanak új funkciókhoz. A titkosító kulcs frissítése könnyű és gyors. Csak meg kell adni a mesterjelszót. Ez a frissítés kötelezővé válik." }, "updateEncryptionKeyWarning": { "message": "A titkosítási kulcs frissítése után ki kell jelentkezni és vissza kell jelentkezni az összes jelenleg használt Bitwarden alkalmazásba (például a mobilalkalmazás vagy a böngésző bővítmények). A kijelentkezés és a bejelentkezés elmulasztása (amely letölti az új titkosítási kulcsot) adatvesztést okozhat. Megkíséreljük az automatikusan kijelentkeztetést, azonban ez késhet." }, "updateEncryptionKeyExportWarning": { "message": "Az el nem mentett titkosított exportok szintén érvénytelenné válnak." }, "subscription": { "message": "Előfizetés" }, "loading": { "message": "A betöltés folyamatban van." }, "upgrade": { "message": "Áttérés" }, "upgradeOrganization": { "message": "Szervezeti áttérés" }, "upgradeOrganizationDesc": { "message": "Ez a szolgáltatás nem elérhető ingyenes szervezeteknek. Váltás fizetős díjcsomagra a további funkciók feloldásához." }, "createOrganizationStep1": { "message": "Szervezet létrehozása: 1. lépés" }, "createOrganizationCreatePersonalAccount": { "message": "A szervezet létrehozása előtt létre kell hozni egy ingyenes személyes fiókot." }, "refunded": { "message": "Visszatérített" }, "nothingSelected": { "message": "Nincs kiválasztva semmi." }, "acceptPolicies": { "message": "A doboz bejelölésével elfogadjuk a következőket:" }, "acceptPoliciesError": { "message": "A szolgáltatási feltételeket és az adatvédelmi irányelveket nem vették figyelembe." }, "termsOfService": { "message": "Felhasználási feltételek" }, "privacyPolicy": { "message": "Adatvédelem" }, "filters": { "message": "Szűrők" }, "vaultTimeout": { "message": "Széf időkifutás" }, "vaultTimeoutDesc": { "message": "Válasszuk ki, hogy a széfnél mikor legyen időkifutás és a kiválasztott művelet végrehajtása." }, "oneMinute": { "message": "1 perc" }, "fiveMinutes": { "message": "5 perc" }, "fifteenMinutes": { "message": "15 perc" }, "thirtyMinutes": { "message": "30 perc" }, "oneHour": { "message": "1 óra" }, "fourHours": { "message": "4 óra" }, "onRefresh": { "message": "Böngésző újraindításkor" }, "dateUpdated": { "message": "A frissítés megtörtént.", "description": "ex. Date this item was updated" }, "datePasswordUpdated": { "message": "A jelszó frissítésre került.", "description": "ex. Date this password was updated" }, "organizationIsDisabled": { "message": "A szervezet letiltásra került." }, "licenseIsExpired": { "message": "A licensz lejárt." }, "updatedUsers": { "message": "A felhasználók frissítésre kerültek." }, "selected": { "message": "Kiválasztva" }, "ownership": { "message": "Tulajdonjog" }, "whoOwnsThisItem": { "message": "Ki tulajdonolja ezt az elemet?" }, "strong": { "message": "Erős", "description": "ex. A strong password. Scale: Very Weak -> Weak -> Good -> Strong" }, "good": { "message": "Jó", "description": "ex. A good password. Scale: Very Weak -> Weak -> Good -> Strong" }, "weak": { "message": "Gyenge", "description": "ex. A weak password. Scale: Very Weak -> Weak -> Good -> Strong" }, "veryWeak": { "message": "Nagyon gyenge", "description": "ex. A very weak password. Scale: Very Weak -> Weak -> Good -> Strong" }, "weakMasterPassword": { "message": "Gyenge mesterjelszó" }, "weakMasterPasswordDesc": { "message": "A választott mesterjelszó gyenge. Erős jelszót kell használni a Bitwarden fiók megfelelő védelme érdekében. Biztosan ezt a mesterjelszót szeretnénk használni?" }, "rotateAccountEncKey": { "message": "A fiók titkosító kulcs forgatása is" }, "rotateEncKeyTitle": { "message": "Titkosító kulcs forgatása" }, "rotateEncKeyConfirmation": { "message": "Biztosan fordításra kerüljön a fiók titkosító kulcsa?" }, "attachmentsNeedFix": { "message": "Ennek az elemnek régi fájl mellékletei vannak, amelyeket javítani kell." }, "attachmentFixDesc": { "message": "Ez egy régi melléklet, amelyet javítani kell. Kattintás több információért." }, "fix": { "message": "Javítás", "description": "This is a verb. ex. 'Fix The Car'" }, "oldAttachmentsNeedFixDesc": { "message": "A széfben régi mellékletek vannak, amelyeket javítani kell a fiók titkosító kulcsának fordítása előtt." }, "yourAccountsFingerprint": { "message": "Fók ujjnyomat kifejezés", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "fingerprintEnsureIntegrityVerify": { "message": "A titkosítási kulcs integritásának biztosítása érdekében ellenőrizzük a felhasználói ujjlenyomat kifejezést a folytatás előtt.", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "dontAskFingerprintAgain": { "message": "Soha ne kérje a meghívottak ujjlenyomat kifejezésének ellenőrzését (nem ajánlott)", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "free": { "message": "Ingyenes", "description": "Free, as in 'Free beer'" }, "apiKey": { "message": "API kulcs" }, "apiKeyDesc": { "message": "Az API kulcs használható a Bitwarden nyilvános API hitelesítéséhez." }, "apiKeyRotateDesc": { "message": "Az API kulcs forgatása érvényteleníti a korábbi kulcsot. Az API kulcs forgatható, ha a jelenlegi kulcs már nem tűnik biztonságosnak." }, "apiKeyWarning": { "message": "Az API kulcs teljes hozzáférést biztosít a szervezethez. Célszerű titokban tartani." }, "userApiKeyDesc": { "message": "Az API kulcs használható a Bitwarden CLI hitelesítéséhez." }, "userApiKeyWarning": { "message": "API kulcs alternatív hitelesítési mechanizmus. Célszerű titokban tartani." }, "oauth2ClientCredentials": { "message": "OAuth 2.0 ügyfél hitelesítések", "description": "'OAuth 2.0' is a programming protocol. It should probably not be translated." }, "viewApiKey": { "message": "API kulcs megtekintése" }, "rotateApiKey": { "message": "API kulcs forgatása" }, "selectOneCollection": { "message": "Legalább egy gyűjteményt ki kell választani." }, "couldNotChargeCardPayInvoice": { "message": "Nem lehet megterhelni a kártyát. Nézzük át és fizessük ki az alább felsorolt kifizetés nélküli számlát." }, "inAppPurchase": { "message": "Alkalmazáson belüli vásárlás" }, "cannotPerformInAppPurchase": { "message": "Nem hajtható végre ez a művelet az alkalmazáson belüli vásárlás fizetési módjának használatával." }, "manageSubscriptionFromStore": { "message": "Az előfizetés annál az üzletnél kell kezelni, ahol az alkalmazáson belüli vásárlás történt." }, "minLength": { "message": "Minimális hossz" }, "clone": { "message": "Klónozás" }, "masterPassPolicyDesc": { "message": "A minimális követelmények beállítása a mesterjelszó hozzához." }, "twoStepLoginPolicyDesc": { "message": "A felhasználók számára kétlépcsős bejelentkezés szükséges a személyes fióknál." }, "twoStepLoginPolicyWarning": { "message": "A személyes fióknál a kétlépcsős bejelentkezéssel nem rendelkező szervezet tagok eltávolításra kerülnek a szervezetből és a változásról értesítő emailt kapnak." }, "twoStepLoginPolicyUserWarning": { "message": "Egy szervezet tag számára szükséges a személyes fióknál a kétlépcsős bejelentkezés. Az összes kétlépcsős szolgáltató letiltása esetén az összes ilyen szervezetből eltávolításra kerül a tag." }, "passwordGeneratorPolicyDesc": { "message": "A minimális követelmények beállítása a jelszó generáló konfigurációhoz." }, "passwordGeneratorPolicyInEffect": { "message": "Egy vagy több szervezeti szabály érinti a generátor beállításokat." }, "masterPasswordPolicyInEffect": { "message": "Egy vagy több szervezeti szabály előírja a mesterjelszóhoz a következő követelményeket:" }, "policyInEffectMinComplexity": { "message": "Minimális összetettségi pontszám $SCORE$ értékhez", "placeholders": { "score": { "content": "$1", "example": "4" } } }, "policyInEffectMinLength": { "message": "Minimális hossz $LENGTH$ értékből", "placeholders": { "length": { "content": "$1", "example": "14" } } }, "policyInEffectUppercase": { "message": "Egy vagy több nagybetűs karaktert tartalmaz" }, "policyInEffectLowercase": { "message": "Egy vagy több kisbetűs karaktert tartalmaz" }, "policyInEffectNumbers": { "message": "Egy vagy több számot tartalmaz" }, "policyInEffectSpecial": { "message": "$CHARS$ speciális karakterekből egyet vagy többet tartalmaz", "placeholders": { "chars": { "content": "$1", "example": "!@#$%^&*" } } }, "masterPasswordPolicyRequirementsNotMet": { "message": "Az új mesterjelszó nem felel meg a szabály követelményeknek." }, "minimumNumberOfWords": { "message": "Szavak minimális száma" }, "defaultType": { "message": "Alapértelmezett típus" }, "userPreference": { "message": "Felhasználói előbeállítás" }, "vaultTimeoutAction": { "message": "Széf időkifutás művelet" }, "vaultTimeoutActionLockDesc": { "message": "Egy zárolt széfnél újra meg kell adni a mesterjelszót az ismételt hozzáféréshez." }, "vaultTimeoutActionLogOutDesc": { "message": "A lezárt széfnél szükséges az újra hitelesítés az ismételt eléréshez." }, "lock": { "message": "Lezárás", "description": "Verb form: to make secure or inaccesible by" }, "trash": { "message": "Lomtár", "description": "Noun: A special folder for holding deleted items that have not yet been permanently deleted" }, "searchTrash": { "message": "Keresés a lomtárban" }, "permanentlyDelete": { "message": "Végleges törlés" }, "permanentlyDeleteSelected": { "message": "A kiválasztottak végleges törlése" }, "permanentlyDeleteItem": { "message": "Az elem végleges törlése" }, "permanentlyDeleteItemConfirmation": { "message": "Biztosan véglegesen törlésre kerüljön ez az elem?" }, "permanentlyDeletedItem": { "message": "Elem végleges törlése" }, "permanentlyDeletedItems": { "message": "Elemek végleges törlése" }, "permanentlyDeleteSelectedItemsDesc": { "message": "$COUNT$ elem lett kiválasztva végleges törlésre. Biztosan végleges törlésre kerüljön az összes elem?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "permanentlyDeletedItemId": { "message": "$ID$ elem véglegesen törlésre került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "restore": { "message": "Visszaállítás" }, "restoreSelected": { "message": "Kiválasztottak visszaállítása" }, "restoreItem": { "message": "Elem visszaállítása" }, "restoredItem": { "message": "Visszaállított elem" }, "restoredItems": { "message": "Visszaállított elemek" }, "restoreItemConfirmation": { "message": "Biztosan visszaállításra kerüljön ez az elem?" }, "restoreItems": { "message": "Elemek visszaállítása" }, "restoreSelectedItemsDesc": { "message": "$COUNT$ elem lett kiválasztva visszaállításra. Biztosan visszaállításra kerüljön az összes elem?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "restoredItemId": { "message": "$ID$ azonosítójú elem visszaállításra került.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "vaultTimeoutLogOutConfirmation": { "message": "Kijelentkezve az összes széf elérés eltávolításra kerül és webes hitelesítésre van szükség az időkifutás után. Biztosan szeretnénk használni ezt a beállítást?" }, "vaultTimeoutLogOutConfirmationTitle": { "message": "Időkifutás művelet megerősítés" }, "hidePasswords": { "message": "Jelszavak elrejtése" }, "countryPostalCodeRequiredDesc": { "message": "Ez az információ csak adószámításhoz és pénzügyi jelentéshez szükséges." }, "includeVAT": { "message": "ÁFA/GST információval (opcionális)" }, "taxIdNumber": { "message": "ÁFA/GST adó azonosító" }, "taxInfoUpdated": { "message": "Az adóinformáció frissítésre került." }, "setMasterPassword": { "message": "Mesterjelszó beállítása" }, "ssoCompleteRegistration": { "message": "Az SSO-val történő bejelentkezés befejezéséhez mesterjelszót kell beállítani a széf eléréséhez és védelméhez." }, "identifier": { "message": "Azonosító" }, "organizationIdentifier": { "message": "Szervezeti azonosító" }, "ssoLogInWithOrgIdentifier": { "message": "Bejelentkezés a szervezeti önálló portálba. A kezdéshez meg kell adni a szervezeti azonosítót." }, "enterpriseSingleSignOn": { "message": "Vállalati önálló bejelentkezés" }, "ssoHandOff": { "message": "Bezárható ez a fül és folytatás a bővítményben." }, "includeAllTeamsFeatures": { "message": "Összes Csapat funkció, továbbá:" }, "includeSsoAuthentication": { "message": "SSO hitelesítés SAML2.0 és OpenID Connect kapcsolaton keresztül" }, "includeEnterprisePolicies": { "message": "Vállalati rendszabályok" }, "ssoValidationFailed": { "message": "SSO érvényesítési mező" }, "ssoIdentifierRequired": { "message": "A szervezeti azonosító megadása szükséges." }, "unlinkSso": { "message": "SSO szétkapcsolása" }, "unlinkSsoConfirmation": { "message": "Biztosan szeretnénk az SSO leválasztását ennél a szervezetnél?" }, "linkSso": { "message": "SSO csatolása" }, "singleOrg": { "message": "Önálló szervezet" }, "singleOrgDesc": { "message": "Korlátozza a felhasználókat más szervezetekhez csatlakozásban." }, "singleOrgBlockCreateMessage": { "message": "Jelenlegi szervezetének van olyan irányelve, amely nem engedélyezi, hogy több szervezethez csatlakozzunk. Lépjünk kapcsolatba szervezetünk adminisztrátorával vagy regisztráljunk egy másik Bitwarden fiókból." }, "singleOrgPolicyWarning": { "message": "A szervezet azon tagjait, akik nem tulajdonosok vagy rendszergazdák, és már egy másik szervezet tagjai, eltávolítjáara kerülnek a szervezetből." }, "requireSso": { "message": "Egyszeri bejelentkezés hitelesítése" }, "requireSsoPolicyDesc": { "message": "A felhasználóknál az Vállalati egyszeri vejelentkezés hitelesítési mód megkövetelése." }, "prerequisite": { "message": "Előfeltétel" }, "requireSsoPolicyReq": { "message": "Az irányelv bekapcsolása előtt engedélyezni kell az Önálló szervezet vállalati irányelvét." }, "requireSsoPolicyReqError": { "message": "Az Önálló szervezet irányelv nem engedélyezett." }, "requireSsoExemption": { "message": "A szervezet tulajdonosai és adminisztrátorai mentesülnek az irányelv végrehajtása alól." }, "sendTypeFile": { "message": "Fájl" }, "sendTypeText": { "message": "Szöveg" }, "createSend": { "message": "Új küldés létrehozása", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "editSend": { "message": "Küldés szerkesztése", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "createdSend": { "message": "A küldés létrejött.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "editedSend": { "message": "A küldés szerkesztésre került.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deletedSend": { "message": "A küldés törlésre került.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deleteSend": { "message": "Küldés törlése", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deleteSendConfirmation": { "message": "Biztosan törlésre kerüljön ez a küldés?", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "whatTypeOfSend": { "message": "Milyen típusú ez a küldés?", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deletionDate": { "message": "Törlési dátum" }, "deletionDateDesc": { "message": "A Send véglegesen törölve lesz a meghatározott időpontban.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "expirationDate": { "message": "Lejárati dátum" }, "expirationDateDesc": { "message": "Amennyiben be van állítva, a hozzáférés ehhez a Küldéshez lejár a meghatározott időpontban.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "maxAccessCount": { "message": "Maximális elérési szám" }, "maxAccessCountDesc": { "message": "Amennyiben be van állítva, a Send elérhetetlen lesz, amint elérik a meghatározott hozzáférések számát.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "currentAccessCount": { "message": "Aktuális elérési szám" }, "sendPasswordDesc": { "message": "Opcionálissan egy jelszó kérhető a felhasználóktól a Küldés eléréséhez.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendNotesDesc": { "message": "Személyes megjegyzések erről a Küldésről.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "disabled": { "message": "Letiltva" }, "sendLink": { "message": "Send hivatkozás", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "copySendLink": { "message": "Hivatkozás küldés másolása", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "removePassword": { "message": "Jelszó eltávolítása" }, "removedPassword": { "message": "A jelszó eltávolításra került." }, "removePasswordConfirmation": { "message": "Biztosan eltávolításra kerüljön ez a jelszó?" }, "hideEmail": { "message": "Saját email cím elrejtése a címzettek elől." }, "disableThisSend": { "message": "A Küldés letiltásával mindenki hozzáférése megvonható.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "allSends": { "message": "Összes küldés" }, "maxAccessCountReached": { "message": "A maximális hozzáférések száma elérésre került.", "description": "This text will be displayed after a Send has been accessed the maximum amount of times." }, "pendingDeletion": { "message": "Függőben lévő törlés" }, "expired": { "message": "Lejárt" }, "searchSends": { "message": "Küldés keresése", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendProtectedPassword": { "message": "A küldés jelszóval védett. A folytatáshoz lentebb meg kell adni a jelszót.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendProtectedPasswordDontKnow": { "message": "Nem ismerjük a jelszót? Kérdezzünk rá a küldőnél a küldés elérésére szükséges jelszóért.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendHiddenByDefault": { "message": "Ez a küldés alapértelmezésben rejtett. Az alábbi gombbal átváltható a láthatósága.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "downloadFile": { "message": "Fájl letöltése" }, "sendAccessUnavailable": { "message": "Az elérendő küldés nem létezik vagy már nem elérhető.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "missingSendFile": { "message": "A Küldéshez társított fájl nem található.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "noSendsInList": { "message": "A listában nincs küldés.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "emergencyAccess": { "message": "Sürgősségi hozzáférés" }, "emergencyAccessDesc": { "message": "Sürgősségi hozzáférés kezelése és megadása megbízható kapcsolatoknak. A megbízható kapcsolatok sürgősségi helyzet esetén hozzáférést kérhetnek a fiókhoz vagy átvehetik azt. További információkat a funkció működésével kapcsolatban a súgó oldalon találhatunk." }, "emergencyAccessOwnerWarning": { "message": "Jelnleg egy vagy több szervezet tulajdonosa vagyunk. Ha átvételi hozzáférést adunk egy vészhelyzeti kapcsolattartónak, akkor az átvételt követően tulajdonosként használhatják az összes engedélyt." }, "trustedEmergencyContacts": { "message": "Megbízható sürgősségi kapcsolatok" }, "noTrustedContacts": { "message": "Még nem adták hozzá sürgősségi kapcsolatokat, hívjunk meg megbízható kapcsolatokat az induláshoz." }, "addEmergencyContact": { "message": "Sürgősségi kapcsolat hozzáadása" }, "designatedEmergencyContacts": { "message": "Sürgősségi kapcsolatnak kinevezve" }, "noGrantedAccess": { "message": "Még senki nem nevezett ki sürgősségi kapcsolatként." }, "inviteEmergencyContact": { "message": "Sürgősségi kapcsolat meghívása" }, "editEmergencyContact": { "message": "Sürgősségi kapcsolat szerkesztése" }, "inviteEmergencyContactDesc": { "message": "Új felhasználó meghívása sürgősségi kapcsolatként a Bitwarden fiók email címének megadásával. Ha még nem rendelkezik Bitwarden-fiókkal, felkérjük új fiók létrehozására." }, "emergencyAccessRecoveryInitiated": { "message": "A sürgősségi hozzáférés kezdeményezésre került." }, "emergencyAccessRecoveryApproved": { "message": "A sürgősségi hozzáférés jóváhagyásra került." }, "viewDesc": { "message": "A széf valamennyi elemét láthatja." }, "takeover": { "message": "Átvétel" }, "takeoverDesc": { "message": "Visszaállíthatja a fiók egy új mesterjelszóval." }, "waitTime": { "message": "Várakozási idő" }, "waitTimeDesc": { "message": "Szükséges idő az automatikus hozzáférés megadásáig." }, "oneDay": { "message": "1 nap" }, "days": { "message": "$DAYS$ nap", "placeholders": { "days": { "content": "$1", "example": "1" } } }, "invitedUser": { "message": "Meghívott felhasználó." }, "acceptEmergencyAccess": { "message": "Meghívást érkezett a fenti személytől sürgősségi kapcsolat tekintetében. A meghívás elfogadásához be kell jelentkezni vagy új Bitwarden fiókot kell létrehozni." }, "emergencyInviteAcceptFailed": { "message": "A meghívást nem lehet elfogadni. Kérjük meg a felhasználót új meghívó elküldésére." }, "emergencyInviteAcceptFailedShort": { "message": "A meghívást nem lehet elfogadni. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must enable 2FA on your user account before you can join this organization." } } }, "emergencyInviteAcceptedDesc": { "message": "A felhasználó vészhelyzeti beállításai az azonosítás megerősítése után érhető el. Egy email kerül kiküldésre, ha ez megtörténik." }, "requestAccess": { "message": "Hozzáférés kérése" }, "requestAccessConfirmation": { "message": "Biztosan sürgősségi hozzáférést szeretnénk kérni? Hozzáférést kapunk $WAITTIME$ nap múlva vagy amikor a felhasználó manuálisan jóváhagyja a kérést.", "placeholders": { "waittime": { "content": "$1", "example": "1" } } }, "requestSent": { "message": "Sürgősségi hozzáférést kértek $USER$ részére. Emailben értesítés érkezik, ha lehetséges a folytatás.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "approve": { "message": "Jóváhagyás" }, "reject": { "message": "Elutasítás" }, "approveAccessConfirmation": { "message": "Biztosan jóváhagyásra kerüljön a sürgősségi hozzáférés? Ez lehetővé teszi, hogy $USER$ számára $ACTION$ végrehajtására a fiókban.", "placeholders": { "user": { "content": "$1", "example": "John Smith" }, "action": { "content": "$2", "example": "View" } } }, "emergencyApproved": { "message": "A vészhelyzeti hozzáférés jóváhagyásra került." }, "emergencyRejected": { "message": "A vészhelyzeti hozzáférés elutasításra került." }, "passwordResetFor": { "message": "A jelszó alaphelyzetbe került $USER$ részére. Most az új jelszóval lehet bejelentkezni.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "personalOwnership": { "message": "Személyes tulajdon" }, "personalOwnershipPolicyDesc": { "message": "A személyes tulajdon opciójának eltávolításával megkövetelhetjük a felhasználóktól, hogy széfelemeket mentsenek a egy szervezethez." }, "personalOwnershipExemption": { "message": "A szervezet tulajdonosai és adminisztrátorai mentesek az irányelv végrehajtása alól." }, "personalOwnershipSubmitError": { "message": "Egy vállalati házirend miatt korlátozásra került az elemek személyes tárolóba történő mentése. Módosítsuk a Tulajdon opciót egy szervezetre és válasszunk az elérhető gyűjtemények közül." }, "disableSend": { "message": "Küdlés letiltása" }, "disableSendPolicyDesc": { "message": "Ne engedjük a felhasználóknak a Bitwarden Küldés létrehozását vagy szerkesztését. A meglévő küldés törlése továbbra is megengedett.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "disableSendExemption": { "message": "A szervezet házirendjét kezeő szervezeti felhasználók, mentesülnek az irányelvek végrehajtása alól." }, "sendDisabled": { "message": "A küldés kikapcsolásra került", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendDisabledWarning": { "message": "A vállalati házirend miatt csak egy meglévő Küldés törölhető.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptions": { "message": "Send opciók", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsPolicyDesc": { "message": "Opciók beállítása Send elem létrehozásához és szerkesztéséhez.", "description": "'Sends' is a plural noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsExemption": { "message": "A szervezet házirendjét kezelő szervezeti felhasználók mentesülnek az irányelvek végrehajtása alól." }, "disableHideEmail": { "message": "Ne engedjük, hogy a felhasználók elrejtsék email címüket a címzettek elől a Send elem létrehozása vagy szerkesztése során.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsPolicyInEffect": { "message": "A következő szervezeti irányelvek vannak érvényben:" }, "sendDisableHideEmailInEffect": { "message": "A felhasználók nem rejthetik el email címüket a címzettek elől egy Send elem létrehozásakor vagy szerkesztésekor.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "modifiedPolicyId": { "message": "$ID$ szabály módosításra került.", "placeholders": { "id": { "content": "$1", "example": "Master Password" } } }, "planPrice": { "message": "Csomagár" }, "estimatedTax": { "message": "Becsült adó" }, "custom": { "message": "Egyedi" }, "customDesc": { "message": "A fejlett konfigurációk felhasználói engedélyeinek részletesebb ellenőrzését teszi lehetővé." }, "permissions": { "message": "Jogosultságok" }, "accessEventLogs": { "message": "Eseménynapló elérése" }, "accessImportExport": { "message": "Exportálás/importálás elérése" }, "accessReports": { "message": "Elérési jelentések" }, "missingPermissions": { "message": "Nincs megfelelő jogosultság a művelet végrehajtásához." }, "manageAllCollections": { "message": "Összes gyűjtemény kezelése" }, "createNewCollections": { "message": "Új gyűjtemények létrehozása" }, "editAnyCollection": { "message": "Bármely gyűjtemény szerkesztése" }, "deleteAnyCollection": { "message": "Bármely gyűjtemény törlése" }, "manageAssignedCollections": { "message": "Hozzárendelt gyűjtemények kezelése" }, "editAssignedCollections": { "message": "Hozzárendelt gyűjtemények szerkesztése" }, "deleteAssignedCollections": { "message": "Hozzárendelt gyűjtemények törlése" }, "manageGroups": { "message": "Csoportok kezelése" }, "managePolicies": { "message": "Szabályok kezelése" }, "manageSso": { "message": "SSO kezelése" }, "manageUsers": { "message": "Felhasználók kezelése" }, "manageResetPassword": { "message": "Jelszó alaphelyzet kezelés" }, "disableRequiredError": { "message": "A szabály letiltása előtt manuálisan le kell tiltani $POLICYNAME$ házirendet.", "placeholders": { "policyName": { "content": "$1", "example": "Single Sign-On Authentication" } } }, "personalOwnershipPolicyInEffect": { "message": "A szervezeti házirend befolyásolja a tulajdonosi opciókat." }, "personalOwnershipPolicyInEffectImports": { "message": "Egy szervezeti házirend letiltotta az elemek személyes tárolóba történő importálását." }, "personalOwnershipCheckboxDesc": { "message": "A szervezeti felhasználók személyes tulajdon letiltása" }, "textHiddenByDefault": { "message": "A Küldés elérésekor alapértelmezés szerint a szöveg elrejtése", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendNameDesc": { "message": "Barátságos név a Küldés leírására.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendTextDesc": { "message": "A küldendő szöveg." }, "sendFileDesc": { "message": "A küldendő fájl." }, "copySendLinkOnSave": { "message": "A hivatkozás másolása a Küldés megosztásához a vágólapra mentéskor." }, "sendLinkLabel": { "message": "Hivatkozás küldése", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "send": { "message": "Küldés", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendAccessTaglineProductDesc": { "message": "A Bitwarden Küldés könnyen és biztonságosan továbbítja az érzékeny, ideiglenes információkat másoknak.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendAccessTaglineLearnMore": { "message": "Bővebben erről", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more about** Bitwarden Send or sign up to try it today.'" }, "sendVaultCardProductDesc": { "message": "Szöveg és fájlok közvetlen megosztása bárkivel." }, "sendVaultCardLearnMore": { "message": "További információ", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more**, see how it works, or try it now. '" }, "sendVaultCardSee": { "message": "nézzük", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, **see** how it works, or try it now.'" }, "sendVaultCardHowItWorks": { "message": "Hogyan működik?", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see **how it works**, or try it now.'" }, "sendVaultCardOr": { "message": "vagy", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, **or** try it now.'" }, "sendVaultCardTryItNow": { "message": "próbáljuk ki most", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, or **try it now**.'" }, "sendAccessTaglineOr": { "message": "vagy", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send **or** sign up to try it today.'" }, "sendAccessTaglineSignUp": { "message": "regisztráció", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or **sign up** to try it today.'" }, "sendAccessTaglineTryToday": { "message": "próbáljuk ki még ma.", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or sign up to **try it today.**'" }, "sendCreatorIdentifier": { "message": "$USER_IDENTIFIER$ Bitwarden felhasználó megosztotta a következőket", "placeholders": { "user_identifier": { "content": "$1", "example": "An email address" } } }, "viewSendHiddenEmailWarning": { "message": "Az ezt a Send elemet létrehozó Bitwarden felhasználó úgy döntött, hogy elrejti email címét. Mielőtt felhasználnánk vagy letöltenénk a tartalmát, ellenőrizzük a hivatkozás megbízhatóságát.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "expirationDateIsInvalid": { "message": "A megadott lejárati idő nem érvényes." }, "deletionDateIsInvalid": { "message": "A megadot törlési dátum nem érvényes." }, "expirationDateAndTimeRequired": { "message": "Lejárati dátum és idő megadása szükséges." }, "deletionDateAndTimeRequired": { "message": "Törlési dátum és idő megadása szükséges." }, "dateParsingError": { "message": "Hiba történt a törlés és a lejárati dátum mentésekor." }, "webAuthnFallbackMsg": { "message": "A 2FA ellenőrzéséhez kattintsunk az alábbi gombra." }, "webAuthnAuthenticate": { "message": "WebAutn hitelesítés" }, "webAuthnNotSupported": { "message": "Ezen a böngészőn a WebAuthn nem támogatott." }, "webAuthnSuccess": { "message": "A WebAuthn sikeresen ellenőrzésre került.! A fül már bezárható." }, "hintEqualsPassword": { "message": "A jelszavas tipp nem lehet azonos a jelszóval." }, "enrollPasswordReset": { "message": "Bejelentkezés a Jelszó alaphelyzetbe állításba" }, "enrolledPasswordReset": { "message": "A bejelentkezés megtörtént a Jelszó alaphelyzetbe állításba" }, "withdrawPasswordReset": { "message": "Kijelentkezés a Jelszó alaphelyzetbe állításból" }, "enrollPasswordResetSuccess": { "message": "A bejelentkezés sikeres." }, "withdrawPasswordResetSuccess": { "message": "A kijelentkezés sikeres." }, "eventEnrollPasswordReset": { "message": "$ID$ felhasználó bejelentkezett a jelszó alaphelyzetbe állítás támogatáshoz.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventWithdrawPasswordReset": { "message": "$ID$ felhasználó kijelentkezett a jelszó alaphelyzetbe állítás támogatásból.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventAdminPasswordReset": { "message": "A mesterjelszó alaphelyzetbe került $ID$ felhasználónál.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventResetSsoLink": { "message": "Sso hivatkozás visszaállítása $ID$ felhasználónál", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "firstSsoLogin": { "message": "$ID$ első alkalommal jelentkezett be Sso szolgáltatássl.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "resetPassword": { "message": "Jelszó visszaállítása" }, "resetPasswordLoggedOutWarning": { "message": "A folytatással $NAME$ kijelentkezik az aktuális munkamenetből és újra be kell jelentkeznie. A más eszközökön végzett aktív munkamenetek akár egy órán keresztül is aktívak maradhatnak.", "placeholders": { "name": { "content": "$1", "example": "John Smith" } } }, "thisUser": { "message": "ez a felhasználó" }, "resetPasswordMasterPasswordPolicyInEffect": { "message": "Egy vagy több szervezeti rendszabályhoz mesterjelszó szükséges a következő követelmények megfeleléséhez:" }, "resetPasswordSuccess": { "message": "A jelszó alaphelyzetbe állítása sikeres volt." }, "resetPasswordEnrollmentWarning": { "message": "A regisztráció lehetővé teszi a szervezet adminisztrátorainak a saját mesterjelszó megváltoztatását. Biztosan feliratkozunk?" }, "resetPasswordPolicy": { "message": "Mesterjelszó alaphelyzetbe állítás" }, "resetPasswordPolicyDescription": { "message": "A szervezet adminisztrátorai alaphelyzetbe állíthatják a szervezet mesterjelszavát." }, "resetPasswordPolicyWarning": { "message": "A szervezet felhasználóinak regisztrálniuk kell magukat vagy automatikus regisztrálás szükséges mielőtt az adminisztrátorok alaphelyzetbe állíthatják a mesterjelszavukat." }, "resetPasswordPolicyAutoEnroll": { "message": "Automatikus regisztráció" }, "resetPasswordPolicyAutoEnrollDescription": { "message": "A meghívó elfogadását követően minden felhasználó automatikusan regisztrálásra kerül a jelszó alaphelyzetbe állításnál." }, "resetPasswordPolicyAutoEnrollWarning": { "message": "A szervezetben már szereplő felhasználók nem kerülnek visszamenőleg regisztrálva a jelszó alaphelyzetbe állításnál. Regisztráln kell magunkat, mielőtt az adminisztrátorok alaphelyzetbe állíthatják a mesterjelszavukat." }, "resetPasswordPolicyAutoEnrollCheckbox": { "message": "Új felhasználók automatikus regisztrálása" }, "resetPasswordAutoEnrollInviteWarning": { "message": "Ennek a szervezetnek van egy vállalati házirendje, amely automatikusan regisztrál a jelszó alaphelyzetbe állítására. A regisztráció lehetővé teszi a szervezet adminisztrátorainak a mesterjelszó megváltoztatását." }, "resetPasswordOrgKeysError": { "message": "A szervezeti kulcs válasza null" }, "resetPasswordDetailsError": { "message": "A jelszó alaphelyzetbe állítás válasza null" }, "trashCleanupWarning": { "message": "A 30 napnál régebben lomtárba került elemek automatikusan törlésre kerülnek." }, "trashCleanupWarningSelfHosted": { "message": "A már jó ideje a lomtárban lévő elemek automatikusan törlésre kerülnek." }, "passwordPrompt": { "message": "Mesterjelszó ismételt megadás" }, "passwordConfirmation": { "message": "Mesterjelszó megerősítése" }, "passwordConfirmationDesc": { "message": "A művelet védett. A személyazonosság igazolásához adjuk meg ismét a mesterjelszót." }, "reinviteSelected": { "message": "Meghívó újraküldése" }, "noSelectedUsersApplicable": { "message": "Ez a művelet a kiválasztott felhasználók egyikére sem alkalmazható." }, "removeUsersWarning": { "message": "Biztosan eltávolításra kerüljenek a következő felhasználók? A folyamat néhány másodpercet vehet igénybe és nem szakítható meg vagy törölhető." }, "theme": { "message": "Téma" }, "themeDesc": { "message": "Válasszunk témát az internetes széfhez." }, "themeSystem": { "message": "Rendszertéma használata" }, "themeDark": { "message": "Sötét" }, "themeLight": { "message": "Világos" }, "confirmSelected": { "message": "Kiválasztás megerősítése" }, "bulkConfirmStatus": { "message": "Tömeges művelet állapot" }, "bulkConfirmMessage": { "message": "A megerősítés sikeres volt." }, "bulkReinviteMessage": { "message": "Az ismételt meghívás sikeres volt." }, "bulkRemovedMessage": { "message": "Az eltávolítás sikeres volt." }, "bulkFilteredMessage": { "message": "Kizárva, nem alkalmazható erre a műveletre." }, "fingerprint": { "message": "Ujjlenyomat" }, "removeUsers": { "message": "Felhasználók eltávolítása" }, "error": { "message": "Hiba" }, "resetPasswordManageUsers": { "message": "A felhasználók kezelését engedélyezni kell a Jelszó visszaállításának kezelése jogosultsággal is." }, "setupProvider": { "message": "Szolgáltató beállítása" }, "setupProviderLoginDesc": { "message": "Meghívás érkezett egy új szolgáltató beállítására. A folytatáshoz be kell jelentkezni vagy létre kell hozni egy új Bitwarden fiókot." }, "setupProviderDesc": { "message": "Adjuk meg az alábbi adatokat a szolgáltató beállításának befejezéséhez. Ha bármilyen kérdés van, forduljunk az Ügyfélszolgálathoz." }, "providerName": { "message": "Szolgáltató neve" }, "providerSetup": { "message": "A szolgáltató beüzemelésre került." }, "clients": { "message": "Ügyfelek" }, "providerAdmin": { "message": "Szolgáltató adminisztrátor" }, "providerAdminDesc": { "message": "Adjuk meg az alábbi adatokat a szolgáltató beállításának befejezéséhez. Ha bármilyen kérdés van, forduljunk az Ügyfélszolgálathoz." }, "serviceUser": { "message": "Szolgáltatás felhasználó" }, "serviceUserDesc": { "message": "A szolgáltatás felhasználói elérhetik és kezelhetik az összes ügyfélszervezetet." }, "providerInviteUserDesc": { "message": "Új felhasználó meghívása a szervezetéhez a Bitwarden fiók email címének megadásával. Ha még nem rendelkeznek Bitwarden fiókkal, felkérjük új fiók létrehozására." }, "joinProvider": { "message": "Csatlakozás szolgáltatóhoz" }, "joinProviderDesc": { "message": "Meghívást érkezett a fenti szervezethez csatlakozáshoz. A meghívás elfogadásához be kell jelentkezni vagy új Bitwarden fiókot kell létrehozni." }, "providerInviteAcceptFailed": { "message": "A meghívás nem fogadható el. Kérjük fel a szervezet adminisztrátorát új meghívó küldésére." }, "providerInviteAcceptedDesc": { "message": "A szervezet elérhető, amikor az adminisztrátor jóváhagyja a tagságot. Amint ez megtörténik, értesítő email érkezik." }, "providerUsersNeedConfirmed": { "message": "Vannak olyan felhasználók, akik elfogadták a meghívást, de ezt még meg kell erősíteni. A felhasználók csak a megerősítésük után férhetnek hozzá a szervezethez." }, "provider": { "message": "Szolgáltató" }, "newClientOrganization": { "message": "Új ügyfél szervezet" }, "newClientOrganizationDesc": { "message": "Egy új ügyfélszervezet létrehozása társított szolgáltatásként. Lehetőség lesz a szervezet elérésére és kezelésére." }, "addExistingOrganization": { "message": "Létező fordítások hozzáadása" }, "myProvider": { "message": "Saját szolgáltató" }, "addOrganizationConfirmation": { "message": "Biztosan hozzá szeretnénk adni $ORGANIZATION$ szervezetet ügyfélként $PROVIDER$ szolgáltatáshoz?", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" }, "provider": { "content": "$2", "example": "My Provider Name" } } }, "organizationJoinedProvider": { "message": "A szervezet sikeresen hozzáadásra került a szolgáltatóhoz" }, "accessingUsingProvider": { "message": "Hozzáférés a szervezethez $PROVIDER$ szolgáltató használatával", "placeholders": { "provider": { "content": "$1", "example": "My Provider Name" } } }, "providerIsDisabled": { "message": "A szolgáltató letiltásra került." }, "providerUpdated": { "message": "A szolgáltató frissítésre került." }, "yourProviderIs": { "message": "A szolgáltató $PROVIDER$. Rendszergazdai és számlázási jogosultságokkal rendelkeznek a szervezet számára.", "placeholders": { "provider": { "content": "$1", "example": "My Provider Name" } } }, "detachedOrganization": { "message": "$ORGANIZATION$ szervezet leválasztásra került a szolgáltatótól.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "detachOrganizationConfirmation": { "message": "Biztosan leválasztjuk ezt a szervezetet? A szervezet továbbra is fennáll, de már nem a szolgáltató kezeli." }, "add": { "message": "Hozzáadás" }, "updatedMasterPassword": { "message": "A mesterjelszó frissítésre került." }, "updateMasterPassword": { "message": "Mesterjelszó frissítése" }, "updateMasterPasswordWarning": { "message": "A mesterjelszót nemrégiben megváltoztatta a szervezet rendszergazdája. A tároló eléréséhez most frissíteni kell a mesterjelszót. A folytatás kijelentkeztet az aktuális munkamenetből és újra be kell jelentkezni. A más eszközökön végzett aktív munkamenetek akár egy órán keresztül is aktívak maradhatnak." }, "masterPasswordInvalidWarning": { "message": "A mesterjelszó nem felel meg a szervezet rendszabályainak. A szervezet eléréséhez most frissíteni kell a mesterjelszót. Továbblépéskor kijelentkezés történik a jelenlegi munkamenetből és újra be kell jelentkezni. Ha van aktív munkamenet más eszközön, az még legfeljebb egy óráig aktív maradhat." }, "maximumVaultTimeout": { "message": "Széf időkifutás" }, "maximumVaultTimeoutDesc": { "message": "Állítsunk be maximális széf időtúllépést minden felhasználó számára." }, "maximumVaultTimeoutLabel": { "message": "Maximális széf időkifutás" }, "invalidMaximumVaultTimeout": { "message": "A maximális széf időkifutás érvénytelen." }, "hours": { "message": "Óra" }, "minutes": { "message": "Perc" }, "vaultTimeoutPolicyInEffect": { "message": "A szervezeti házirendek hatással vannak a széf időkorlátjára. A széf időkorlátja legfeljebb $HOURS$ óra és $MINUTES$ perc lehet.", "placeholders": { "hours": { "content": "$1", "example": "5" }, "minutes": { "content": "$2", "example": "5" } } }, "customVaultTimeout": { "message": "Egyedi széf időkifutás" }, "vaultTimeoutToLarge": { "message": "A széf időkorlátja túllépi a szervezet által beállított korlátozást." }, "disablePersonalVaultExport": { "message": "A személyes széf exportálás nem engedélyezett." }, "disablePersonalVaultExportDesc": { "message": "Biztosan leválasztjuk ezt a szervezetet? A szervezet továbbra is fennáll, de már nem a szolgáltató kezeli." }, "vaultExportDisabled": { "message": "A széf exportálás nem engedélyezett." }, "personalVaultExportPolicyInEffect": { "message": "Egy vagy több szervezeti házirend tiltja a személyes széf exportálását." }, "selectType": { "message": "SSO típus választás" }, "type": { "message": "Típus" }, "openIdConnectConfig": { "message": "OpenID kapcsolat konfiguráció" }, "samlSpConfig": { "message": "SAML szolgáltató konfiguráció" }, "samlIdpConfig": { "message": "SAML azonosítási szolgáltató konfiguráció" }, "callbackPath": { "message": "Tartalék útvonal" }, "signedOutCallbackPath": { "message": "Kijelentkezett tartalék útvonal" }, "authority": { "message": "Hitelesítés" }, "clientId": { "message": "Ügyfél AZ" }, "clientSecret": { "message": "Titkos ügyfélkód" }, "metadataAddress": { "message": "Metaadat cím" }, "oidcRedirectBehavior": { "message": "OIDC átirányítási viselkedés" }, "getClaimsFromUserInfoEndpoint": { "message": "Követelések lekérése a felhasználói adatok végpontjáról" }, "additionalScopes": { "message": "További/egyedi hatókörök (vesszővel elválasztva)" }, "additionalUserIdClaimTypes": { "message": "További/egyedi felhasználó AZ követelések (vesszővel elválasztva)" }, "additionalEmailClaimTypes": { "message": "További/egyedi email követelés típusok (vesszővel elválasztva)" }, "additionalNameClaimTypes": { "message": "További/egyedi név követelés típusok (vesszővel elválasztva)" }, "acrValues": { "message": "Kért hitelesítési kontextusosztály referenciaértékek (acr_values)" }, "expectedReturnAcrValue": { "message": "Elvárt „acr” követelésérték a válaszban (acr érvényesítés)" }, "spEntityId": { "message": "SP Szervezet AZ" }, "spMetadataUrl": { "message": "SAML 2.0 metaadat webcím" }, "spAcsUrl": { "message": "Az Assertion Consumer Service (ACS) webcíme" }, "spNameIdFormat": { "message": "Név AZ formátum" }, "spOutboundSigningAlgorithm": { "message": "Kimenő aláírási algoritmus" }, "spSigningBehavior": { "message": "Aláírási viselkedés" }, "spMinIncomingSigningAlgorithm": { "message": "Minimális bejövő aláírási algoritmus" }, "spWantAssertionsSigned": { "message": "Állításokat szeretnének aláírni" }, "spValidateCertificates": { "message": "Tanúsítványok ellenőrzése" }, "idpEntityId": { "message": "Szervezeti ID" }, "idpBindingType": { "message": "Kötés típusa" }, "idpSingleSignOnServiceUrl": { "message": "Egyszeri bejelentkezési szolgáltatás webcíme" }, "idpSingleLogoutServiceUrl": { "message": "Egyszeri kijelentkezés szolgáltatás webcíme" }, "idpX509PublicCert": { "message": "X509 Nyilvános tanúsítvány" }, "idpOutboundSigningAlgorithm": { "message": "Kimenő aláírási algoritmus" }, "idpAllowUnsolicitedAuthnResponse": { "message": "Kéretlen hitelesítési válasz engedélyezése" }, "idpAllowOutboundLogoutRequests": { "message": "Kimenü kijelentkezési kérések engedélyezése" }, "idpSignAuthenticationRequests": { "message": "Hitelesítési kérések aláírása" }, "ssoSettingsSaved": { "message": "Az egyszeri bejelentkezés konfigurációja mentésre került." }, "sponsoredFamilies": { "message": "Díjmentes Bitwarden családi csomag" }, "sponsoredFamiliesEligible": { "message": "A felhasználó és családja jogosult az ingyenes Bitwarden családok programra. Váltsuk ezt be személyes email címmel, hogy az adatok biztonságban legyenek még akkor is, amikor éppen nem dolgozunk." }, "sponsoredFamiliesEligibleCard": { "message": "Váltsuk be ingyenes Bitwarden családoknak előfizetést még ma, hogy az adatok biztonságban legyenek, még akkor is, amikor éppen nem dolgozunk." }, "sponsoredFamiliesInclude": { "message": "A Bitwarden családoknak csomag tartalmazza:" }, "sponsoredFamiliesPremiumAccess": { "message": "Prémium hozzáférés legfeljebb 6 felhasználónak" }, "sponsoredFamiliesSharedCollections": { "message": "Megosztott gyűjtemények a családi titkoknak" }, "badToken": { "message": "A link már nem érvényes. Kérje szponzorától az ajánlat újraküldését." }, "reclaimedFreePlan": { "message": "Visszaállás díjmentes csomagra" }, "redeem": { "message": "Beváltás" }, "sponsoredFamiliesSelectOffer": { "message": "Válasszuk ki a szponzorálni kívánt szervezetet." }, "familiesSponsoringOrgSelect": { "message": "Melyik ingyenes családi ajánlatot szeretné beváltani?" }, "sponsoredFamiliesEmail": { "message": "A Bitwarden családok beváltásához adjuk meg a személyes email címünket." }, "sponsoredFamiliesLeaveCopy": { "message": "Ha kilépünk ebből a szervezetből vagy eltávolítás történik, a Családi csomag a számlázási időszak végén lejár." }, "acceptBitwardenFamiliesHelp": { "message": "Meglévő szervezet ajánlatának elfogadása vagy új Családi szervezet létrehozása." }, "setupSponsoredFamiliesLoginDesc": { "message": "Ingyenes Bitwarden Családi csomag szervezetet ajánlottak fel. A folytatáshoz be kell jelentkezni az ajánlatot fogadó fiókba." }, "sponsoredFamiliesAcceptFailed": { "message": "Nem sikerült elfogadni az ajánlatot. Küldjük el ismét az ajánlati emailt a vállalati fiókból és próbáljuk újra." }, "sponsoredFamiliesAcceptFailedShort": { "message": "Az ajánlatot nem lehet elfogadni. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must have at least one existing Families Organization." } } }, "sponsoredFamiliesOffer": { "message": "Az ingyenes Bitwarden Családi csomag elfogadása" }, "sponsoredFamiliesOfferRedeemed": { "message": "Az ingyenes Bitwarden családi szervezet ajánlat beváltásra került." }, "redeemed": { "message": "Beváltva" }, "redeemedAccount": { "message": "Beváltott fiók" }, "revokeAccount": { "message": "$NAME$ fiók visszavonása", "placeholders": { "name": { "content": "$1", "example": "My Sponsorship Name" } } }, "resendEmailLabel": { "message": "Szponzorálási email ismételt elküldése $NAME$ szponzorációnak", "placeholders": { "name": { "content": "$1", "example": "My Sponsorship Name" } } }, "freeFamiliesPlan": { "message": "Díjmentes családi csomag" }, "redeemNow": { "message": "Beváltás most" }, "recipient": { "message": "Címzett" }, "removeSponsorship": { "message": "Szponzoráció eltávolítása" }, "removeSponsorshipConfirmation": { "message": "A szponzorálás eltávolítása után felelősséget vállalunk az előfizetésért és a kapcsolódó számlákért. Biztosan folytatjuk?" }, "sponsorshipCreated": { "message": "A szponzoráció létrejött" }, "revoke": { "message": "Visszavonás" }, "emailSent": { "message": "Az email elküldésre került." }, "revokeSponsorshipConfirmation": { "message": "A fiók eltávolítása után a Családok szervezetének tulajdonosa lesz felelős az előfizetésért és a kapcsolódó számlákért. Biztosan folytatjuk?" }, "removeSponsorshipSuccess": { "message": "A szponzoráció eltávolításra került." }, "ssoKeyConnectorUnavailable": { "message": "Nem érhető el a kulcskapcsoló. Próbáljuk újra később." }, "keyConnectorUrl": { "message": "Kulcskapcsoló webcím" }, "sendVerificationCode": { "message": "Ellenőrző kód elküldése a saját email címre" }, "sendCode": { "message": "Kód küldése" }, "codeSent": { "message": "A kód elküldésre került." }, "verificationCode": { "message": "Ellenőrző kód" }, "confirmIdentity": { "message": "A folytatáshoz meg kell erősíteni a személyazonosságot." }, "verificationCodeRequired": { "message": "Az ellenőrző kód kötelező." }, "invalidVerificationCode": { "message": "Érvénytelen ellenőrző kód" }, "convertOrganizationEncryptionDesc": { "message": "$ORGANIZATION$ jelenleg saját tárolású aláíráskulcsú SSO szervert használ. A mesterjelszó a továbbiakban nem szükséges a szervezeti tagsági bejelentkezéshez.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "leaveOrganization": { "message": "Szervezet elhagyása" }, "removeMasterPassword": { "message": "Mesterjelszó eltávolítása" }, "removedMasterPassword": { "message": "A mesterjelszó eltávolításra került." }, "allowSso": { "message": "SSO hitelesítés engedélyezése" }, "allowSsoDesc": { "message": "A beüzemeléskor a konfiguráció mentésre kerül és a tagok hitelesíthetnek az azonosítási szolgáltató hitelesítő adataival." }, "ssoPolicyHelpStart": { "message": "Engedélyezzük az", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpLink": { "message": "SSO hitelesítési szabályzat", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpEnd": { "message": "szolgáltatást az összes tag bejelentkezéséhez SSO szolgáltatással.", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpKeyConnector": { "message": "A kulcscsatlakozó visszafejtésének beállításához SSO hitelesítés és egy szervezeti szabályzat szükséges." }, "memberDecryptionOption": { "message": "Tagi visszafejtési opciók" }, "memberDecryptionPassDesc": { "message": "A hitelesítés után a tagok visszafejtik adataikat a mesterjelszavuk segítségével." }, "keyConnector": { "message": "Kulcskapcsoló" }, "memberDecryptionKeyConnectorDesc": { "message": "SSO bejelentkezés bekapcsolása a saját üzemeltetésű kulcskiszolgálón. Ezzel az opcióval a tagoknak nem kell használniuk a mesterjelszavukat az adatok visszafejtéséhez. Segítségért keresse a Bitwarden ügyfélszolgálatot." }, "keyConnectorPolicyRestriction": { "message": "A „Bejelentkezés SSO szolgáltatással és a kulcskapcsoló visszafejtésével” engedélyezve van. Ez a szabály csak a tulajdonosokra és a rendszergazdákra vonatkozik." }, "enabledSso": { "message": "Bekapcsolt SSO" }, "disabledSso": { "message": "Kikapcsolt SEO" }, "enabledKeyConnector": { "message": "Bekapcsolt kulcskapcsoló" }, "disabledKeyConnector": { "message": "Kikapcsolt kulcskapcsoló" }, "keyConnectorWarning": { "message": "A kulcskiszolgáló beállítása után a szervezet nem térhet vissza a mesterjelszó használatához. Csak akkor folytassa, ha jól ismeri ennek telepítését és kezelését." }, "migratedKeyConnector": { "message": "Áttérve kulcskapcsolóra" }, "paymentSponsored": { "message": "Adjunk meg egy, a szervezethez társítandó fizetési módot. Nem kell aggódni, nem kerül semmi felszámításra, hacsak nem választunk további funkciókat vagy ha szponzorálás lejár. " }, "orgCreatedSponsorshipInvalid": { "message": "A szponzorálási ajánlat lejárt, törölhető a létrehozott szervezet a 7 napos próbaidőszak végén jelentkező díj elkerüléséért. Ellenkező esetben bezárhatjuk ezt az üzenetet a szervezet megtartásához és a számlázási felelősség vállalásához." }, "newFamiliesOrganization": { "message": "Új családi szervezet" }, "acceptOffer": { "message": "Ajánlat elfogadása" }, "sponsoringOrg": { "message": "Szponzoráló szervezet" }, "keyConnectorTest": { "message": "Teszt" }, "keyConnectorTestSuccess": { "message": "A művelet sikeres. A kulcskapcsoló elérésre került." }, "keyConnectorTestFail": { "message": "Nem érhető el a kulcskapcsoló. Ellenőrizzük a webcímet." }, "sponsorshipTokenHasExpired": { "message": "A szponzorálási ajánlat lejárt." }, "freeWithSponsorship": { "message": "INGYENES a szponzorációval" }, "formErrorSummaryPlural": { "message": "$COUNT$ mező fentebb figyelmet érdemel.", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "formErrorSummarySingle": { "message": "1 mező fentebb figyelmet érdemel." }, "fieldRequiredError": { "message": "$FIELDNAME$ szükséges.", "placeholders": { "fieldname": { "content": "$1", "example": "Full name" } } }, "required": { "message": "kötelező" }, "idpSingleSignOnServiceUrlRequired": { "message": "Szükséges ha az entitás azonosító nem webcím." }, "openIdOptionalCustomizations": { "message": "Opcionális testreszabások" }, "openIdAuthorityRequired": { "message": "Szükséges, ha a hitelesítés nem érvényes." }, "separateMultipleWithComma": { "message": "Több érték esetén elválasztás vesszővel." }, "sessionTimeout": { "message": "A munkamenet lejárt. Lépjünk vissza és próbáljunk újra bejelentkezni." }, "exportingPersonalVaultTitle": { "message": "Személyes széf exportálása" }, "exportingOrganizationVaultTitle": { "message": "Szervezeti széf exportálása" }, "exportingPersonalVaultDescription": { "message": "Csak $EMAIL$ email címmel társított személyes széf elemek kerülnek exportálásra. Ebbe nem kerülnek be a szervezeti széf elemek.", "placeholders": { "email": { "content": "$1", "example": "name@example.com" } } }, "exportingOrganizationVaultDescription": { "message": "Csak$ORGANIZATION$ névvel társított szervezeti széf elemek kerülnek exportálásra. Ebbe nem kerülnek be a személyes és más szervezeti széf elemek.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "backToReports": { "message": "Vissza a jelentésekhez" }, "generator": { "message": "Generator" }, "whatWouldYouLikeToGenerate": { "message": "What would you like to generate?" }, "passwordType": { "message": "Password Type" }, "regenerateUsername": { "message": "Regenerate Username" }, "generateUsername": { "message": "Generate Username" }, "usernameType": { "message": "Username Type" }, "plusAddressedEmail": { "message": "Plus Addressed Email", "description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com" }, "plusAddressedEmailDesc": { "message": "Use your email provider's sub-addressing capabilities." }, "catchallEmail": { "message": "Catch-all Email" }, "catchallEmailDesc": { "message": "Use your domain's configured catch-all inbox." }, "random": { "message": "Random" }, "randomWord": { "message": "Random Word" }, "service": { "message": "Service" } }
bitwarden/web/src/locales/hu/messages.json/0
{ "file_path": "bitwarden/web/src/locales/hu/messages.json", "repo_id": "bitwarden", "token_count": 71452 }
143
{ "pageTitle": { "message": "Seif web $APP_NAME$", "description": "The title of the website in the browser window.", "placeholders": { "app_name": { "content": "$1", "example": "Bitwarden" } } }, "whatTypeOfItem": { "message": "Ce fel de articol este acesta?" }, "name": { "message": "Denumire" }, "uri": { "message": "URI" }, "uriPosition": { "message": "URI $POSITION$", "description": "A listing of URIs. Ex: URI 1, URI 2, URI 3, etc.", "placeholders": { "position": { "content": "$1", "example": "2" } } }, "newUri": { "message": "URI nou" }, "username": { "message": "Nume utilizator" }, "password": { "message": "Parolă" }, "newPassword": { "message": "Parolă nouă" }, "passphrase": { "message": "Frază de acces" }, "notes": { "message": "Note" }, "customFields": { "message": "Câmpuri particularizate" }, "cardholderName": { "message": "Deținător card" }, "number": { "message": "Număr card" }, "brand": { "message": "Tip card" }, "expiration": { "message": "Expirare" }, "securityCode": { "message": "Cod de securitate (CVV/CVC)" }, "identityName": { "message": "Nume identitate" }, "company": { "message": "Companie" }, "ssn": { "message": "Cod Numeric Personal" }, "passportNumber": { "message": "Număr CI / Pașaport" }, "licenseNumber": { "message": "Număr licență" }, "email": { "message": "E-mail" }, "phone": { "message": "Telefon" }, "january": { "message": "ianuarie" }, "february": { "message": "februarie" }, "march": { "message": "martie" }, "april": { "message": "aprilie" }, "may": { "message": "mai" }, "june": { "message": "iunie" }, "july": { "message": "iulie" }, "august": { "message": "august" }, "september": { "message": "septembrie" }, "october": { "message": "octombrie" }, "november": { "message": "noiembrie" }, "december": { "message": "decembrie" }, "title": { "message": "Titlu" }, "mr": { "message": "Dl" }, "mrs": { "message": "Dna" }, "ms": { "message": "Dra" }, "dr": { "message": "Dr." }, "expirationMonth": { "message": "Luna expirării" }, "expirationYear": { "message": "Anul expirării" }, "authenticatorKeyTotp": { "message": "Cheie autentificare (TOTP)" }, "folder": { "message": "Dosar" }, "newCustomField": { "message": "Câmp nou particularizat" }, "value": { "message": "Valoare" }, "dragToSort": { "message": "Tragere pentru sortare" }, "cfTypeText": { "message": "Text" }, "cfTypeHidden": { "message": "Ascuns" }, "cfTypeBoolean": { "message": "Valoare logică" }, "cfTypeLinked": { "message": "Conectat", "description": "This describes a field that is 'linked' (related) to another field." }, "remove": { "message": "Ștergere" }, "unassigned": { "message": "Nealocat" }, "noneFolder": { "message": "Fără dosar", "description": "This is the folder for uncategorized items" }, "addFolder": { "message": "Adăugare dosar" }, "editFolder": { "message": "Editare dosar" }, "baseDomain": { "message": "Domeniu de bază", "description": "Domain name. Ex. website.com" }, "domainName": { "message": "Nume de domeniu", "description": "Domain name. Ex. website.com" }, "host": { "message": "Gazdă", "description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'." }, "exact": { "message": "Exact" }, "startsWith": { "message": "Începe cu" }, "regEx": { "message": "Expresie regulată", "description": "A programming term, also known as 'RegEx'." }, "matchDetection": { "message": "Detectare de potrivire", "description": "URI match detection for auto-fill." }, "defaultMatchDetection": { "message": "Detectare de potrivire implicită", "description": "Default URI match detection for auto-fill." }, "never": { "message": "Niciodată" }, "toggleVisibility": { "message": "Comutare vizibilitate" }, "toggleCollapse": { "message": "Restrângere / Extindere", "description": "Toggling an expand/collapse state." }, "generatePassword": { "message": "Generare parolă" }, "checkPassword": { "message": "Verificați dacă parola a fost dezvăluită." }, "passwordExposed": { "message": "Această parolă a fost dezvăluită de $VALUE$ ori în breșe de date. Ar trebui să o schimbați.", "placeholders": { "value": { "content": "$1", "example": "2" } } }, "passwordSafe": { "message": "Această parolă nu a fost găsită în nicio breșă de date cunoscută. Ar trebui să fie sigură de utilizat." }, "save": { "message": "Salvare" }, "cancel": { "message": "Anulare" }, "canceled": { "message": "Anulat" }, "close": { "message": "Închidere" }, "delete": { "message": "Ștergere" }, "favorite": { "message": "Favorit" }, "unfavorite": { "message": "Scoatere din favorite" }, "edit": { "message": "Editare" }, "searchCollection": { "message": "Căutare în colecție" }, "searchFolder": { "message": "Căutare în dosar" }, "searchFavorites": { "message": "Căutare în favorite" }, "searchType": { "message": "Căutare în tipuri", "description": "Search item type" }, "searchVault": { "message": "Căutare în seif" }, "allItems": { "message": "Toate elementele" }, "favorites": { "message": "Favorite" }, "types": { "message": "Tipuri" }, "typeLogin": { "message": "Conectare" }, "typeCard": { "message": "Card" }, "typeIdentity": { "message": "Identitate" }, "typeSecureNote": { "message": "Notă protejată" }, "typeLoginPlural": { "message": "Conectări" }, "typeCardPlural": { "message": "Carduri" }, "typeIdentityPlural": { "message": "Identități" }, "typeSecureNotePlural": { "message": "Note protejate" }, "folders": { "message": "Dosare" }, "collections": { "message": "Colecții" }, "firstName": { "message": "Prenume" }, "middleName": { "message": "Al doilea prenume" }, "lastName": { "message": "Nume" }, "fullName": { "message": "Numele complet" }, "address1": { "message": "Adresă 1" }, "address2": { "message": "Adresă 2" }, "address3": { "message": "Adresă 3" }, "cityTown": { "message": "Localitate" }, "stateProvince": { "message": "Județ" }, "zipPostalCode": { "message": "Cod poștal" }, "country": { "message": "Țară" }, "shared": { "message": "Partajat" }, "attachments": { "message": "Atașamente" }, "select": { "message": "Selectare" }, "addItem": { "message": "Adăugare articol" }, "editItem": { "message": "Editare articol" }, "viewItem": { "message": "Afișare articol" }, "ex": { "message": "ex.", "description": "Short abbreviation for 'example'." }, "other": { "message": "Altele" }, "share": { "message": "Partajare" }, "moveToOrganization": { "message": "Mutare la organizație" }, "valueCopied": { "message": "$VALUE$ s-a copiat", "description": "Value has been copied to the clipboard.", "placeholders": { "value": { "content": "$1", "example": "Password" } } }, "copyValue": { "message": "Copiere valoare", "description": "Copy value to clipboard" }, "copyPassword": { "message": "Copiere parolă", "description": "Copy password to clipboard" }, "copyUsername": { "message": "Copiere nume utilizator", "description": "Copy username to clipboard" }, "copyNumber": { "message": "Copiere număr", "description": "Copy credit card number" }, "copySecurityCode": { "message": "Copiere cod de securitate", "description": "Copy credit card security code (CVV)" }, "copyUri": { "message": "Copiere URI", "description": "Copy URI to clipboard" }, "myVault": { "message": "Seiful meu" }, "vault": { "message": "Seif" }, "moveSelectedToOrg": { "message": "Mutați cele selectate în organizație" }, "deleteSelected": { "message": "Ștergere selecție" }, "moveSelected": { "message": "Mutare selecție" }, "selectAll": { "message": "Selectare totală" }, "unselectAll": { "message": "Deselectare totală" }, "launch": { "message": "Lansare" }, "newAttachment": { "message": "Adăugare atașament nou" }, "deletedAttachment": { "message": "Atașamentul s-a șters" }, "deleteAttachmentConfirmation": { "message": "Sigur doriți să ștergeți acest atașament?" }, "attachmentSaved": { "message": "Atașamentul a fost salvat." }, "file": { "message": "Fișier" }, "selectFile": { "message": "Selectare fișier." }, "maxFileSize": { "message": "Mărimea maximă a fișierului este de 500 MB." }, "updateKey": { "message": "Veți putea utiliza această caracteristică după ce veți actualiza cheia de criptare." }, "addedItem": { "message": "Articol adăugat" }, "editedItem": { "message": "Articol editat" }, "movedItemToOrg": { "message": "$ITEMNAME$ mutat la $ORGNAME$", "placeholders": { "itemname": { "content": "$1", "example": "Secret Item" }, "orgname": { "content": "$2", "example": "Company Name" } } }, "movedItemsToOrg": { "message": "Articolele selectate au fost mutate în $ORGNAME$", "placeholders": { "orgname": { "content": "$1", "example": "Company Name" } } }, "deleteItem": { "message": "Ștergere articol" }, "deleteFolder": { "message": "Ștergere dosar" }, "deleteAttachment": { "message": "Ștergere atașament" }, "deleteItemConfirmation": { "message": "Sigur doriți să trimiteți în coșul de reciclare?" }, "deletedItem": { "message": "Articolul a fost trimis în coșul de reciclare" }, "deletedItems": { "message": "Articolele au fost trimise în coșul de reciclare" }, "movedItems": { "message": "Articole mutate" }, "overwritePasswordConfirmation": { "message": "Sigur doriți să suprascrieți parola curentă?" }, "editedFolder": { "message": "Dosar editat" }, "addedFolder": { "message": "Dosar adăugat" }, "deleteFolderConfirmation": { "message": "Sigur doriți să ștergeți acest folder?" }, "deletedFolder": { "message": "Dosar șters" }, "loggedOut": { "message": "Deconectat" }, "loginExpired": { "message": "Sesiunea de autentificare a expirat." }, "logOutConfirmation": { "message": "Sigur doriți să vă deconectați?" }, "logOut": { "message": "Deconectare" }, "ok": { "message": "Ok" }, "yes": { "message": "Da" }, "no": { "message": "Nu" }, "loginOrCreateNewAccount": { "message": "Autentificați-vă sau creați un cont nou pentru a accesa seiful dvs. securizat." }, "createAccount": { "message": "Creare cont" }, "logIn": { "message": "Conectare" }, "submit": { "message": "Trimitere" }, "emailAddressDesc": { "message": "Vă veți folosi adresa de e-mail pentru a vă conecta." }, "yourName": { "message": "Numele dvs." }, "yourNameDesc": { "message": "Cum ar trebui să vă numim?" }, "masterPass": { "message": "Parolă principală" }, "masterPassDesc": { "message": "Parola principală este parola pe care o utilizați pentru a vă accesa seiful. Este foarte important să nu uitați această parolă. Nu există nicio modalitate de a recupera parola în cazul în care ați uitat-o." }, "masterPassHintDesc": { "message": "Un indiciu pentru parola principală vă poate ajuta să v-o reamintiți dacă o uitați." }, "reTypeMasterPass": { "message": "Reintroducere parolă principală" }, "masterPassHint": { "message": "Indiciu pentru parola principală (opțional)" }, "masterPassHintLabel": { "message": "Indiciu pentru parola principală" }, "settings": { "message": "Setări" }, "passwordHint": { "message": "Indiciu parolă" }, "enterEmailToGetHint": { "message": "Adresa de e-mail a contului pentru primirea indiciului parolei principale." }, "getMasterPasswordHint": { "message": "Obținere indiciu parolă principală" }, "emailRequired": { "message": "Adresa de e-mail este necesară." }, "invalidEmail": { "message": "Adresă de e-mail greșită." }, "masterPassRequired": { "message": "Este necesară parola principală." }, "masterPassLength": { "message": "Parola principală trebuie să conțină minimum 8 caractere." }, "masterPassDoesntMatch": { "message": "Parola principală și confirmarea ei nu coincid!" }, "newAccountCreated": { "message": "Noul dvs. cont a fost creat! Acum vă puteți autentifica." }, "masterPassSent": { "message": "V-am trimis un e-mail cu indiciul parolei principale." }, "unexpectedError": { "message": "A survenit o eroare neașteptată." }, "emailAddress": { "message": "Adresă de e-mail" }, "yourVaultIsLocked": { "message": "Seiful dvs. este blocat. Verificați parola principală pentru a continua." }, "unlock": { "message": "Deblocare" }, "loggedInAsEmailOn": { "message": "Autentificat ca $EMAIL$ pe $HOSTNAME$.", "placeholders": { "email": { "content": "$1", "example": "name@example.com" }, "hostname": { "content": "$2", "example": "bitwarden.com" } } }, "invalidMasterPassword": { "message": "Parolă principală incorectă" }, "lockNow": { "message": "Blocare acum" }, "noItemsInList": { "message": "Niciun articol de afișat." }, "noCollectionsInList": { "message": "Nicio colecție de afișat." }, "noGroupsInList": { "message": "Niciun grup de afișat." }, "noUsersInList": { "message": "Niciun utilizator de afișat." }, "noEventsInList": { "message": "Niciun eveniment de afișat." }, "newOrganization": { "message": "Organizație nouă" }, "noOrganizationsList": { "message": "Nu aparțineți niciunei organizații. Organizațiile vă permit să partajați în siguranță articole cu alți utilizatori." }, "versionNumber": { "message": "Versiunea $VERSION_NUMBER$", "placeholders": { "version_number": { "content": "$1", "example": "1.2.3" } } }, "enterVerificationCodeApp": { "message": "Introducere cod de verificare din 6 cifre din aplicația de autentificare." }, "enterVerificationCodeEmail": { "message": "Introducere cod de verificare din 6 cifre care a fost trimis prin e-mail la $EMAIL$.", "placeholders": { "email": { "content": "$1", "example": "example@gmail.com" } } }, "verificationCodeEmailSent": { "message": "E-mailul de verificare a fost trimis la $EMAIL$.", "placeholders": { "email": { "content": "$1", "example": "example@gmail.com" } } }, "rememberMe": { "message": "Memorare autentificare" }, "sendVerificationCodeEmailAgain": { "message": "Retrimitere e-mail cu codul de verificare" }, "useAnotherTwoStepMethod": { "message": "Utilizare de metodă diferită de autentificare în două etape" }, "insertYubiKey": { "message": "Introduceți YubiKey în portul USB al calculatorului apoi apăsați butonul acestuia." }, "insertU2f": { "message": "Introduceți cheia de securitate în portul USB al computerului. Dacă are un buton, apăsați-l." }, "loginUnavailable": { "message": "Conectare indisponibilă" }, "noTwoStepProviders": { "message": "Acest cont are activată autentificarea în două etape, dar niciunul dintre furnizorii configurați pentru aceasta nu este acceptat de acest browser web." }, "noTwoStepProviders2": { "message": "Utilizați un browser acceptat (cum ar fi Chrome) și/sau adăugați furnizori suplimentari mai bine susținuți de browserele web (cum ar fi o aplicație de autentificare)." }, "twoStepOptions": { "message": "Opțiuni de autentificare în două etape" }, "recoveryCodeDesc": { "message": "Ați pierdut accesul la toți furnizorii de autentificare în două etape? Utilizați codul de recuperare pentru a dezactiva toți acești furnizori din contul dvs." }, "recoveryCodeTitle": { "message": "Cod de recuperare" }, "authenticatorAppTitle": { "message": "Aplicație de autentificare" }, "authenticatorAppDesc": { "message": "Utilizați o aplicație de autentificare (cum ar fi Authy sau Google Authenticator) pentru a genera codurile de verificare bazate pe timp.", "description": "'Authy' and 'Google Authenticator' are product names and should not be translated." }, "yubiKeyTitle": { "message": "Cheie de securitate YubiKey OTP" }, "yubiKeyDesc": { "message": "Utilizați un YubiKey pentru a vă accesa contul. Funcționează cu dispozitivele YubiKey serie 4, 5 și NEO." }, "duoDesc": { "message": "Verificați cu Duo Security utilizând aplicația Duo Mobile, SMS, apel telefonic sau cheia de securitate U2F.", "description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated." }, "duoOrganizationDesc": { "message": "Verificați cu Duo Security pentru organizația dvs. utilizând aplicația Duo Mobile, SMS, apel telefonic sau cheia de securitate U2F.", "description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated." }, "u2fDesc": { "message": "Utilizați orice cheie de securitate activată FIDO U2F pentru a vă accesa contul." }, "u2fTitle": { "message": "Cheie de securitate FIDO U2F" }, "webAuthnTitle": { "message": "FIDO2 WebAuthn" }, "webAuthnDesc": { "message": "Utilizați orice cheie de securitate activată WebAuthn pentru a vă accesa contul." }, "webAuthnMigrated": { "message": "(Migrate din FIDO)" }, "emailTitle": { "message": "E-mail" }, "emailDesc": { "message": "Codurile de verificare vor fi trimise prin e-mail." }, "continue": { "message": "Continuare" }, "organization": { "message": "Organizație" }, "organizations": { "message": "Organizații" }, "moveToOrgDesc": { "message": "Alegeți o organizație la care doriți să mutați acest articol. Mutarea într-o organizație, transferă proprietatea asupra articolului către organizația respectivă. Nu veți mai fi proprietarul direct al acestui articol odată ce a fost mutat." }, "moveManyToOrgDesc": { "message": "Alegeți o organizație la care doriți să mutați aceste articole. Mutarea într-o organizație, transferă proprietatea asupra articolelor către organizația respectivă. Nu veți mai fi proprietarul direct al acestor articole odată ce au fost mutate." }, "collectionsDesc": { "message": "Editați colecțiile cu care este partajat acest articol. Numai utilizatorii organizației cu acces la aceste colecții vor putea vedea acest articol." }, "deleteSelectedItemsDesc": { "message": "Ați selectat $COUNT$ articole pentru ștergere. Sigur doriți să ștergeți toate aceste articole?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "moveSelectedItemsDesc": { "message": "Alegeți un dosar în care doriți să mutați $COUNT$ articole selectate.", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "moveSelectedItemsCountDesc": { "message": "Ați selectat $COUNT$ articol(e). $MOVEABLE_COUNT$ articol(e) poate/pot fi mutat(e) într-o organizație, $NONMOVEABLE_COUNT$ nu.", "placeholders": { "count": { "content": "$1", "example": "10" }, "moveable_count": { "content": "$2", "example": "8" }, "nonmoveable_count": { "content": "$3", "example": "2" } } }, "verificationCodeTotp": { "message": "Cod de verificare (TOTP)" }, "copyVerificationCode": { "message": "Copiere cod de verificare" }, "warning": { "message": "Avertisment" }, "confirmVaultExport": { "message": "Confirmare export seif" }, "exportWarningDesc": { "message": "Acest export conține datele dvs. din seif în format necriptat. Nu ar trebui să stocați sau să trimiteți fișierul pe canale nesecurizate (cum ar fi e-mail). Ștergeți-l imediat după ce nu îl mai folosiți." }, "encExportKeyWarningDesc": { "message": "Acest export criptează datele, utilizând cheia de criptare a contului. Dacă revocați vreodată cheia de criptare a contului dvs., ar trebui să exportați din nou, deoarece nu veți putea decripta acest fișier de export." }, "encExportAccountWarningDesc": { "message": "Cheile de criptare a contului sunt unice fiecărui cont de utilizator Bitwarden, astfel încât nu puteți importa un export criptat într-un cont diferit." }, "export": { "message": "Exportați" }, "exportVault": { "message": "Export seif" }, "fileFormat": { "message": "Format fișier" }, "exportSuccess": { "message": "Datele seifului dvs. au fost exportate." }, "passwordGenerator": { "message": "Generator de parole" }, "minComplexityScore": { "message": "Scor minim de complexitate" }, "minNumbers": { "message": "Minimum de cifre" }, "minSpecial": { "message": "Minimum de caractere speciale", "description": "Minimum Special Characters" }, "ambiguous": { "message": "Se evită caracterele ambigue" }, "regeneratePassword": { "message": "Regenerare parolă" }, "length": { "message": "Lungime" }, "numWords": { "message": "Număr de cuvinte" }, "wordSeparator": { "message": "Separator de cuvinte" }, "capitalize": { "message": "Se folosesc majuscule inițiale", "description": "Make the first letter of a work uppercase." }, "includeNumber": { "message": "Se includ cifre" }, "passwordHistory": { "message": "Istoric parole" }, "noPasswordsInList": { "message": "Nicio parolă de afișat." }, "clear": { "message": "Ștergere", "description": "To clear something out. example: To clear browser history." }, "accountUpdated": { "message": "Contul s-a actualizat" }, "changeEmail": { "message": "Schimbare adresă e-mail" }, "changeEmailTwoFactorWarning": { "message": "Procedura va schimba adresa de e-mail a contului. Nu va schimba adresa de e-mail utilizată pentru autentificarea cu doi factori. Puteți modifica această adresă de e-mail în setările de conectare în doi pași." }, "newEmail": { "message": "E-mail nou" }, "code": { "message": "Cod" }, "changeEmailDesc": { "message": "Am trimis prin e-mail un cod de verificare la $EMAIL$. Verificați e-mailul pentru acest cod și introduceți-l mai jos pentru a finaliza schimbarea adresei de e-mail.", "placeholders": { "email": { "content": "$1", "example": "john.smith@example.com" } } }, "loggedOutWarning": { "message": "Continuând, veți fi deconectat de la sesiunea curentă, solicitându-vă să vă conectați din nou. Sesiunile active pe alte dispozitive pot continua să rămână active timp de până la o oră." }, "emailChanged": { "message": "E-mailul a fost modificat" }, "logBackIn": { "message": "Vă rugăm să vă conectați din nou." }, "logBackInOthersToo": { "message": "Vă rugăm să vă reconectați. Dacă utilizați și alte aplicații Bitwarden, reconectați-vă la ele de asemenea." }, "changeMasterPassword": { "message": "Schimbare parolă principală" }, "masterPasswordChanged": { "message": "Parolă principală schimbată" }, "currentMasterPass": { "message": "Parola principală curentă" }, "newMasterPass": { "message": "Parolă principală nouă" }, "confirmNewMasterPass": { "message": "Confirmare parolă principală nouă" }, "encKeySettings": { "message": "Setări cheie de criptare" }, "kdfAlgorithm": { "message": "Algoritm KDF" }, "kdfIterations": { "message": "Iterații KDF" }, "kdfIterationsDesc": { "message": "Un număr de iterații KDF mai mare vă poate ajuta la protejarea parolei principale de un atac prin forța brută de către un atacator. Vă recomandăm o valoare de $VALUE$ sau mai mare.", "placeholders": { "value": { "content": "$1", "example": "100,000" } } }, "kdfIterationsWarning": { "message": "Setarea iterațiilor KDF prea sus poate duce la performanțe slabe la conectarea (și deblocarea) Bitwarden pe dispozitive cu procesoare mai lente. Vă recomandăm să măriți valoarea în trepte de $INCREMENT$ și apoi să testați toate dispozitivele.", "placeholders": { "increment": { "content": "$1", "example": "50,000" } } }, "changeKdf": { "message": "Modificare KDF" }, "encKeySettingsChanged": { "message": "Setările cheii de criptare s-au modificat" }, "dangerZone": { "message": "Zonă periculoasă" }, "dangerZoneDesc": { "message": "Atenție, aceste acțiuni nu sunt reversibile!" }, "deauthorizeSessions": { "message": "Revocare sesiuni" }, "deauthorizeSessionsDesc": { "message": "Sunteți preocupat de faptul că v-ați conectat pe alt dispozitiv cu contul dvs.? Continuați în modul indicat mai jos pentru a revoca autorizarea computerelor sau dispozitivelor folosite anterior. Această măsură de securitate se recomandă dacă ați folosit anterior un computer public sau ați salvat neintenționat parola pe un dispozitiv care nu vă aparține. Aceasta va elimina, de asemenea, toate sesiunile de conectare în două etape stocate anterior." }, "deauthorizeSessionsWarning": { "message": "Continuând, veți fi deconectat de asemenea de la sesiunea curentă, solicitându-vă să vă reconectați. De asemenea, vi se va solicita din nou autentificarea în două etape, dacă este activată. Sesiunile active pe alte dispozitive pot continua să rămână active timp de până la o oră." }, "sessionsDeauthorized": { "message": "Toate sesiunile au fost revocate" }, "purgeVault": { "message": "Curățare seif" }, "purgedOrganizationVault": { "message": "Seiful organizației a fost curățat." }, "vaultAccessedByProvider": { "message": "Seif accesat de furnizor." }, "purgeVaultDesc": { "message": "Continuați în modul indicat mai jos pentru a șterge toate articolele și dosarele din seiful dvs. Articolele care aparțin unei organizații din care sunteți membru nu vor fi șterse." }, "purgeOrgVaultDesc": { "message": "Continuați în modul indicat mai jos pentru a șterge toate articolele din seiful organizației." }, "purgeVaultWarning": { "message": "Curățarea seifului dvs. este definitivă. Nu poate fi anulată." }, "vaultPurged": { "message": "Seiful dvs. a fost curățat." }, "deleteAccount": { "message": "Ștergere cont" }, "deleteAccountDesc": { "message": "Continuați în modul indicat mai jos pentru a vă șterge contul și toate datele asociate." }, "deleteAccountWarning": { "message": "Ștergerea contului dvs. este definitivă. Nu poate fi anulată." }, "accountDeleted": { "message": "Contul a fost șters" }, "accountDeletedDesc": { "message": "Contul dvs. a fost închis și toate datele asociate au fost șterse." }, "myAccount": { "message": "Contul meu" }, "tools": { "message": "Unelte" }, "importData": { "message": "Import de date" }, "importError": { "message": "Eroare de import" }, "importErrorDesc": { "message": "A apărut o problemă cu datele pe care ați încercat să le importați. Vă rugăm să rezolvați erorile enumerate mai jos în fișierul sursă și să încercați din nou." }, "importSuccess": { "message": "Datele au fost importate cu succes în seiful dvs." }, "importWarning": { "message": "Importați date în $ORGANIZATION$. Datele dvs. pot fi partajate cu membrii acestei organizații. Doriți să continuați?", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "importFormatError": { "message": "Datele nu au formatul corect. Vă rugăm să verificați fișierul de import și încercați din nou." }, "importNothingError": { "message": "Nu s-a importat nimic." }, "importEncKeyError": { "message": "Eroare la decriptarea fișierului exportat. Cheia dvs. de criptare nu corespunde cu cheia de criptare folosită pentru a exporta datele." }, "selectFormat": { "message": "Alegeți din listă formatul fișierului de import" }, "selectImportFile": { "message": "Alegeți fișierul de import" }, "orCopyPasteFileContents": { "message": " sau copiați/lipiți conținutul fișierului de import" }, "instructionsFor": { "message": "Instrucțiuni $NAME$", "description": "The title for the import tool instructions.", "placeholders": { "name": { "content": "$1", "example": "LastPass (csv)" } } }, "options": { "message": "Opțiuni" }, "optionsDesc": { "message": "Personalizați-vă experiența în seiful web." }, "optionsUpdated": { "message": "Opțiunile s-au actualizat" }, "language": { "message": "Limbă" }, "languageDesc": { "message": "Alegeți limba în care folosiți seiful web." }, "disableIcons": { "message": "Dezactivare iconuri sait" }, "disableIconsDesc": { "message": "Iconurile saiturilor oferă o imagine identificabilă lângă fiecare element de conectare din seiful dvs." }, "enableGravatars": { "message": "Activare Gravatars", "description": "'Gravatar' is the name of a service. See www.gravatar.com" }, "enableGravatarsDesc": { "message": "Folosește imagini avatar încărcate de pe gravatar.com." }, "enableFullWidth": { "message": "Activare aspect seif cu lățimea completă", "description": "Allows scaling the web vault UI's width" }, "enableFullWidthDesc": { "message": "Permite seifului web să se extindă pe toată lățimea ferestrei browserului." }, "default": { "message": "Implicit" }, "domainRules": { "message": "Reguli de domeniu" }, "domainRulesDesc": { "message": "Dacă aveți aceleași date de autentificare pe mai multe domenii web diferite, puteți marca saitul web ca \"echivalent\". Domeniile \"globale\" sunt cele create deja de Bitwarden pentru dvs." }, "globalEqDomains": { "message": "Domenii globale echivalente" }, "customEqDomains": { "message": "Domenii personalizate echivalente" }, "exclude": { "message": "Excludere" }, "include": { "message": "Includere" }, "customize": { "message": "Personalizare" }, "newCustomDomain": { "message": "Domeniu nou personalizat" }, "newCustomDomainDesc": { "message": "Introduceți o listă de domenii separate prin virgulă. Sunt permise doar domeniile de \"bază\". Nu introduceți subdomenii. De exemplu, introduceți \"google.com\" în loc de \"www.google.com\". Puteți introduce și \"androidapp://package.name\" pentru a asocia o aplicație Android cu alte domenii de site-uri web." }, "customDomainX": { "message": "Domeniu personalizat $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "domainsUpdated": { "message": "Domenii s-au actualizat" }, "twoStepLogin": { "message": "Autentificare în două etape" }, "twoStepLoginDesc": { "message": "Vă securizează contul solicitând un pas suplimentar la conectare." }, "twoStepLoginOrganizationDesc": { "message": "Necesită autentificarea în două etape pentru utilizatorii organizației dvs. prin configurarea furnizorilor la nivel de organizație." }, "twoStepLoginRecoveryWarning": { "message": "Activarea autentificării în două etape vă poate bloca definitiv din contul Bitwarden. Un cod de recuperare vă permite să vă accesați contul când nu mai puteți utiliza furnizorul dvs. normal de autentificare în două etape (ex. vă pierdeți dispozitivul). Asistența Bitwarden nu vă va putea ajuta dacă pierdeți accesul la contul dvs. Vă recomandăm să notați sau să imprimați codul de recuperare și să îl păstrați într-un loc sigur." }, "viewRecoveryCode": { "message": "Afișare cod de recuperare" }, "providers": { "message": "Furnizori", "description": "Two-step login providers such as YubiKey, Duo, Authenticator apps, Email, etc." }, "enable": { "message": "Activare" }, "enabled": { "message": "Activat" }, "premium": { "message": "Premium", "description": "Premium Membership" }, "premiumMembership": { "message": "Membru Premium" }, "premiumRequired": { "message": "Este necesară versiunea Premium" }, "premiumRequiredDesc": { "message": "Este necesar statutul de membru Premium pentru a utiliza această caracteristică." }, "youHavePremiumAccess": { "message": "Aveți acces premium" }, "alreadyPremiumFromOrg": { "message": "Aveți deja acces la funcții premium datorită organizației la care sunteți membru." }, "manage": { "message": "Gestionare" }, "disable": { "message": "Dezactivare" }, "twoStepLoginProviderEnabled": { "message": "Acest furnizor de autentificare în două etape este activat în contul dvs." }, "twoStepLoginAuthDesc": { "message": "Introduceți parola principală pentru a modifica setările de autentificare în două etape." }, "twoStepAuthenticatorDesc": { "message": "Urmați acești pași pentru a configura autentificarea în două etape cu o aplicație de autentificare:" }, "twoStepAuthenticatorDownloadApp": { "message": "Descărcați o aplicație de autentificare în două etape" }, "twoStepAuthenticatorNeedApp": { "message": "Aveți nevoie de o aplicație de autentificare în două etape? Descărcați una dintre următoarele" }, "iosDevices": { "message": "Dispozitive iOS" }, "androidDevices": { "message": "Dispozitive Android" }, "windowsDevices": { "message": "Dispozitive Windows" }, "twoStepAuthenticatorAppsRecommended": { "message": "Aceste aplicații sunt recomandate, cu toate acestea, vor funcționa și alte aplicații de autentificare." }, "twoStepAuthenticatorScanCode": { "message": "Scanați acest cod QR cu aplicația dvs. de autentificare" }, "key": { "message": "Cheie" }, "twoStepAuthenticatorEnterCode": { "message": "Introduceți codul de verificare din 6 cifre din aplicație" }, "twoStepAuthenticatorReaddDesc": { "message": "Dacă trebuie să-l adăugați la un alt dispozitiv, mai jos este codul QR (sau cheia) cerut de aplicația dvs. de autentificare." }, "twoStepDisableDesc": { "message": "Sigur doriți să dezactivați acest furnizor de autentificare în două etape?" }, "twoStepDisabled": { "message": "Furnizorul de autentificare în două etape a fost dezactivat." }, "twoFactorYubikeyAdd": { "message": "Etape de urmat pentru a vă adăuga o nouă cheie in cont." }, "twoFactorYubikeyPlugIn": { "message": "Conectați YubiKey la portul USB al computerului." }, "twoFactorYubikeySelectKey": { "message": "Alegeți primul câmp de intrare YubiKey gol de mai jos." }, "twoFactorYubikeyTouchButton": { "message": "Atingeți butonul YubiKey." }, "twoFactorYubikeySaveForm": { "message": "Salvați formularul." }, "twoFactorYubikeyWarning": { "message": "Drept consecință a limitărilor platformei, YubiKey-urile nu se pot utiliza pe toate aplicațiile Bitwarden. Ar trebui să activați un alt furnizor de conectare în două etape pentru a vă accesa contul atunci când YubiKey-urile nu se pot utiliza. Platforme acceptate:" }, "twoFactorYubikeySupportUsb": { "message": "Seiful web, aplicația desktop, CLI (Command-Line Interface), și toate extensiile de browser de pe un dispozitiv cu un port USB care poate accepta YubiKey." }, "twoFactorYubikeySupportMobile": { "message": "Aplicații mobile pe un dispozitiv cu tehnologia NFC integrată sau un port de date care poate accepta YubiKey." }, "yubikeyX": { "message": "YubiKey $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "u2fkeyX": { "message": "Cheie U2F $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "webAuthnkeyX": { "message": "Cheie WebAuthn $INDEX$", "placeholders": { "index": { "content": "$1", "example": "2" } } }, "nfcSupport": { "message": "Suport NFC" }, "twoFactorYubikeySupportsNfc": { "message": "Una dintre cheile mele acceptă NFC." }, "twoFactorYubikeySupportsNfcDesc": { "message": "Dacă unul din YubiKey-urile dvs. suportă NFC (cum ar fi un YubiKey NEO), vi se va solicita pe dispozitivele mobile ori de câte ori este detectată disponibilitatea NFC." }, "yubikeysUpdated": { "message": "YubiKey-urile s-au actualizat" }, "disableAllKeys": { "message": "Dezactivare a tuturor cheilor" }, "twoFactorDuoDesc": { "message": "Introduceți informațiile despre aplicația Bitwarden din panoul dvs. Duo Admin." }, "twoFactorDuoIntegrationKey": { "message": "Cheie de integrare" }, "twoFactorDuoSecretKey": { "message": "Cheie secretă" }, "twoFactorDuoApiHostname": { "message": "Numele gazdei API" }, "twoFactorEmailDesc": { "message": "Urmați acești pași pentru a configura conectarea în două etape cu e-mail:" }, "twoFactorEmailEnterEmail": { "message": "Introducere de adresă de e-mail la care doriți să primiți codurile de verificare" }, "twoFactorEmailEnterCode": { "message": "Introducere cod de verificare din 6 cifre din e-mail" }, "sendEmail": { "message": "Trimitere e-mail" }, "twoFactorU2fAdd": { "message": "Adăugare de cheie de securitate FIDO U2F în contul dvs." }, "removeU2fConfirmation": { "message": "Sigur doriți să eliminați această cheie de securitate?" }, "twoFactorWebAuthnAdd": { "message": "Adăugare de cheie de securitate WebAuthn în contul dvs." }, "readKey": { "message": "Citire cheie" }, "keyCompromised": { "message": "Cheia este compromisă." }, "twoFactorU2fGiveName": { "message": "Dați cheii de securitate un nume prietenos pentru a o identifica." }, "twoFactorU2fPlugInReadKey": { "message": "Conectați cheia de securitate la portul USB al computerului și clicați pe butonul \"Citire cheie\"." }, "twoFactorU2fTouchButton": { "message": "Când cheia de securitate are un buton, atingeți-l." }, "twoFactorU2fSaveForm": { "message": "Salvați formularul." }, "twoFactorU2fWarning": { "message": "Drept consecință a limitărilor platformei, FIDO U2F nu poate fi utilizat pe toate aplicațiile Bitwarden. Ar trebui să activați un alt furnizor de conectare în două etape pentru a vă accesa contul atunci când FIDO U2F nu se poate utiliza. Platforme acceptate:" }, "twoFactorU2fSupportWeb": { "message": "Seiful web și extensiile de browser pe un desktop/laptop cu un browser activat U2F (Chrome, Opera, Vivaldi, sau Firefox cu FIDO U2F activat)." }, "twoFactorU2fWaiting": { "message": "Vă așteptăm ca să atingeți butonul de pe cheia de securitate" }, "twoFactorU2fClickSave": { "message": "Clicați pe butonul \"Salvare\" mai jos pentru a activa cheia de securitate de conectarea în două etape." }, "twoFactorU2fProblemReadingTryAgain": { "message": "A apărut o problemă la citirea cheii de securitate. Încercați din nou." }, "twoFactorWebAuthnWarning": { "message": "Drept consecință a limitărilor platformei, WebAuthn nu se poate utiliza pe toate aplicațiile Bitwarden. Ar trebui să activați un alt furnizor de conectare în două etape pentru a vă accesa contul, atunci când WebAuthn nu se poate utiliza. Platforme acceptate:" }, "twoFactorWebAuthnSupportWeb": { "message": "Seiful web și extensiile de browser pe un desktop/laptop cu un browser activat WebAuthn (Chrome, Opera, Vivaldi sau Firefox cu FIDO U2F activat)." }, "twoFactorRecoveryYourCode": { "message": "Codul dvs. Bitwarden de recuperare a autentificării în două etape" }, "twoFactorRecoveryNoCode": { "message": "Nu ați activat încă niciun furnizor de conectare în două etape. După ce activați un furnizor de conectare în două etape, puteți reveni aici pentru codul de recuperare." }, "printCode": { "message": "Imprimare cod", "description": "Print 2FA recovery code" }, "reports": { "message": "Rapoarte" }, "reportsDesc": { "message": "Identificați și eliminați lacunele de securitate din conturile dvs. online făcând clic pe rapoartele de mai jos." }, "unsecuredWebsitesReport": { "message": "Site-uri web nesigure" }, "unsecuredWebsitesReportDesc": { "message": "URL-urile care încep cu http:// nu utilizează cea mai bună criptare disponibilă. Schimbați URI-urile de conectare pentru aceste conturi cu https:// pentru o navigare mai sigură." }, "unsecuredWebsitesFound": { "message": "S-au găsit saituri web nesecurizate" }, "unsecuredWebsitesFoundDesc": { "message": "Am găsit $COUNT$ articole în seiful dvs. cu URI-uri nesecurizate. Ar trebui să schimbați schema URl-urilor lor în https:// dacă saitul o permite.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noUnsecuredWebsites": { "message": "Niciun articol din seiful dvs. nu are URI-uri nesecurizate." }, "inactive2faReport": { "message": "Autentificare în doi pași inactivă" }, "inactive2faReportDesc": { "message": "Autentificarea în doi pași adaugă un nivel de protecție pentru conturile d-voastră. Activați Autentificarea în doi pași utilizând Autentificatorul Bitwarden pentru aceste conturi sau utilizați o metodă alternativă." }, "inactive2faFound": { "message": "S-au găsit conectări fără 2FA" }, "inactive2faFoundDesc": { "message": "Am găsit $COUNT$ sait(uri) web în seiful dvs. care s-ar putea să nu fie configurate cu autentificarea cu doi factori (conform cu 2fa.directory). Pentru a proteja în continuare aceste conturi, ar trebui să activați autentificarea cu doi factori.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noInactive2fa": { "message": "Nu au fost găsite saituri în seiful dvs. cu o configurație de autentificare cu doi factori lipsă." }, "instructions": { "message": "Instrucțiuni" }, "exposedPasswordsReport": { "message": "Parolele expuse" }, "exposedPasswordsReportDesc": { "message": "Parolele expuse în cazul unei încălcări a securității datelor sunt ținte ușoare pentru atacatori. Schimbați aceste parole pentru a preveni eventualele intruziuni." }, "exposedPasswordsFound": { "message": "S-au găsit parole dezvăluite" }, "exposedPasswordsFoundDesc": { "message": "Am găsit $COUNT$ articole în seiful dvs. care folosesc parole dezvăluite în scurgeri de date cunoscute. Ar trebui să le schimbați pentru a utiliza o parolă nouă.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noExposedPasswords": { "message": "Niciun articol din seiful dvs. nu are parole dezvăluite în scurgeri de date cunoscute." }, "checkExposedPasswords": { "message": "Verificați parolele dezvăluite" }, "exposedXTimes": { "message": "Dezvăluită de $COUNT$ ori", "placeholders": { "count": { "content": "$1", "example": "52" } } }, "weakPasswordsReport": { "message": "Parole slabe" }, "weakPasswordsReportDesc": { "message": "Parolele slabe pot fi ușor ghicite de atacatori. Schimbați aceste parole cu unele puternice folosind Generatorul de parole." }, "weakPasswordsFound": { "message": "S-au găsit parole slabe" }, "weakPasswordsFoundDesc": { "message": "Am găsit $COUNT$ articole cu parole slabe articole în seiful dvs. Ar trebui să le actualizați ca să folosească parole puternice.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noWeakPasswords": { "message": "Niciun articol din seiful dvs. nu are parole slabe." }, "reusedPasswordsReport": { "message": "Parole refolosite" }, "reusedPasswordsReportDesc": { "message": "Reutilizarea parolelor facilitează accesul atacatorilor la mai multe conturi. Schimbați aceste parole astfel încât fiecare să fie unică." }, "reusedPasswordsFound": { "message": "S-au găsit parole refolosite" }, "reusedPasswordsFoundDesc": { "message": "Am găsit $COUNT$ parole reutilizate în seiful dvs. Ar trebui să le schimbați la o valoare unică.", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "noReusedPasswords": { "message": "Nicio dată de conectare din seiful dvs. nu conține parole reutilizate." }, "reusedXTimes": { "message": "Refolosit $COUNT$ ori", "placeholders": { "count": { "content": "$1", "example": "8" } } }, "dataBreachReport": { "message": "Breșă de date" }, "breachDesc": { "message": "Conturile care au fost piratate vă pot expune informațiile personale. Protejați conturile compromise prin activarea 2FA sau prin crearea unei parole mai puternice." }, "breachCheckUsernameEmail": { "message": "Verificați orice nume de utilizator sau adresă e-mail pe care o folosiți." }, "checkBreaches": { "message": "Verificare scurgeri" }, "breachUsernameNotFound": { "message": "$USERNAME$ nu a fost găsit în nicio scurgere de date cunoscută.", "placeholders": { "username": { "content": "$1", "example": "user@example.com" } } }, "goodNews": { "message": "Vești bune", "description": "ex. Good News, No Breached Accounts Found!" }, "breachUsernameFound": { "message": "$USERNAME$ a fost găsit în $COUNT$ diferite scurgeri de date online.", "placeholders": { "username": { "content": "$1", "example": "user@example.com" }, "count": { "content": "$2", "example": "7" } } }, "breachFound": { "message": "S-au găsit conturi cu scurgeri" }, "compromisedData": { "message": "Date compromise" }, "website": { "message": "Sait web" }, "affectedUsers": { "message": "Utilizatori afectați" }, "breachOccurred": { "message": "Scurgere produsă" }, "breachReported": { "message": "Scurgere raportată" }, "reportError": { "message": "A apărut o eroare la încărcarea raportului. Încercați din nou" }, "billing": { "message": "Facturare" }, "accountCredit": { "message": "Creditul contului", "description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)." }, "accountBalance": { "message": "Balanța contului", "description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)." }, "addCredit": { "message": "Adăugare credit", "description": "Add more credit to your account's balance." }, "amount": { "message": "Sumă", "description": "Dollar amount, or quantity." }, "creditDelayed": { "message": "Creditul adăugat va apare în contul dvs. după procesarea completă a plății. Unele metode de plată sunt întârziate și pot lua mai mult timp de procesare decât altele." }, "makeSureEnoughCredit": { "message": "Vă rugăm să vă asigurați că aveți suficient credit disponibil în cont pentru această achiziție. Dacă nu aveți suficient credit în cont, metoda dvs. implicită de plată înregistrată va fi folosită pentru diferență. Puteți adăuga credit în contul dvs. din pagina Facturare." }, "creditAppliedDesc": { "message": "Creditul contului dvs. se poate utiliza pentru a face cumpărături. Orice credit disponibil va fi aplicat automat pentru facturile generate pentru acest cont." }, "goPremium": { "message": "Obțineți Premium", "description": "Another way of saying \"Get a premium membership\"" }, "premiumUpdated": { "message": "Ați actualizat la Premium." }, "premiumUpgradeUnlockFeatures": { "message": "Actualizați-vă contul la un abonament premium și deblocați câteva funcții suplimentare excelente." }, "premiumSignUpStorage": { "message": "1 GB stocare criptată pentru fișiere atașate." }, "premiumSignUpTwoStep": { "message": "Opțiuni suplimentare de conectare în două etape, cum ar fi YubiKey, FIDO U2F și Duo." }, "premiumSignUpEmergency": { "message": "Acces de urgență" }, "premiumSignUpReports": { "message": "Rapoarte privind igiena parolelor, sănătatea contului și breșele de date pentru a vă păstra seiful în siguranță." }, "premiumSignUpTotp": { "message": "Generator de cod de verificare TOTP (2FA) pentru autentificări în seiful dvs." }, "premiumSignUpSupport": { "message": "Asistență prioritară pentru clienți." }, "premiumSignUpFuture": { "message": "Toate funcțiile premium viitoare. În curând mai multe!" }, "premiumPrice": { "message": "Totul pentru numai $PRICE$ /an!", "placeholders": { "price": { "content": "$1", "example": "$10" } } }, "addons": { "message": "Add-on-uri" }, "premiumAccess": { "message": "Acces Premium" }, "premiumAccessDesc": { "message": "Puteți adăuga acces premium tuturor membrilor organizației dvs. pentru $PRICE$ /$INTERVAL$.", "placeholders": { "price": { "content": "$1", "example": "$3.33" }, "interval": { "content": "$2", "example": "'month' or 'year'" } } }, "additionalStorageGb": { "message": "Stocare adițională (GB)" }, "additionalStorageGbDesc": { "message": "# de GB adiționali" }, "additionalStorageIntervalDesc": { "message": "Planul dvs. vine cu $SIZE$ de stocare criptată de fișiere. Puteți adăuga stocare suplimentară pentru $PRICE$ per GB /$INTERVAL$.", "placeholders": { "size": { "content": "$1", "example": "1 GB" }, "price": { "content": "$2", "example": "$4.00" }, "interval": { "content": "$3", "example": "'month' or 'year'" } } }, "summary": { "message": "Rezumat" }, "total": { "message": "Total" }, "year": { "message": "an" }, "month": { "message": "lună" }, "monthAbbr": { "message": "lună", "description": "Short abbreviation for 'month'" }, "paymentChargedAnnually": { "message": "Metoda dvs. de plată va fi facturată imediat și apoi în mod recurent în fiecare an. Puteți anula în orice moment." }, "paymentCharged": { "message": "Metoda dvs. de plată va fi facturată imediat și apoi în mod recurent în fiecare $INTERVAL$. Puteți anula în orice moment.", "placeholders": { "interval": { "content": "$1", "example": "month or year" } } }, "paymentChargedWithTrial": { "message": "Planul dvs. vine cu o încercare gratuită de 7 zile. Metoda dvs. de plată nu va fi facturată până la sfârșitul perioadei de încercare. Puteți anula în orice moment." }, "paymentInformation": { "message": "Informații de plată" }, "billingInformation": { "message": "Informații de facturare" }, "creditCard": { "message": "Card de credit" }, "paypalClickSubmit": { "message": "Clicați pe butonul PayPal pentru a vă conecta la contul PayPal, apoi clicați pe butonul Trimitere mai jos pentru a continua." }, "cancelSubscription": { "message": "Anulare abonament" }, "subscriptionCanceled": { "message": "Abonamentul a fost anulat." }, "pendingCancellation": { "message": "Anulare în așteptare" }, "subscriptionPendingCanceled": { "message": "Abonamentul a fost marcat pentru anulare la sfârșitul perioadei curente de facturare." }, "reinstateSubscription": { "message": "Restabilire abonament" }, "reinstateConfirmation": { "message": "Sigur doriți să eliminați cererea de anulare în așteptare și să vă restabiliți abonamentul?" }, "reinstated": { "message": "Abonamentul a fost restabilit." }, "cancelConfirmation": { "message": "Sigur doriți să anulați? Veți pierde accesul la toate funcționalitățile acestui abonament la sfârșitul acestui ciclu de facturare." }, "canceledSubscription": { "message": "Abonamentul a fost anulat." }, "neverExpires": { "message": "Nu expiră niciodată" }, "status": { "message": "Stare" }, "nextCharge": { "message": "Plata următoare" }, "details": { "message": "Detalii" }, "downloadLicense": { "message": "Descărcare licență" }, "updateLicense": { "message": "Actualizare licență" }, "updatedLicense": { "message": "Licența s-a actualizat" }, "manageSubscription": { "message": "Gestionare abonament" }, "storage": { "message": "Stocare" }, "addStorage": { "message": "Adăugare stocare" }, "removeStorage": { "message": "Eliminare stocare" }, "subscriptionStorage": { "message": "Abonamentul dvs. are un total de $MAX_STORAGE$ GB de stocare criptată de fișiere. În prezent folosiți $USED_STORAGE$.", "placeholders": { "max_storage": { "content": "$1", "example": "4" }, "used_storage": { "content": "$2", "example": "65 MB" } } }, "paymentMethod": { "message": "Metoda de plată" }, "noPaymentMethod": { "message": "Nicio metodă de plată în fișier." }, "addPaymentMethod": { "message": "Adăugare metodă de plată" }, "changePaymentMethod": { "message": "Schimbare metodă de plată" }, "invoices": { "message": "Facturi" }, "noInvoices": { "message": "Nicio factură." }, "paid": { "message": "Plătit", "description": "Past tense status of an invoice. ex. Paid or unpaid." }, "unpaid": { "message": "Neplătit", "description": "Past tense status of an invoice. ex. Paid or unpaid." }, "transactions": { "message": "Tranzacții", "description": "Payment/credit transactions." }, "noTransactions": { "message": "Nicio tranzacție." }, "chargeNoun": { "message": "Debit", "description": "Noun. A charge from a payment method." }, "refundNoun": { "message": "Rambursare", "description": "Noun. A refunded payment that was charged." }, "chargesStatement": { "message": "Orice plați în contul dvs. vor apărea ca $STATEMENT_NAME$.", "placeholders": { "statement_name": { "content": "$1", "example": "BITWARDEN" } } }, "gbStorageAdd": { "message": "GB de stocare de adăugat" }, "gbStorageRemove": { "message": "GB de stocare de eliminat" }, "storageAddNote": { "message": "Adăugarea stocării va duce la ajustări ale totalelor de facturare și la facturarea imediată conform metodei dvs. de facturare. Prima facturare va fi aplicată proporțional la restul ciclului curent de facturare." }, "storageRemoveNote": { "message": "Eliminarea stocării va duce la ajustări ale totalelor dvs. de facturare, care vor fi proporționate ca credite pentru următoarea facturare." }, "adjustedStorage": { "message": "$AMOUNT$ GB de spațiu de stocare ajustat.", "placeholders": { "amount": { "content": "$1", "example": "5" } } }, "contactSupport": { "message": "Contactare asistență pentru clienți" }, "updatedPaymentMethod": { "message": "Metoda de plată s-a actualizat." }, "purchasePremium": { "message": "Achiziționare abonament Premium" }, "licenseFile": { "message": "Fișier de licență" }, "licenseFileDesc": { "message": "Fișierul dvs. de licență va fi numit ceva de genul $FILE_NAME$", "placeholders": { "file_name": { "content": "$1", "example": "bitwarden_premium_license.json" } } }, "uploadLicenseFilePremium": { "message": "Pentru a vă actualiza contul la statutul de membru Premium, trebuie să încărcați un fișier de licență valid." }, "uploadLicenseFileOrg": { "message": "Pentru a crea o organizație găzduită local, trebuie să încărcați un fișier de licență valid." }, "accountEmailMustBeVerified": { "message": "Adresa de e-mail a contului dvs. trebuie verificată." }, "newOrganizationDesc": { "message": "Organizațiile vă permit să vă partajați părți din seif cu ceilalți, precum și gestionarea utilizatorilor asociați pentru o anumită entitate, cum ar fi o familie, echipă mică sau companie mare." }, "generalInformation": { "message": "Informații generale" }, "organizationName": { "message": "Numele organizației" }, "accountOwnedBusiness": { "message": "Acest cont este deținut de un business." }, "billingEmail": { "message": "Adresa e-mail de facturare" }, "businessName": { "message": "Numele businessului" }, "chooseYourPlan": { "message": "Alegeți-vă planul" }, "users": { "message": "Utilizatori" }, "userSeats": { "message": "Licențe utilizator" }, "additionalUserSeats": { "message": "Licențe utilizator adiționale" }, "userSeatsDesc": { "message": "# de licențe utilizator" }, "userSeatsAdditionalDesc": { "message": "Planul dvs. vine cu $BASE_SEATS$ licențe de utilizator. Puteți adăuga utilizatori adiționali pentru $SEAT_PRICE$ per utilizator /lună.", "placeholders": { "base_seats": { "content": "$1", "example": "5" }, "seat_price": { "content": "$2", "example": "$2.00" } } }, "userSeatsHowManyDesc": { "message": "De câte licențe de utilizator aveți nevoie? Dacă este nevoie, licențe suplimentare pot fi adăugate mai târziu." }, "planNameFree": { "message": "Gratuit", "description": "Free as in 'free beer'." }, "planDescFree": { "message": "Pentru testare sau pentru utilizatori privați pentru partajarea cu $COUNT$ alt utilizator.", "placeholders": { "count": { "content": "$1", "example": "1" } } }, "planNameFamilies": { "message": "Familiile" }, "planDescFamilies": { "message": "Pentru uz personal, pentru a partaja cu familia și prietenii." }, "planNameTeams": { "message": "Echipe" }, "planDescTeams": { "message": "Pentru businessuri și alte organizații în echipă." }, "planNameEnterprise": { "message": "Organizație" }, "planDescEnterprise": { "message": "Pentru businessuri și alte organizații mari." }, "freeForever": { "message": "Gratuit pentru totdeauna" }, "includesXUsers": { "message": "include $COUNT$ utilizatori", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "additionalUsers": { "message": "Utilizatori suplimentari" }, "costPerUser": { "message": "$COST$ per utilizator", "placeholders": { "cost": { "content": "$1", "example": "$3" } } }, "limitedUsers": { "message": "Limitat la $COUNT$ utilizatori (inclusiv dvs.)", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "limitedCollections": { "message": "Limitat la $COUNT$ colecții", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "addShareLimitedUsers": { "message": "Adăugare și partajare cu până la $COUNT$ utilizatori", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "addShareUnlimitedUsers": { "message": "Adăugare și partajare cu utilizatori nelimitați" }, "createUnlimitedCollections": { "message": "Creați colecții nelimitate" }, "gbEncryptedFileStorage": { "message": "$SIZE$ de stocare de fișiere criptate", "placeholders": { "size": { "content": "$1", "example": "1 GB" } } }, "onPremHostingOptional": { "message": "Găzduire locală (opțional)" }, "usersGetPremium": { "message": "Utilizatorii au acces la funcțiile Premium" }, "controlAccessWithGroups": { "message": "Controlare a accesului utilizatorilor cu Grupuri" }, "syncUsersFromDirectory": { "message": "Sincronizare a utilizatorilor și Grupurilor dvs dintr-un director" }, "trackAuditLogs": { "message": "Urmăriți acțiunile utilizatorilor cu jurnalele de audit" }, "enforce2faDuo": { "message": "Impunere 2FA cu Duo" }, "priorityCustomerSupport": { "message": "Asistență prioritară pentru clienți" }, "xDayFreeTrial": { "message": "$COUNT$ zile de încercare gratuită, anulați oricând", "placeholders": { "count": { "content": "$1", "example": "7" } } }, "monthly": { "message": "Lunar" }, "annually": { "message": "Anual" }, "basePrice": { "message": "Preț de bază" }, "organizationCreated": { "message": "Organizația a fost creată" }, "organizationReadyToGo": { "message": "Noua dvs. organizație este pregătită!" }, "organizationUpgraded": { "message": "Un upgrade al organizației a fost efectuat." }, "leave": { "message": "Părăsește" }, "leaveOrganizationConfirmation": { "message": "Sigur doriți să părăsiți această organizație?" }, "leftOrganization": { "message": "Ați părăsit organizația." }, "defaultCollection": { "message": "Colecție implicită" }, "getHelp": { "message": "Obținere ajutor" }, "getApps": { "message": "Obținere aplicație" }, "loggedInAs": { "message": "Autentificat ca" }, "eventLogs": { "message": "Jurnale evenimente" }, "people": { "message": "Persoane" }, "policies": { "message": "Politici" }, "singleSignOn": { "message": "Conectare unică" }, "editPolicy": { "message": "Editare politici" }, "groups": { "message": "Grupuri" }, "newGroup": { "message": "Grup nou" }, "addGroup": { "message": "Adăugare grup" }, "editGroup": { "message": "Editare grup" }, "deleteGroupConfirmation": { "message": "Sigur doriți să ștergeți acest grup?" }, "removeUserConfirmation": { "message": "Sigur doriți să eliminați acest utilizator?" }, "removeUserConfirmationKeyConnector": { "message": "Avertisment! Acest utilizator are nevoie de Conector Cheie pentru a-și gestiona criptarea. Eliminarea acestui utilizator din organizația dvs., îi va dezactiva permanent contul. Această acțiune nu poate fi anulată. Doriți să continuați?" }, "externalId": { "message": "Id Extern" }, "externalIdDesc": { "message": "Id-ul extern poate fi utilizat ca referință sau pentru a lega această resursă de un sistem extern, cum ar fi un folder utilizator." }, "accessControl": { "message": "Controlul accesului" }, "groupAccessAllItems": { "message": "Acest grup poate accesa și modifica toate articolele." }, "groupAccessSelectedCollections": { "message": "Acest grup poate accesa doar colecțiile selectate." }, "readOnly": { "message": "Doar pentru citire" }, "newCollection": { "message": "Colecție nouă" }, "addCollection": { "message": "Adăugare colecție" }, "editCollection": { "message": "Editare colecție" }, "deleteCollectionConfirmation": { "message": "Sigur doriți să ștergeți această colecție?" }, "editUser": { "message": "Editare utilizator" }, "inviteUser": { "message": "Invitare utilizator" }, "inviteUserDesc": { "message": "Invitați un utilizator nou în organizația dvs. introducându-i mai jos adresa de e-mail a contului Bitwarden. Dacă nu au deja un cont Bitwarden, li se va solicita să își creeze un cont nou." }, "inviteMultipleEmailDesc": { "message": "Puteți invita până la $COUNT$ utilizatori odată separând prin virgulă o listă de adrese de e-mail.", "placeholders": { "count": { "content": "$1", "example": "20" } } }, "userUsingTwoStep": { "message": "Acest utilizator folosește conectarea în două etape pentru a-și proteja contul." }, "userAccessAllItems": { "message": "Acest utilizator poate accesa și modifica toate articolele." }, "userAccessSelectedCollections": { "message": "Acest utilizator poate accesa doar colecțiile selectate." }, "search": { "message": "Căutare" }, "invited": { "message": "Invitat" }, "accepted": { "message": "Acceptat" }, "confirmed": { "message": "Confirmat" }, "clientOwnerEmail": { "message": "E-mailul proprietarului clientului" }, "owner": { "message": "Proprietar" }, "ownerDesc": { "message": "Contul cu cele mai mari privilegii care poate gestiona toate aspectele organizației." }, "clientOwnerDesc": { "message": "Acest utilizator trebuie să fie independent de furnizor. În cazul în care furnizorul este dezasociat de organizație, acest utilizator va menține proprietatea organizației." }, "admin": { "message": "Admin" }, "adminDesc": { "message": "Administratorii pot accesa și gestiona toate articolele, colecțiile și utilizatorii din organizația dvs." }, "user": { "message": "Utilizator" }, "userDesc": { "message": "Un utilizator obișnuit cu acces la colecțiile alocate din organizația dvs." }, "manager": { "message": "Manager" }, "managerDesc": { "message": "Managerii pot accesa și gestiona colecțiile atribuite în organizația dvs." }, "all": { "message": "Tot" }, "refresh": { "message": "Reîmprospătare" }, "timestamp": { "message": "Marcă temporală" }, "event": { "message": "Eveniment" }, "unknown": { "message": "Necunoscut" }, "loadMore": { "message": "Încărcați mai mult" }, "mobile": { "message": "Mobil", "description": "Mobile app" }, "extension": { "message": "Extensie", "description": "Browser extension/addon" }, "desktop": { "message": "Desktop", "description": "Desktop app" }, "webVault": { "message": "Seif web" }, "loggedIn": { "message": "Autentificat." }, "changedPassword": { "message": "Parola contului a fost modificată." }, "enabledUpdated2fa": { "message": "Conectarea în două etape s-a activat/actualizat." }, "disabled2fa": { "message": "Conexiune în două etape dezactivată." }, "recovered2fa": { "message": "Cont recuperat de la conectarea în două etape." }, "failedLogin": { "message": "Încercare de conectare eșuată cu o parolă incorectă." }, "failedLogin2fa": { "message": "Încercare de conectare eșuată cu verificarea în două etape incorectă." }, "exportedVault": { "message": "Seiful a fost exportat." }, "exportedOrganizationVault": { "message": "Seiful organizației a fost exportat." }, "editedOrgSettings": { "message": "Setările organizației s-au modificat." }, "createdItemId": { "message": "Element $ID$ creat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "editedItemId": { "message": "Element $ID$ editat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "deletedItemId": { "message": "Articolul $ID$ a fost trimis în coșul de reciclare.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "movedItemIdToOrg": { "message": "Articolul $ID$ a fost mutat la o organizație.", "placeholders": { "id": { "content": "$1", "example": "'Google'" } } }, "viewedItemId": { "message": "Element $ID$ vizualizat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedPasswordItemId": { "message": "Parola pentru elementul $ID$ a fost vizualizată.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedHiddenFieldItemId": { "message": "Câmpul ascuns al elementului $ID$ a fost vizualizat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "viewedSecurityCodeItemId": { "message": "Codul de securitate al elementului $ID$ a fost vizualizat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedPasswordItemId": { "message": "Parola elementului $ID$ s-a copiat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedHiddenFieldItemId": { "message": "Câmpul ascuns al elementului $ID$ a fost copiat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "copiedSecurityCodeItemId": { "message": "Codul de securitate al elementului $ID$ a fost copiat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "autofilledItemId": { "message": "Elementul $ID$ s-a completat automat", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "createdCollectionId": { "message": "Colecția $ID$ a fost creată.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "editedCollectionId": { "message": "Colecția $ID$ a fost editată.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "deletedCollectionId": { "message": "Colecția $ID$ a fost ștearsă.", "placeholders": { "id": { "content": "$1", "example": "Server Passwords" } } }, "editedPolicyId": { "message": "Politica $ID$ a fost editată.", "placeholders": { "id": { "content": "$1", "example": "Master Password" } } }, "createdGroupId": { "message": "Grupul $ID$ a fost creat.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "editedGroupId": { "message": "Grupul $ID$ a fost editat.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "deletedGroupId": { "message": "Grupul $ID$ a fost șters.", "placeholders": { "id": { "content": "$1", "example": "Developers" } } }, "removedUserId": { "message": "Utilizatorul $ID$ a fost eliminat.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "createdAttachmentForItem": { "message": "Atașamentul elementului $ID$ a fost creat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "deletedAttachmentForItem": { "message": "Atașamentul elementului $ID$ a fost șters.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "editedCollectionsForItem": { "message": "Colecțiile elementului $ID$ au fost editate.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "invitedUserId": { "message": "Utilizatorul $ID$ a fost invitat.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "confirmedUserId": { "message": "Utilizatorul $ID$ a fost confirmat.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "editedUserId": { "message": "Utilizatorul $ID$ a fost editat.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "editedGroupsForUser": { "message": "Grupurile utilizatorului $ID$ au fost editate.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "unlinkedSsoUser": { "message": "SSO deconectat pentru utilizatorul $ID$.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "createdOrganizationId": { "message": "Organizația $ID$ a fost creată.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "addedOrganizationId": { "message": "Organizația $ID$ a fost adăugată.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "removedOrganizationId": { "message": "Organizația $ID$ a fost eliminată.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "accessedClientVault": { "message": "Seiful organizației $ID$ a fost accesat.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "device": { "message": "Dispozitiv" }, "view": { "message": "Afișare" }, "invalidDateRange": { "message": "Interval de date incorect." }, "errorOccurred": { "message": "S-a produs o eroare." }, "userAccess": { "message": "Acces utilizator" }, "userType": { "message": "Tip de utilizator" }, "groupAccess": { "message": "Acces grup" }, "groupAccessUserDesc": { "message": "Editați grupurile cu care este asociat acest utilizator." }, "invitedUsers": { "message": "Utilizatori invitați." }, "resendInvitation": { "message": "Retrimitere invitație" }, "resendEmail": { "message": "Retrimitere e-mail" }, "hasBeenReinvited": { "message": "$USER$ a fost invitat din nou.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "confirm": { "message": "Confirmare" }, "confirmUser": { "message": "Confirmare utilizator" }, "hasBeenConfirmed": { "message": "$USER$ a fost confirmat.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "confirmUsers": { "message": "Confirmare utilizatori" }, "usersNeedConfirmed": { "message": "Aveți utilizatori care au acceptat invitația, dar care încă au nevoie să fie confirmați. Utilizatorii nu vor avea acces la organizație până când nu sunt confirmați." }, "startDate": { "message": "Data de început" }, "endDate": { "message": "Data de sfârșit" }, "verifyEmail": { "message": "Verificare e-mail" }, "verifyEmailDesc": { "message": "Verifică adresa de e-mail a contului pentru a debloca accesul la toate funcțiile." }, "verifyEmailFirst": { "message": "Adresa de e-mail a contului dvs. trebuie mai întâi verificată." }, "checkInboxForVerification": { "message": "Verificați dacă ați primit linkul de verificare prin e-mail." }, "emailVerified": { "message": "E-mailul dvs. a fost confirmat." }, "emailVerifiedFailed": { "message": "E-mailul dvs. nu a putut fi verificat. Încercați să trimiteți un nou e-mail de verificare." }, "emailVerificationRequired": { "message": "Este necesară verificarea adresei de e-mail" }, "emailVerificationRequiredDesc": { "message": "Trebuie să vă verificați e-mailul pentru a utiliza această caracteristică." }, "updateBrowser": { "message": "Actualizare browser" }, "updateBrowserDesc": { "message": "Utilizați un browser nesuportat. Seiful web ar putea să nu funcționeze corect." }, "joinOrganization": { "message": "Alăturare la organizație" }, "joinOrganizationDesc": { "message": "Ați fost invitat să vă alăturați organizației listate mai sus. Pentru a accepta invitația, trebuie să vă conectați sau să creați un cont Bitwarden nou." }, "inviteAccepted": { "message": "Invitație acceptată" }, "inviteAcceptedDesc": { "message": "Puteți accesa această organizație după ce un administrator vă confirmă abonamentul. Vă vom trimite un e-mail când se întâmplă acest lucru." }, "inviteAcceptFailed": { "message": "Imposibil de acceptat invitația. Solicitați unui administrator al organizației să trimită o invitație nouă." }, "inviteAcceptFailedShort": { "message": "Imposibil de acceptat invitația. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must enable 2FA on your user account before you can join this organization." } } }, "rememberEmail": { "message": "Memorare e-mail" }, "recoverAccountTwoStepDesc": { "message": "Dacă nu vă puteți accesa contul prin metodele normale de conectare în două etape, puteți utiliza codul de recuperare în două etape pentru a dezactiva toți furnizorii în două etape din contul dvs." }, "recoverAccountTwoStep": { "message": "Recuperare autentificare în două etape a contului" }, "twoStepRecoverDisabled": { "message": "Conectarea în două etape a fost dezactivată în contul dvs." }, "learnMore": { "message": "Aflați mai multe" }, "deleteRecoverDesc": { "message": "Introduceți adresa de e-mail mai jos pentru a vă recupera și șterge contul." }, "deleteRecoverEmailSent": { "message": "În cazul în care contul dvs. există, v-am trimis un e-mail cu instrucțiuni suplimentare." }, "deleteRecoverConfirmDesc": { "message": "Ați solicitat să ștergeți contul Bitwarden. Clicați pe butonul de mai jos pentru a confirma." }, "myOrganization": { "message": "Organizația mea" }, "deleteOrganization": { "message": "Ștergere organizație" }, "deletingOrganizationContentWarning": { "message": "Introduceți parola principală pentru a confirma ștergerea $ORGANIZATION$ și a tuturor datelor asociate. Datele de seif din $ORGANIZATION$ includ:", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "deletingOrganizationActiveUserAccountsWarning": { "message": "Conturile de utilizator vor rămâne active după ștergere, dar nu vor mai fi asociate cu această organizație." }, "deletingOrganizationIsPermanentWarning": { "message": "Ștergerea $ORGANIZATION$ este permanentă și ireversibilă.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "organizationDeleted": { "message": "Organizația a fost ștearsă" }, "organizationDeletedDesc": { "message": "Organizația și toate datele asociate au fost șterse." }, "organizationUpdated": { "message": "Organizația s-a actualizat" }, "taxInformation": { "message": "Informații fiscale" }, "taxInformationDesc": { "message": "Pentru clienții din SUA, codul ZIP este necesar pentru a satisface cerințele privind taxa de vânzare, pentru alte țări, opțional, puteți să furnizați un număr de identificare fiscală (TVA/GST) și/sau o adresă care să apară pe facturile dvs." }, "billingPlan": { "message": "Plan", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "changeBillingPlan": { "message": "Actualizare plan", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "changeBillingPlanUpgrade": { "message": "Actualizați-vă contului la un alt plan prin furnizarea informațiilor de mai jos. Vă rugăm să vă asigurați că ați adăugat o metodă de plată activă în cont.", "description": "A billing plan/package. For example: families, teams, enterprise, etc." }, "invoiceNumber": { "message": "Factura #$NUMBER$", "description": "ex. Invoice #79C66F0-0001", "placeholders": { "number": { "content": "$1", "example": "79C66F0-0001" } } }, "viewInvoice": { "message": "Afișare factură" }, "downloadInvoice": { "message": "Descărcare factură" }, "verifyBankAccount": { "message": "Verificare contul bancar" }, "verifyBankAccountDesc": { "message": "Am făcut două micro-depozite în contul dvs. bancar (poate dura 1-2 zile lucrătoare pentru a apărea). Introduceți aceste sume pentru a verifica contul bancar." }, "verifyBankAccountInitialDesc": { "message": "Plata cu un cont bancar este disponibilă numai clienților din Statele Unite. Vi se va cere să vă verificați contul bancar. Vom face două micro-depozite în următoarele 1-2 zile lucrătoare. Introduceți aceste sume pe pagina de facturare a organizației pentru a verifica contul bancar." }, "verifyBankAccountFailureWarning": { "message": "O eroare la validarea contului dvs. bancar va duce la o plată pierdută, iar abonamentul dvs. va fi dezactivat." }, "verifiedBankAccount": { "message": "Contul bancar a fost verificat." }, "bankAccount": { "message": "Cont bancar" }, "amountX": { "message": "Suma $COUNT$", "description": "Used in bank account verification of micro-deposits. Amount, as in a currency amount. Ex. Amount 1 is $2.00, Amount 2 is $1.50", "placeholders": { "count": { "content": "$1", "example": "1" } } }, "routingNumber": { "message": "Cod bancar", "description": "Bank account routing number" }, "accountNumber": { "message": "Număr de cont" }, "accountHolderName": { "message": "Numele titularului contului" }, "bankAccountType": { "message": "Tip de cont" }, "bankAccountTypeCompany": { "message": "Companie (Business)" }, "bankAccountTypeIndividual": { "message": "Individual (Personal)" }, "enterInstallationId": { "message": "Introducere id de instalare" }, "limitSubscriptionDesc": { "message": "Setați o limită de licențe pentru abonamentul dvs. Odată ce această limită este atinsă, nu veți putea invita utilizatori noi." }, "maxSeatLimit": { "message": "Limita maximă de licențe (opțional)", "description": "Upper limit of seats to allow through autoscaling" }, "maxSeatCost": { "message": "Cost potențial maxim de licență" }, "addSeats": { "message": "Adăugare licențe", "description": "Seat = User Seat" }, "removeSeats": { "message": "Eliminare licențe", "description": "Seat = User Seat" }, "subscriptionDesc": { "message": "Ajustările abonamentului dvs. vor avea ca rezultat modificări proporționale ale totalurilor dvs. de facturare. Dacă utilizatorii nou invitați depășesc numărul dvs. de licențe, veți primi imediat o taxă proporțională pentru utilizatorii suplimentari." }, "subscriptionUserSeats": { "message": "Abonamentul dvs. permite un total de $COUNT$ utilizatori.", "placeholders": { "count": { "content": "$1", "example": "50" } } }, "limitSubscription": { "message": "Limită de abonament (opțional)" }, "subscriptionSeats": { "message": "Licențele abonamentului" }, "subscriptionUpdated": { "message": "Abonament actualizat" }, "additionalOptions": { "message": "Opțiuni suplimentare" }, "additionalOptionsDesc": { "message": "Pentru ajutor suplimentar în gestionarea abonamentului dvs., vă rugăm să contactați serviciul de asistență pentru clienți." }, "subscriptionUserSeatsUnlimitedAutoscale": { "message": "Ajustările abonamentului dvs. vor avea ca rezultat modificări proporționale ale totalurilor dvs. de facturare. Dacă utilizatorii nou invitați depășesc numărul dvs. de licențe, veți primi imediat o taxă proporțională pentru utilizatorii suplimentari." }, "subscriptionUserSeatsLimitedAutoscale": { "message": "Ajustările abonamentului dvs. vor avea ca rezultat modificări proporționale ale totalurilor dvs. de facturare. Dacă utilizatorii nou invitați depășesc numărul dvs. de licențe, veți primi imediat o taxă proporțională pentru utilizatorii suplimentari, până când limita dvs. de $MAX$ licențe este atinsă.", "placeholders": { "max": { "content": "$1", "example": "50" } } }, "subscriptionFreePlan": { "message": "Nu puteți invita mai mult de $COUNT$ utilizatori fără să vă actualizați planul.", "placeholders": { "count": { "content": "$1", "example": "2" } } }, "subscriptionFamiliesPlan": { "message": "Nu puteți invita mai mult de $COUNT$ utilizatori fără să vă actualizați planul. Vă rugăm să contactați serviciul de asistență pentru clienți pentru a moderniza.", "placeholders": { "count": { "content": "$1", "example": "6" } } }, "subscriptionSponsoredFamiliesPlan": { "message": "Abonamentul dvs. permite un total de $COUNT$ utilizatori. Planul dvs. este sponsorizat și facturat unei organizații externe.", "placeholders": { "count": { "content": "$1", "example": "6" } } }, "subscriptionMaxReached": { "message": "Ajustările abonamentului dvs. vor avea ca rezultat modificări proporționale ale totalurilor dvs. de facturare. Nu puteți invita mai mult de $COUNT$ utilizatori fără a vă mări numărul de licențe ale abonamentului.", "placeholders": { "count": { "content": "$1", "example": "50" } } }, "seatsToAdd": { "message": "Licențe de adăugat" }, "seatsToRemove": { "message": "Licențe de eliminat" }, "seatsAddNote": { "message": "Adăugarea de licențe utilizator va duce la ajustări ale totalelor de facturare și la facturarea imediată conform metodei dvs. de facturare. Prima facturare va fi aplicată proporțional la restul ciclului curent de facturare." }, "seatsRemoveNote": { "message": "Eliminarea de licențe utilizatori va duce la ajustări ale totalelor dvs. de facturare, care vor fi proporționate ca credite pentru următoarea facturare." }, "adjustedSeats": { "message": "$AMOUNT$ licențe de utilizator actualizate.", "placeholders": { "amount": { "content": "$1", "example": "15" } } }, "keyUpdated": { "message": "Cheia s-a actualizat" }, "updateKeyTitle": { "message": "Actualizare cheie" }, "updateEncryptionKey": { "message": "Actualizare cheie de criptare" }, "updateEncryptionKeyShortDesc": { "message": "În prezent utilizați o schemă de criptare învechită." }, "updateEncryptionKeyDesc": { "message": "Ne-am mutat la chei mai mari de criptare care oferă o mai bună securitate și acces la funcții mai noi. Actualizarea cheii de criptare este rapidă și ușoară. Doar tastați parola principală mai jos. Această actualizare va deveni în cele din urmă obligatorie." }, "updateEncryptionKeyWarning": { "message": "După actualizarea cheii de criptare, trebuie să vă reconectați în toate aplicațiile Bitwarden pe care le utilizați în prezent (cum ar fi aplicația mobilă sau extensiile browserului). Faptul de a nu vă deconecta și reconecta (care descarcă noua cheie de criptare) poate duce la corupția datelor. Vom încerca să vă deconectăm automat, însă ar putea fi întârziat." }, "updateEncryptionKeyExportWarning": { "message": "Orice export criptat pe care l-ați salvat va deveni, de asemenea, nevalid." }, "subscription": { "message": "Abonament" }, "loading": { "message": "Se încarcă" }, "upgrade": { "message": "Faceți upgrade" }, "upgradeOrganization": { "message": "Faceți upgrade organizației" }, "upgradeOrganizationDesc": { "message": "Această funcție nu este disponibilă pentru organizațiile gratuite. Comutați la un plan plătit pentru a debloca mai multe funcții." }, "createOrganizationStep1": { "message": "Crearea unei organizații: Pasul 1" }, "createOrganizationCreatePersonalAccount": { "message": "Înainte de a vă crea organizația, trebuie mai întâi să creați un cont personal gratuit." }, "refunded": { "message": "Rambursat" }, "nothingSelected": { "message": "Nu ați selectat nimic." }, "acceptPolicies": { "message": "Dacă bifați această casetă sunteți de acord cu următoarele:" }, "acceptPoliciesError": { "message": "Termeni de utilizare și Politica de confidențialitate nu au fost recunoscute." }, "termsOfService": { "message": "Termeni de utilizare" }, "privacyPolicy": { "message": "Politică de confidențialitate" }, "filters": { "message": "Filtre" }, "vaultTimeout": { "message": "Expirare seif" }, "vaultTimeoutDesc": { "message": "Determină când seiful dvs. va expira și va efectua acțiunea selectată." }, "oneMinute": { "message": "1 minut" }, "fiveMinutes": { "message": "5 minute" }, "fifteenMinutes": { "message": "15 minute" }, "thirtyMinutes": { "message": "30 de minute" }, "oneHour": { "message": "1 oră" }, "fourHours": { "message": "4 ore" }, "onRefresh": { "message": "La reîmprospătarea browserului" }, "dateUpdated": { "message": "S-a actualizat", "description": "ex. Date this item was updated" }, "datePasswordUpdated": { "message": "Parola s-a actualizat", "description": "ex. Date this password was updated" }, "organizationIsDisabled": { "message": "Organizația este dezactivată." }, "licenseIsExpired": { "message": "Licența a expirat." }, "updatedUsers": { "message": "Utilizatori actualizați" }, "selected": { "message": "Selectat(e)" }, "ownership": { "message": "Proprietate" }, "whoOwnsThisItem": { "message": "Cine deține acest element?" }, "strong": { "message": "Puternică", "description": "ex. A strong password. Scale: Very Weak -> Weak -> Good -> Strong" }, "good": { "message": "Bună", "description": "ex. A good password. Scale: Very Weak -> Weak -> Good -> Strong" }, "weak": { "message": "Slabă", "description": "ex. A weak password. Scale: Very Weak -> Weak -> Good -> Strong" }, "veryWeak": { "message": "Foarte slabă", "description": "ex. A very weak password. Scale: Very Weak -> Weak -> Good -> Strong" }, "weakMasterPassword": { "message": "Parolă principală slabă" }, "weakMasterPasswordDesc": { "message": "Parola principală aleasă este slabă. Ar trebui folosită o parolă principală (sau o frază de access) puternică pentru a vă proteja corect contul Bitwarden. Sigur doriți să folosiți această parola principală?" }, "rotateAccountEncKey": { "message": "De asemenea, revocați cheia de criptare a contului meu" }, "rotateEncKeyTitle": { "message": "Revocare cheia de criptare" }, "rotateEncKeyConfirmation": { "message": "Sigur doriți să revocați cheia de criptare a contului?" }, "attachmentsNeedFix": { "message": "Acest element are atașamente vechi care trebuie fixate." }, "attachmentFixDesc": { "message": "Acesta este un atașament de fișier vechi care trebuie reparat. Clicați pentru a afla mai multe." }, "fix": { "message": "Repară", "description": "This is a verb. ex. 'Fix The Car'" }, "oldAttachmentsNeedFixDesc": { "message": "Există atașamente de fișiere vechi în seiful dvs. care trebuie reparate înainte de a putea revoca cheia de criptare a contului." }, "yourAccountsFingerprint": { "message": "Fraza amprentă a contului dvs.", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "fingerprintEnsureIntegrityVerify": { "message": "Pentru a asigura integritatea cheilor dvs. de criptare, vă rugăm să verificați fraza amprentă a utilizatorului înainte de a continua.", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "dontAskFingerprintAgain": { "message": "Nu-mi cereți niciodată să verific frazele amprentă pentru utilizatorii invitați (Nerecomandat)", "description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing." }, "free": { "message": "Gratuit", "description": "Free, as in 'Free beer'" }, "apiKey": { "message": "Cheie API" }, "apiKeyDesc": { "message": "Cheia dvs. API poate fi utilizată pentru autentificarea la API-ul public Bitwarden." }, "apiKeyRotateDesc": { "message": "Revocarea cheii API va invalida cheia anterioară. Puteți revoca cheia API dacă vi se pare că actuala cheie nu mai este sigur de folosit." }, "apiKeyWarning": { "message": "Cheia dvs. API are acces complet la organizație. Ar trebui păstrată secret." }, "userApiKeyDesc": { "message": "Cheia dvs. API poate fi utilizată pentru autentificare în Bitwarden CLI." }, "userApiKeyWarning": { "message": "Cheia dvs. API este un mecanism alternativ de autentificare. Ar trebui păstrată secret." }, "oauth2ClientCredentials": { "message": "Acreditări client OAuth 2.0", "description": "'OAuth 2.0' is a programming protocol. It should probably not be translated." }, "viewApiKey": { "message": "Afișare cheie API" }, "rotateApiKey": { "message": "Revocare cheie API" }, "selectOneCollection": { "message": "Trebuie să selectați cel puțin o colecție." }, "couldNotChargeCardPayInvoice": { "message": "Nu am putut procesa plata cu cardul dvs. Vă rugăm să vizualizați și să plătiți factura neplătită de mai jos." }, "inAppPurchase": { "message": "Achiziție în aplicație" }, "cannotPerformInAppPurchase": { "message": "Nu puteți efectua această acțiune în timp ce utilizați ca metodă de plată achiziția în aplicație." }, "manageSubscriptionFromStore": { "message": "Trebuie să vă gestionați abonamentul din magazinul în care a fost efectuată achiziția în aplicație." }, "minLength": { "message": "Lungimea minimă" }, "clone": { "message": "Clonare" }, "masterPassPolicyDesc": { "message": "Setează cerințele minime pentru puterea parolei principale." }, "twoStepLoginPolicyDesc": { "message": "Solicită utilizatorilor să configureze conectarea în două etape pentru conturile lor personale." }, "twoStepLoginPolicyWarning": { "message": "Membrii organizației care nu sunt Proprietari sau Administratori și nu au activată conectarea în două etape în contul lor personal vor fi eliminați din organizație și vor primi o notificare prin e-mail cu privire la modificare." }, "twoStepLoginPolicyUserWarning": { "message": "Sunteți membrul unei organizații care necesită conectarea în două etape activată în contul dvs. de utilizator. Dacă dezactivați toți furnizorii de conectare în două etape, veți fi eliminat automat din aceste organizații." }, "passwordGeneratorPolicyDesc": { "message": "Setează cerințele minime pentru configurarea generatorului de parole." }, "passwordGeneratorPolicyInEffect": { "message": "Una sau mai multe politici organizaționale vă afectează setările generatorului." }, "masterPasswordPolicyInEffect": { "message": "Una sau mai multe politici organizaționale necesită ca parola principală să îndeplinească următoarele cerințe:" }, "policyInEffectMinComplexity": { "message": "Scor minim de complexitate de $SCORE$", "placeholders": { "score": { "content": "$1", "example": "4" } } }, "policyInEffectMinLength": { "message": "Lungime minimă de $LENGTH$", "placeholders": { "length": { "content": "$1", "example": "14" } } }, "policyInEffectUppercase": { "message": "Unul sau mai multe caractere majuscule" }, "policyInEffectLowercase": { "message": "Unul sau mai multe caractere minuscule" }, "policyInEffectNumbers": { "message": "Una sau mai multe cifre" }, "policyInEffectSpecial": { "message": "Unul sau mai multe din următoarele caractere: $CHARS$", "placeholders": { "chars": { "content": "$1", "example": "!@#$%^&*" } } }, "masterPasswordPolicyRequirementsNotMet": { "message": "Noua dvs. parolă principală nu îndeplinește cerințele politicii." }, "minimumNumberOfWords": { "message": "Număr minim de cuvinte" }, "defaultType": { "message": "Tip implicit" }, "userPreference": { "message": "Preferințe utilizator" }, "vaultTimeoutAction": { "message": "Acțiune la expirarea seifului" }, "vaultTimeoutActionLockDesc": { "message": "Un seif blocat necesită reintroducerea parolei principale pentru a-l accesa din nou." }, "vaultTimeoutActionLogOutDesc": { "message": "Un seif deconectat necesită reautentificarea pentru a-l accesa din nou." }, "lock": { "message": "Blocare", "description": "Verb form: to make secure or inaccesible by" }, "trash": { "message": "Coș de reciclare", "description": "Noun: A special folder for holding deleted items that have not yet been permanently deleted" }, "searchTrash": { "message": "Căutare în coșul de reciclare" }, "permanentlyDelete": { "message": "Ștergere definitivă" }, "permanentlyDeleteSelected": { "message": "Ștergere definitivă a selecției" }, "permanentlyDeleteItem": { "message": "Ștergere definitivă a articolului" }, "permanentlyDeleteItemConfirmation": { "message": "Sigur doriți să ștergeți definitiv acest articol?" }, "permanentlyDeletedItem": { "message": "Articolul a fost șters definitiv" }, "permanentlyDeletedItems": { "message": "Articolele au fost șterse definitiv" }, "permanentlyDeleteSelectedItemsDesc": { "message": "Ați selectat $COUNT$ articol(e) pentru ștergere definitivă. Sigur vreți să ștergeți definitiv toate articolele selectate?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "permanentlyDeletedItemId": { "message": "Articolul $ID$ a fost șters definitiv.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "restore": { "message": "Restabilire" }, "restoreSelected": { "message": "Restabilire selecție" }, "restoreItem": { "message": "Restabilire articol" }, "restoredItem": { "message": "Articol restabilit" }, "restoredItems": { "message": "Articole restabilite" }, "restoreItemConfirmation": { "message": "Sigur doriți să restabiliți acest articol?" }, "restoreItems": { "message": "Restabilire articole" }, "restoreSelectedItemsDesc": { "message": "Ați selectat $COUNT$ articol(e) pentru restabilire. Sigur vreți să restabiliți toate aceste articole?", "placeholders": { "count": { "content": "$1", "example": "150" } } }, "restoredItemId": { "message": "Elementul $ID$ a fost restabilit.", "placeholders": { "id": { "content": "$1", "example": "Google" } } }, "vaultTimeoutLogOutConfirmation": { "message": "După expirare, accesul la seiful dvs. va fi restricționat și va fi necesară autentificarea on-line. Sigur doriți să utilizați această setare?" }, "vaultTimeoutLogOutConfirmationTitle": { "message": "Confirmare acțiune la expirare" }, "hidePasswords": { "message": "Ascundere parole" }, "countryPostalCodeRequiredDesc": { "message": "Solicităm aceste informații doar pentru calcularea taxei de vânzare și a raportării financiare." }, "includeVAT": { "message": "Includere informații despre TVA/GST (opțional)" }, "taxIdNumber": { "message": "Codul fiscal TVA/GST" }, "taxInfoUpdated": { "message": "Informațiile fiscale au fost actualizate." }, "setMasterPassword": { "message": "Setare parolă principală" }, "ssoCompleteRegistration": { "message": "Pentru a finaliza conectarea cu SSO, vă rugăm să setați o parolă principală pentru a vă accesa și proteja seiful." }, "identifier": { "message": "Identificator" }, "organizationIdentifier": { "message": "Identificatorul organizației" }, "ssoLogInWithOrgIdentifier": { "message": "Conectați-vă utilizând portalul de conectare unică al organizației. Pentru a începe, Introduceți vă rog identificatorul organizației dvs." }, "enterpriseSingleSignOn": { "message": "Conectare unică organizație (SSO)" }, "ssoHandOff": { "message": "Acum puteți închide această filă și puteți continua în extensie." }, "includeAllTeamsFeatures": { "message": "Toate funcțiile planului Echipe, plus:" }, "includeSsoAuthentication": { "message": "Autentificare SSO prin SAML2.0 și OpenID Connect" }, "includeEnterprisePolicies": { "message": "Politici Organizație" }, "ssoValidationFailed": { "message": "Validarea SSO nu a reușit" }, "ssoIdentifierRequired": { "message": "Identificatorul organizației este necesar." }, "unlinkSso": { "message": "Deconectare SSO" }, "unlinkSsoConfirmation": { "message": "Sigur doriți să deconectați SSO pentru această organizație?" }, "linkSso": { "message": "Conectare SSO" }, "singleOrg": { "message": "Organizație Unică" }, "singleOrgDesc": { "message": "Restricționează utilizatorii să se alăture oricărei alte organizații." }, "singleOrgBlockCreateMessage": { "message": "Organizația dvs. actuală are o politică care nu vă permite să vă alăturați la mai mult de o organizație. Vă rugăm să contactați administratorii organizației sau să vă înscrieți dintr-un cont Bitwarden diferit." }, "singleOrgPolicyWarning": { "message": "Membrii organizației care nu sunt proprietari sau administratori și sunt deja membri ai unei alte organizații vor fi eliminați din organizația dvs." }, "requireSso": { "message": "Autentificare Single Sign-On" }, "requireSsoPolicyDesc": { "message": "Solicită utilizatorilor să se conecteze cu metoda Conectare unică organizație (SSO)." }, "prerequisite": { "message": "Condiție prealabilă" }, "requireSsoPolicyReq": { "message": "Înainte de activarea acestei politici, trebuie activată metoda de conectare \"Single sign-on\" pentru organizație (SSO)." }, "requireSsoPolicyReqError": { "message": "Politica Organizație Unică nu este activată." }, "requireSsoExemption": { "message": "Proprietarii și administratorii organizației sunt exceptați de la aplicarea acestei politici." }, "sendTypeFile": { "message": "Fișier" }, "sendTypeText": { "message": "Text" }, "createSend": { "message": "Creare de nou Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "editSend": { "message": "Editare Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "createdSend": { "message": "S-a creat un nou Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "editedSend": { "message": "Send-ul a fost editat", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deletedSend": { "message": "Send-ul a fost șters", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deleteSend": { "message": "Ștergere Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deleteSendConfirmation": { "message": "Sigur doriți să ștergeți acest Send?", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "whatTypeOfSend": { "message": "Ce fel de Send este acesta?", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "deletionDate": { "message": "Data ștergerii" }, "deletionDateDesc": { "message": "Send-ul va fi șters definitiv la data și ora specificate.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "expirationDate": { "message": "Data expirării" }, "expirationDateDesc": { "message": "Dacă este setat, accesul la acest Send va expira la data și ora specificate.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "maxAccessCount": { "message": "Număr maxim de accesări" }, "maxAccessCountDesc": { "message": "Dacă este configurat, utilizatorii nu vor mai putea accesa acest Send când a fost atins numărul maxim de accesări.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "currentAccessCount": { "message": "Număr actual de accesări" }, "sendPasswordDesc": { "message": "Opțional, este necesară o parolă pentru ca utilizatorii să acceseze acest Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendNotesDesc": { "message": "Note private despre acest Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "disabled": { "message": "Dezactivat" }, "sendLink": { "message": "Link Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "copySendLink": { "message": "Copiere link Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "removePassword": { "message": "Eliminare parolă" }, "removedPassword": { "message": "Parola a fost eliminată" }, "removePasswordConfirmation": { "message": "Sigur doriți să eliminați parola?" }, "hideEmail": { "message": "Ascundeți adresa mea de e-mail de la destinatari." }, "disableThisSend": { "message": "Dezactivați acest Send astfel încât nimeni să nu îl poată accesa.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "allSends": { "message": "Toate Send-urile" }, "maxAccessCountReached": { "message": "S-a atins numărul maxim de acces", "description": "This text will be displayed after a Send has been accessed the maximum amount of times." }, "pendingDeletion": { "message": "Ștergere în așteptare" }, "expired": { "message": "Expirat" }, "searchSends": { "message": "Căutare în Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendProtectedPassword": { "message": "Acest Send este protejat cu parolă. Vă rugăm să introduceți mai jos parola pentru a continua.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendProtectedPasswordDontKnow": { "message": "Nu știți parola? Cereți Expeditorului parola necesară pentru a accesa acest Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendHiddenByDefault": { "message": "Acest Send este ascuns în mod implicit. Puteți comuta vizibilitatea acestuia folosind butonul de mai jos.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "downloadFile": { "message": "Descărcare fișier" }, "sendAccessUnavailable": { "message": "Send-ul pe care încercați să-l accesați nu există sau nu mai este disponibil.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "missingSendFile": { "message": "Fișierul asociat cu acest Send nu a putut fi găsit.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "noSendsInList": { "message": "Niciun Send de afișat.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "emergencyAccess": { "message": "Acces de urgență" }, "emergencyAccessDesc": { "message": "Acordă și gestionează accesul de urgență, contactelor de încredere. Contactele de încredere, pot solicita accesul, fie la vizualizarea, fie la preluarea controlului contului dvs. în caz de urgență. Vizitați-ne pagina de ajutor, pentru detalii privind modul cum funcționează schimbul zero de cunoștințe." }, "emergencyAccessOwnerWarning": { "message": "Sunteți proprietarul uneia sau mai multor organizații. Dacă permiteți preluarea controlului de către un contact de urgență, acesta va putea utiliza toate permisiunile dvs. ca proprietar, după preluarea controlului." }, "trustedEmergencyContacts": { "message": "Contacte de urgență de încredere" }, "noTrustedContacts": { "message": "Nu ați adăugat încă niciun contact de urgență, invitați un contact de încredere pentru a începe." }, "addEmergencyContact": { "message": "Adăugați un contact de urgență" }, "designatedEmergencyContacts": { "message": "Desemnat ca contact de urgență" }, "noGrantedAccess": { "message": "Nu ați fost încă desemnat drept contact de urgență pentru nimeni." }, "inviteEmergencyContact": { "message": "Invitați contactul de urgență" }, "editEmergencyContact": { "message": "Editați contactul de urgență" }, "inviteEmergencyContactDesc": { "message": "Invitați un nou contact de urgență introducând adresa de e-mail a contului Bitwarden de mai jos. Dacă nu au deja un cont Bitwarden, li se va solicita să creeze un cont nou." }, "emergencyAccessRecoveryInitiated": { "message": "Acces de urgență inițiat" }, "emergencyAccessRecoveryApproved": { "message": "Acces de urgență aprobat" }, "viewDesc": { "message": "Poate vizualiza toate articolele din seiful dvs." }, "takeover": { "message": "Preluare" }, "takeoverDesc": { "message": "Vă poate reseta contul cu o nouă parolă principală." }, "waitTime": { "message": "Timp de așteptare" }, "waitTimeDesc": { "message": "Timp necesar înainte de acordarea automată a accesului." }, "oneDay": { "message": "1 zi" }, "days": { "message": "$DAYS$ zile", "placeholders": { "days": { "content": "$1", "example": "1" } } }, "invitedUser": { "message": "Utilizator invitat." }, "acceptEmergencyAccess": { "message": "Ați fost invitat să deveniți un contact de urgență pentru utilizatorul listat mai sus. Pentru a accepta invitația, trebuie să vă conectați sau să creați un cont Bitwarden nou." }, "emergencyInviteAcceptFailed": { "message": "Invitația nu poate fi acceptată. Solicitați utilizatorului să trimită o nouă invitație." }, "emergencyInviteAcceptFailedShort": { "message": "Invitația nu poate fi acceptată. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must enable 2FA on your user account before you can join this organization." } } }, "emergencyInviteAcceptedDesc": { "message": "Puteți accesa opțiunile de urgență pentru acest utilizator după confirmarea identității dvs. Vă vom trimite un e-mail atunci când se întâmplă acest lucru." }, "requestAccess": { "message": "Solicitare de acces" }, "requestAccessConfirmation": { "message": "Sunteți sigur că doriți să solicitați acces de urgență? Vi se va oferi acces după $WAITTIME$ zi(le) sau ori de câte ori utilizatorul aprobă manual solicitarea.", "placeholders": { "waittime": { "content": "$1", "example": "1" } } }, "requestSent": { "message": "Acces de urgență solicitat pentru $USER$. Vă vom notifica prin e-mail când este posibil să continuați.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "approve": { "message": "Autorizez" }, "reject": { "message": "Declin" }, "approveAccessConfirmation": { "message": "Confirmați aprobarea accesului de urgență? Acest lucru va permite lui $USER$ să $ACTION$ contul dvs.", "placeholders": { "user": { "content": "$1", "example": "John Smith" }, "action": { "content": "$2", "example": "View" } } }, "emergencyApproved": { "message": "Acces de urgență aprobat." }, "emergencyRejected": { "message": "Acces de urgență respins" }, "passwordResetFor": { "message": "S-a resetat parola pentru $USER$. Vă puteți conecta acum cu noua parolă.", "placeholders": { "user": { "content": "$1", "example": "John Smith" } } }, "personalOwnership": { "message": "Proprietate personală" }, "personalOwnershipPolicyDesc": { "message": "Solicită utilizatorilor să salveze articolele din seif într-o organizație prin eliminarea opțiunii de proprietate personală." }, "personalOwnershipExemption": { "message": "Proprietarii și administratorii organizației sunt exceptați de la aplicarea acestei politici." }, "personalOwnershipSubmitError": { "message": "Datorită unei politici pentru întreprinderi, vă este restricționată salvarea de articole în seiful dvs. personal. Schimbați opțiunea de proprietate la o organizație și alegeți dintre colecțiile disponibile." }, "disableSend": { "message": "Dezactivare Send" }, "disableSendPolicyDesc": { "message": "Nu permiteți utilizatorilor să creeze sau să editeze un Send Bitwarden. Ștergerea unui Send existent este încă permisă.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "disableSendExemption": { "message": "Utilizatorii organizației care pot gestiona politicile organizației sunt exceptați de la aplicarea acestei politici." }, "sendDisabled": { "message": "Send dezactivat", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendDisabledWarning": { "message": "Datorită unei politici de întreprindere, puteți șterge numai un Send existent.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptions": { "message": "Opțiuni Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsPolicyDesc": { "message": "Setați opțiunile pentru crearea și editarea Send-urilor.", "description": "'Sends' is a plural noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsExemption": { "message": "Utilizatorii organizației care pot gestiona politicile organizației sunt exceptați de la aplicarea acestei politici." }, "disableHideEmail": { "message": "Nu permiteți utilizatorilor să-și ascundă adresa de e-mail de la destinatari, atunci când creează sau editează un Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendOptionsPolicyInEffect": { "message": "În prezent, sunt în vigoare următoarele politici de organizare:" }, "sendDisableHideEmailInEffect": { "message": "Utilizatorii nu au voie să-și ascundă adresa de e-mail de la destinatari atunci când creează sau editează un Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "modifiedPolicyId": { "message": "Politica $ID$ a fost editată.", "placeholders": { "id": { "content": "$1", "example": "Master Password" } } }, "planPrice": { "message": "Prețul planului" }, "estimatedTax": { "message": "Taxa estimată" }, "custom": { "message": "Personalizat" }, "customDesc": { "message": "Permite mai mult control granular al permisiunilor utilizatorilor pentru configurații avansate." }, "permissions": { "message": "Permisiuni" }, "accessEventLogs": { "message": "Acces la jurnalele de evenimente" }, "accessImportExport": { "message": "Acces la import/export" }, "accessReports": { "message": "Acces la rapoarte" }, "missingPermissions": { "message": "Nu aveți drepturile necesare pentru a efectua această acțiune." }, "manageAllCollections": { "message": "Gestionați toate colecțiile" }, "createNewCollections": { "message": "Creare de colecție nouă" }, "editAnyCollection": { "message": "Modificare a oricărei colecții" }, "deleteAnyCollection": { "message": "Ștergere a oricărei colecții" }, "manageAssignedCollections": { "message": "Gestionați colecțiile alocate" }, "editAssignedCollections": { "message": "Editare de colecții alocate" }, "deleteAssignedCollections": { "message": "Ștergere de colecții alocate" }, "manageGroups": { "message": "Gestionați grupurile" }, "managePolicies": { "message": "Gestionați politicile" }, "manageSso": { "message": "Gestionați SSO" }, "manageUsers": { "message": "Gestionați utilizatorii" }, "manageResetPassword": { "message": "Gestionați resetarea parolei" }, "disableRequiredError": { "message": "Trebuie să dezactivați manual politica $POLICYNAME$ înainte ca această politică să poată fi dezactivată.", "placeholders": { "policyName": { "content": "$1", "example": "Single Sign-On Authentication" } } }, "personalOwnershipPolicyInEffect": { "message": "O politică de organizație vă afectează opțiunile de proprietate." }, "personalOwnershipPolicyInEffectImports": { "message": "O politică a organizației a dezactivat importarea de elemente în seiful dvs. personal." }, "personalOwnershipCheckboxDesc": { "message": "Dezactivează proprietatea personală pentru utilizatorii organizației" }, "textHiddenByDefault": { "message": "Când Send-ul este accesat, ascundeți textul în mod implicit", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendNameDesc": { "message": "Un nume prietenos pentru a descrie acest Send.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendTextDesc": { "message": "Textul pe care doriți să-l trimiteți." }, "sendFileDesc": { "message": "Fișierul pe care doriți să-l trimiteți." }, "copySendLinkOnSave": { "message": "Copiați linkul pentru a partaja acest Send în clipboard-ul meu la salvare." }, "sendLinkLabel": { "message": "Link Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "send": { "message": "Send", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendAccessTaglineProductDesc": { "message": "Bitwarden Send transmite celorlalți informații sensibile, temporare, cu ușurință și în siguranță.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "sendAccessTaglineLearnMore": { "message": "Aflați mai multe despre", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more about** Bitwarden Send or sign up to try it today.'" }, "sendVaultCardProductDesc": { "message": "Partajați text sau fișiere direct cu oricine." }, "sendVaultCardLearnMore": { "message": "Aflați mai multe", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more**, see how it works, or try it now. '" }, "sendVaultCardSee": { "message": "vedeți", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, **see** how it works, or try it now.'" }, "sendVaultCardHowItWorks": { "message": "cum funcționează", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see **how it works**, or try it now.'" }, "sendVaultCardOr": { "message": "sau", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, **or** try it now.'" }, "sendVaultCardTryItNow": { "message": "încercați-l acum", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, or **try it now**.'" }, "sendAccessTaglineOr": { "message": "sau", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send **or** sign up to try it today.'" }, "sendAccessTaglineSignUp": { "message": "înregistrați-vă", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or **sign up** to try it today.'" }, "sendAccessTaglineTryToday": { "message": "pentru a-l încerca astăzi.", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or sign up to **try it today.**'" }, "sendCreatorIdentifier": { "message": "Utilizatorul Bitwarden $USER_IDENTIFIER$ a partajat următoarele cu dvs.", "placeholders": { "user_identifier": { "content": "$1", "example": "An email address" } } }, "viewSendHiddenEmailWarning": { "message": "Utilizatorul Bitwarden care a creat acest Send a ales să-și ascundă adresa de e-mail. Ar trebui să vă asigurați că aveți încredere în sursa acestui link înainte de utilizarea sau descărcarea conținutului acestuia.", "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated." }, "expirationDateIsInvalid": { "message": "Data de expirare furnizată nu este validă." }, "deletionDateIsInvalid": { "message": "Data de ștergere furnizată nu este validă." }, "expirationDateAndTimeRequired": { "message": "Sunt necesare o dată și o oră de expirare." }, "deletionDateAndTimeRequired": { "message": "Sunt necesare o dată și o oră de ștergere." }, "dateParsingError": { "message": "A survenit o eroare la salvarea datelor de ștergere și de expirare." }, "webAuthnFallbackMsg": { "message": "Pentru a verifica 2FA, vă rugăm să faceți clic pe butonul de mai jos." }, "webAuthnAuthenticate": { "message": "Autentificare WebAuthn" }, "webAuthnNotSupported": { "message": "WebAuthn nu este acceptat în acest browser." }, "webAuthnSuccess": { "message": "WebAuthn a fost verificat cu succes! Puteți închide această filă." }, "hintEqualsPassword": { "message": "Indiciul dvs. de parolă nu poate fi aceeași cu parola." }, "enrollPasswordReset": { "message": "Înscriere în resetarea parolei" }, "enrolledPasswordReset": { "message": "Înregistrat la resetarea parolei" }, "withdrawPasswordReset": { "message": "Retragere din resetarea parolei" }, "enrollPasswordResetSuccess": { "message": "Înregistrare reușită!" }, "withdrawPasswordResetSuccess": { "message": "Retragere reușită!" }, "eventEnrollPasswordReset": { "message": "Utilizator $ID$ s-a înscris în asistența de resetare a parolei.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventWithdrawPasswordReset": { "message": "Utilizatorul $ID$ s-a retras din asistența pentru resetarea parolei.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventAdminPasswordReset": { "message": "Resetarea parolei principale pentru utilizatorul $ID$.", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "eventResetSsoLink": { "message": "Resetare link SSO pentru utilizatorul $ID$", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "firstSsoLogin": { "message": "$ID$ s-a autentificat folosind SSO pentru prima data", "placeholders": { "id": { "content": "$1", "example": "John Smith" } } }, "resetPassword": { "message": "Resetați parola" }, "resetPasswordLoggedOutWarning": { "message": "Procedând, $NAME$ va fi deconectat de la sesiunea curentă, solicitându-i să se conecteze din nou. Sesiunile active pe alte dispozitive pot continua să rămână active timp de până la o oră.", "placeholders": { "name": { "content": "$1", "example": "John Smith" } } }, "thisUser": { "message": "acest utilizator" }, "resetPasswordMasterPasswordPolicyInEffect": { "message": "Una sau mai multe politici ale organizației, necesită ca parola principală să îndeplinească următoarele cerințe:" }, "resetPasswordSuccess": { "message": "Parolă resetată cu succes!" }, "resetPasswordEnrollmentWarning": { "message": "Înscrierea va permite administratorilor organizației să vă schimbe parola principală. Sigur doriți să vă înscrieți?" }, "resetPasswordPolicy": { "message": "Resetare parolă principală" }, "resetPasswordPolicyDescription": { "message": "Permite administratorilor din organizație să reseteze parola principală a utilizatorilor organizației." }, "resetPasswordPolicyWarning": { "message": "Utilizatorii din organizație vor trebui să se înregistreze singuri sau, să fie înregistrați automat, înainte ca administratorii să le poată reseta parola principală." }, "resetPasswordPolicyAutoEnroll": { "message": "Înregistrare automată" }, "resetPasswordPolicyAutoEnrollDescription": { "message": "Toți utilizatorii vor fi înregistrați automat în resetarea parolei odată ce invitația lor este acceptată și nu li se va permite să se retragă." }, "resetPasswordPolicyAutoEnrollWarning": { "message": "Utilizatorii care fac deja parte din organizație, nu vor fi înscriși retroactiv în resetarea parolei. Ei vor trebui să se înregistreze singuri, înainte ca administratorii să poată reseta parola lor principală." }, "resetPasswordPolicyAutoEnrollCheckbox": { "message": "Solicită înscrierea automată a noilor utilizatori" }, "resetPasswordAutoEnrollInviteWarning": { "message": "Această organizație are o politică de întreprindere care vă va înregistra automat în resetarea parolei. Înregistrarea va permite administratorilor organizației să vă schimbe parola principală." }, "resetPasswordOrgKeysError": { "message": "Răspunsul Cheilor organizației este nul" }, "resetPasswordDetailsError": { "message": "Răspunsul detaliat la resetarea parolei este nul" }, "trashCleanupWarning": { "message": "Articolele care au fost în coșul de reciclare mai mult de 30 de zile vor fi șterse automat." }, "trashCleanupWarningSelfHosted": { "message": "Articolele care au fost în coșul de reciclare de ceva vreme vor fi șterse automat." }, "passwordPrompt": { "message": "Re-solicitare parolă principală" }, "passwordConfirmation": { "message": "Confirmare parolă principală" }, "passwordConfirmationDesc": { "message": "Această acțiune este protejată. Pentru a continua, vă rugăm să reintroduceți parola principală pentru a vă verifica identitatea." }, "reinviteSelected": { "message": "Retrimitere invitații" }, "noSelectedUsersApplicable": { "message": "Această acțiune nu se aplică niciunui utilizator selectat." }, "removeUsersWarning": { "message": "Sunteți sigur că doriți să eliminați următorii utilizatori? Finalizarea procesului poate dura câteva secunde și nu poate fi întrerupt sau anulat." }, "theme": { "message": "Temă" }, "themeDesc": { "message": "Alegere temă pentru seiful dvs. web." }, "themeSystem": { "message": "Utilizare temă de sistem" }, "themeDark": { "message": "Întunecat" }, "themeLight": { "message": "Luminos" }, "confirmSelected": { "message": "Confirmați selecția" }, "bulkConfirmStatus": { "message": "Starea operației în masă" }, "bulkConfirmMessage": { "message": "Confirmat cu succes." }, "bulkReinviteMessage": { "message": "Reinvitat cu succes." }, "bulkRemovedMessage": { "message": "Eliminat cu succes" }, "bulkFilteredMessage": { "message": "Exclus, nu se aplică pentru această acțiune." }, "fingerprint": { "message": "Amprentă" }, "removeUsers": { "message": "Eliminați utilizatorii" }, "error": { "message": "Eroare" }, "resetPasswordManageUsers": { "message": "Gestionare Utilizatori trebuie de asemenea activată cu Gestionare Permisiune de Resetare a Parolei" }, "setupProvider": { "message": "Configurare furnizor" }, "setupProviderLoginDesc": { "message": "Ați fost invitat să configurați un nou furnizor. Pentru a continua, trebuie să vă conectați sau să creați un nou cont Bitwarden." }, "setupProviderDesc": { "message": "Vă rugăm să introduceți mai jos detaliile pentru a finaliza configurarea furnizorului. Contactați asistența pentru clienți dacă aveți întrebări." }, "providerName": { "message": "Numele furnizorului" }, "providerSetup": { "message": "Furnizorul a fost configurat." }, "clients": { "message": "Clienți" }, "providerAdmin": { "message": "Administrator furnizor" }, "providerAdminDesc": { "message": "Utilizatorul cu accesul cel mai ridicat, care poate gestiona toate aspectele furnizorului dvs., precum și accesul și gestionarea organizațiilor clientului." }, "serviceUser": { "message": "Utilizator de serviciu" }, "serviceUserDesc": { "message": "Utilizatorii serviciilor pot accesa și gestiona toate organizațiile clienților." }, "providerInviteUserDesc": { "message": "Invitați un utilizator nou la furnizorul dvs. introducând mai jos adresa de e-mail a contului Bitwarden. Dacă nu au deja un cont Bitwarden, li se va solicita să creeze un cont nou." }, "joinProvider": { "message": "Alăturare la furnizor" }, "joinProviderDesc": { "message": "Ați fost invitat să vă alăturați furnizorului enumerat mai sus. Pentru a accepta invitația, trebuie să vă conectați sau să creați un cont Bitwarden nou." }, "providerInviteAcceptFailed": { "message": "Nu am putut accepta invitația. Solicitați unui administrator de furnizor să trimită o nouă invitație." }, "providerInviteAcceptedDesc": { "message": "Puteți accesa acest furnizor după ce un administrator vă confirmă abonamentul. Vă vom trimite un e-mail când se întâmplă acest lucru." }, "providerUsersNeedConfirmed": { "message": "Aveți utilizatori care au acceptat invitația, dar încă mai trebuie să fie confirmați. Utilizatorii nu vor avea acces la furnizor până când nu vor fi confirmați." }, "provider": { "message": "Furnizor" }, "newClientOrganization": { "message": "Organizație client nouă" }, "newClientOrganizationDesc": { "message": "Creați o nouă organizație client care va fi asociată cu dvs. ca furnizor. Veți putea accesa și gestiona această organizație." }, "addExistingOrganization": { "message": "Adăugare organizație existentă" }, "myProvider": { "message": "Furnizorul meu" }, "addOrganizationConfirmation": { "message": "Sunteți sigur că doriți să adăugați $ORGANIZATION$ ca și client la $PROVIDER$?", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" }, "provider": { "content": "$2", "example": "My Provider Name" } } }, "organizationJoinedProvider": { "message": "Organizația a fost adăugată cu succes la furnizor" }, "accessingUsingProvider": { "message": "Accesarea organizației folosind furnizorul $PROVIDER$", "placeholders": { "provider": { "content": "$1", "example": "My Provider Name" } } }, "providerIsDisabled": { "message": "Furnizorul este dezactivat." }, "providerUpdated": { "message": "Furnizor actualizat" }, "yourProviderIs": { "message": "Furnizorul dvs. este $PROVIDER$. Ei au privilegii administrative și de facturare pentru organizația dvs.", "placeholders": { "provider": { "content": "$1", "example": "My Provider Name" } } }, "detachedOrganization": { "message": "Organizația $ORGANIZATION$ a fost detașată de furnizorul dvs.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "detachOrganizationConfirmation": { "message": "Sigur doriți să detașați această organizație? Organizația va continua să existe, dar nu va mai fi gestionată de furnizor." }, "add": { "message": "Adaugă" }, "updatedMasterPassword": { "message": "Parolă principală actualizată" }, "updateMasterPassword": { "message": "Actualizare parolă principală" }, "updateMasterPasswordWarning": { "message": "Parola dvs. principală a fost modificată recent de unul din administratorii organizației dvs. Pentru a accesa seiful, trebuie să o actualizați acum. Procedura vă va deconecta de la sesiunea curentă, necesitând să vă reconectați. Sesiunile active de pe alte dispozitive pot continua să rămână active timp de până la o oră." }, "masterPasswordInvalidWarning": { "message": "Parola dvs. principală nu îndeplinește cerințele politicii acestei organizații. Pentru a vă alătura organizației, trebuie să vă actualizați acum parola principală. Continuarea vă va deconecta de la sesiunea curentă, fiind necesar să vă autentificați din nou. Sesiunile active pe alte dispozitive pot continua să rămână active timp de până la o oră." }, "maximumVaultTimeout": { "message": "Expirare seif" }, "maximumVaultTimeoutDesc": { "message": "Configurează timpul maxim de expirare a seifului pentru toți utilizatorii." }, "maximumVaultTimeoutLabel": { "message": "Timp maxim de expirare a seifului" }, "invalidMaximumVaultTimeout": { "message": "Timp maxim de expirare a seifului nevalid." }, "hours": { "message": "Ore" }, "minutes": { "message": "Minute" }, "vaultTimeoutPolicyInEffect": { "message": "Politicile organizației dvs vă afectează expirarea seifului. Timpul maxim permis de expirare a seifului este $HOURS$ oră (ore) și $MINUTES$ minut(e)", "placeholders": { "hours": { "content": "$1", "example": "5" }, "minutes": { "content": "$2", "example": "5" } } }, "customVaultTimeout": { "message": "Expirare seif personalizată" }, "vaultTimeoutToLarge": { "message": "Timpul de expirare a seifului depășește restricția stabilită de organizația dvs." }, "disablePersonalVaultExport": { "message": "Dezactivare a exportului seifului personal" }, "disablePersonalVaultExportDesc": { "message": "Interzice utilizatorilor să exporte datele private ale seifului lor." }, "vaultExportDisabled": { "message": "Export de seif dezactivat" }, "personalVaultExportPolicyInEffect": { "message": "Una sau mai multe politici ale organizației vă împiedică să exportați seiful personal." }, "selectType": { "message": "Selectați tipul SSO" }, "type": { "message": "Tip" }, "openIdConnectConfig": { "message": "Configurare OpenID Connect" }, "samlSpConfig": { "message": "Configurare furnizor de servicii SAML" }, "samlIdpConfig": { "message": "Configurare furnizor de identitate SAML" }, "callbackPath": { "message": "Calea redirecționării" }, "signedOutCallbackPath": { "message": "Calea de deconectare a redirecționării" }, "authority": { "message": "Autoritate" }, "clientId": { "message": "ID-ul clientului" }, "clientSecret": { "message": "Codul secret al clientului" }, "metadataAddress": { "message": "Adresă de metadate" }, "oidcRedirectBehavior": { "message": "Comportament de redirecționare OIDC" }, "getClaimsFromUserInfoEndpoint": { "message": "Obținere de claims de la punctul final de info utilizator" }, "additionalScopes": { "message": "Scopes personalizate" }, "additionalUserIdClaimTypes": { "message": "Tipuri de claim personalizate de ID utilizator" }, "additionalEmailClaimTypes": { "message": "Tipuri de Claim e-mail" }, "additionalNameClaimTypes": { "message": "Tipuri de Claim cu nume personalizate" }, "acrValues": { "message": "Valorile de referință ale clasei de context de autentificare solicitate" }, "expectedReturnAcrValue": { "message": "Valoarea Claim „acr” care trebuie așteptată în răspuns" }, "spEntityId": { "message": "ID-ul Entității SP" }, "spMetadataUrl": { "message": "SAML 2.0 Metadata URL" }, "spAcsUrl": { "message": "Assertion Consumer Service (ACS) URL" }, "spNameIdFormat": { "message": "Format ID nume" }, "spOutboundSigningAlgorithm": { "message": "Algoritm de semnare de ieșire" }, "spSigningBehavior": { "message": "Comportamentul semnăturii" }, "spMinIncomingSigningAlgorithm": { "message": "Algoritmul minim de semnare de intrare" }, "spWantAssertionsSigned": { "message": "Se așteaptă afirmații semnate" }, "spValidateCertificates": { "message": "Validare certificate" }, "idpEntityId": { "message": "ID-ul Entității" }, "idpBindingType": { "message": "Tip de legare" }, "idpSingleSignOnServiceUrl": { "message": "Serviciul de Conectare Unică URL" }, "idpSingleLogoutServiceUrl": { "message": "Serviciului de Deconectare Unică URL" }, "idpX509PublicCert": { "message": "Certificat public X509" }, "idpOutboundSigningAlgorithm": { "message": "Algoritm de semnare de ieșire" }, "idpAllowUnsolicitedAuthnResponse": { "message": "Se permite răspunsul nesolicitat de autentificare" }, "idpAllowOutboundLogoutRequests": { "message": "Se permit cererile de deconectare de ieșire" }, "idpSignAuthenticationRequests": { "message": "Semnare a solicitărilor de autentificare" }, "ssoSettingsSaved": { "message": "Configurația de conectare unică a fost salvată." }, "sponsoredFamilies": { "message": "Planul Bitwarden Familiile gratuit" }, "sponsoredFamiliesEligible": { "message": "Dumneavoastră și familia dvs., sunteți eligibili pentru planul Bitwarden Familiile gratuit. Revendicați-l cu e-mailul personal pentru a vă păstra datele în siguranță chiar și atunci când nu sunteți la locul de muncă." }, "sponsoredFamiliesEligibleCard": { "message": "Schimbați-vă astăzi planul Bitwarden Gratuit pentru Familiile, pentru a vă păstra datele dvs. sigure, chiar și atunci când nu sunteți la locul de muncă." }, "sponsoredFamiliesInclude": { "message": "Planul Bitwarden Familiile include" }, "sponsoredFamiliesPremiumAccess": { "message": "Acces Premium pentru până la 6 utilizatori" }, "sponsoredFamiliesSharedCollections": { "message": "Colecții partajate pentru secrete familiale" }, "badToken": { "message": "Linkul nu mai este valabil. Vă rugăm să cereți sponsorului să retrimită oferta." }, "reclaimedFreePlan": { "message": "Planul gratuit revendicat" }, "redeem": { "message": "Revendicare" }, "sponsoredFamiliesSelectOffer": { "message": "Selectați organizația pe care doriți să o sponsorizați" }, "familiesSponsoringOrgSelect": { "message": "Ce ofertă Gratuită Familiile ați dori să revendicați?" }, "sponsoredFamiliesEmail": { "message": "Introduceți e-mailul dvs. personal pentru a revendica planul Bitwarden Familiile" }, "sponsoredFamiliesLeaveCopy": { "message": "Dacă părăsiți sau sunteți exclus din organizația sponsor, planul dvs. Familiile va expira la sfârșitul perioadei de facturare." }, "acceptBitwardenFamiliesHelp": { "message": "Acceptați oferta pentru o organizație existentă sau creați o nouă organizație Familiile." }, "setupSponsoredFamiliesLoginDesc": { "message": "Vi s-a oferit gratuit un plan de Organizație Bitwarden Familiile. Pentru a continua, trebuie să vă conectați la contul care a primit oferta." }, "sponsoredFamiliesAcceptFailed": { "message": "Imposibil de acceptat oferta. Vă rugăm să retrimiteți e-mailul ofertei din contul dvs. de întreprindere și încercați din nou." }, "sponsoredFamiliesAcceptFailedShort": { "message": "Imposibil de acceptat oferta. $DESCRIPTION$", "placeholders": { "description": { "content": "$1", "example": "You must have at least one existing Families Organization." } } }, "sponsoredFamiliesOffer": { "message": "Acceptați planul Bitwarden Familiile gratuit" }, "sponsoredFamiliesOfferRedeemed": { "message": "Oferta gratuită Bitwarden Familiile a fost revendicată cu succes" }, "redeemed": { "message": "Revendicată" }, "redeemedAccount": { "message": "Cont revendicat" }, "revokeAccount": { "message": "Revocare cont $NAME$", "placeholders": { "name": { "content": "$1", "example": "My Sponsorship Name" } } }, "resendEmailLabel": { "message": "Retrimiteți e-mailul de sponsorizare către sponsorul $NAME$", "placeholders": { "name": { "content": "$1", "example": "My Sponsorship Name" } } }, "freeFamiliesPlan": { "message": "Planul Familiile gratuit" }, "redeemNow": { "message": "Revendicați acum" }, "recipient": { "message": "Beneficiar" }, "removeSponsorship": { "message": "Eliminare sponsorizare" }, "removeSponsorshipConfirmation": { "message": "După eliminarea unei sponsorizări, veți fi responsabil pentru acest abonament și facturile conexe. Sigur doriți să continuați?" }, "sponsorshipCreated": { "message": "Sponsorizare creată" }, "revoke": { "message": "Revocare" }, "emailSent": { "message": "E-mail trimis" }, "revokeSponsorshipConfirmation": { "message": "După eliminarea acestui cont, proprietarul organizației Familiile va fi responsabil pentru acest abonament și facturile aferente. Sigur doriți să continuați?" }, "removeSponsorshipSuccess": { "message": "Sponsorizare eliminată" }, "ssoKeyConnectorUnavailable": { "message": "Nu se poate accesa Conectorul Cheie. Vă rugăm să încercați din nou mai târziu." }, "keyConnectorUrl": { "message": "URL de Conector Cheie" }, "sendVerificationCode": { "message": "Trimite un cod de verificare la adresa dvs. de e-mail" }, "sendCode": { "message": "Trimitere cod" }, "codeSent": { "message": "Cod trimis" }, "verificationCode": { "message": "Cod de verificare" }, "confirmIdentity": { "message": "Confirmați-vă identitatea pentru a continua." }, "verificationCodeRequired": { "message": "Este necesar codul de verificare." }, "invalidVerificationCode": { "message": "Cod de verificare nevalid" }, "convertOrganizationEncryptionDesc": { "message": "$ORGANIZATION$ folosește SSO cu un server de chei auto-găzduit. Membrii acestei organizații nu mai au nevoie de o parolă principală pentru autentificare.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "leaveOrganization": { "message": "Părăsire organizație" }, "removeMasterPassword": { "message": "Eliminare parolă principală" }, "removedMasterPassword": { "message": "Parolă principală eliminată." }, "allowSso": { "message": "Permite autentificarea SSO" }, "allowSsoDesc": { "message": "Odată configurată, configurația dvs. va fi salvată, iar membrii vor putea să se autentifice folosind acreditările furnizorului lor de identitate." }, "ssoPolicyHelpStart": { "message": "Activează", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpLink": { "message": "Politica de autentificare SSO", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpEnd": { "message": "pentru a solicita tuturor membrilor să se conecteze cu SSO.", "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'" }, "ssoPolicyHelpKeyConnector": { "message": "Autentificarea SSO și politicile Organizației Unice sunt necesare pentru a configura decriptarea cu Conectorul Cheie." }, "memberDecryptionOption": { "message": "Opțiuni de decriptare ale membrilor" }, "memberDecryptionPassDesc": { "message": "Odată autentificați, membrii vor decripta datele seifului folosind parolele lor principale." }, "keyConnector": { "message": "Conector Cheie" }, "memberDecryptionKeyConnectorDesc": { "message": "Conectează Autentificarea cu SSO la serverul dvs. cheie de decriptare auto-găzduit. Folosind această opțiune, membrii nu vor trebui să folosească parolele lor principale pentru a decripta datele seifului. Contactați asistența Bitwarden pentru ajutor la configurare." }, "keyConnectorPolicyRestriction": { "message": "„Autentificarea cu SSO și Decriptarea cu Conectorul Cheie” este activată. Această politică se va aplica numai proprietarilor și administratorilor." }, "enabledSso": { "message": "SSO activat" }, "disabledSso": { "message": "SSO dezactivat" }, "enabledKeyConnector": { "message": "Conector Cheie activat" }, "disabledKeyConnector": { "message": "Conector Cheie dezactivat" }, "keyConnectorWarning": { "message": "Odată ce membrii încep să utilizeze Conectorul Cheie, organizația dvs. nu mai poate reveni la decriptarea cu Parola Principală. Continuați numai dacă vă simțiți confortabil să implementați și să gestionați un server cheie." }, "migratedKeyConnector": { "message": "Migrat la Conectorul Cheie" }, "paymentSponsored": { "message": "Vă rugăm să furnizați o metodă de plată pentru a asocia cu organizația. Nu vă faceți griji, nu vă vom percepe nimic decât dacă selectați caracteristici suplimentare sau dacă sponsorizarea dvs. expiră. " }, "orgCreatedSponsorshipInvalid": { "message": "Oferta de sponsorizare a expirat. Puteți șterge organizația pe care ați creat-o pentru a evita o taxă la sfârșitul perioadei de încercare de 7 zile. În caz contrar, puteți închide această solicitare pentru a păstra organizația și pentru a vă asuma responsabilitatea de facturare." }, "newFamiliesOrganization": { "message": "Nouă Organizație Familiile" }, "acceptOffer": { "message": "Acceptare ofertă" }, "sponsoringOrg": { "message": "Organizația de sponsorizare" }, "keyConnectorTest": { "message": "Test" }, "keyConnectorTestSuccess": { "message": "Succes! Conectorul Cheie a fost accesat." }, "keyConnectorTestFail": { "message": "Conectorul Cheie nu este accesibil. Verificați adresa URL." }, "sponsorshipTokenHasExpired": { "message": "Oferta de sponsorizare a expirat." }, "freeWithSponsorship": { "message": "GRATUIT cu sponsorizare" }, "formErrorSummaryPlural": { "message": "$COUNT$ câmpuri de mai sus necesită atenția dvs.", "placeholders": { "count": { "content": "$1", "example": "5" } } }, "formErrorSummarySingle": { "message": "1 câmp de mai sus necesită atenția dvs." }, "fieldRequiredError": { "message": "$FIELDNAME$ este obligatoriu.", "placeholders": { "fieldname": { "content": "$1", "example": "Full name" } } }, "required": { "message": "necesar" }, "idpSingleSignOnServiceUrlRequired": { "message": "Necesar dacă ID-ul de entitate nu este un URL." }, "openIdOptionalCustomizations": { "message": "Personalizări opționale" }, "openIdAuthorityRequired": { "message": "Necesar dacă Autoritatea nu este validă." }, "separateMultipleWithComma": { "message": "Separați mai multe prin virgulă." }, "sessionTimeout": { "message": "Sesiunea dvs. a expirat. Vă rugăm reveniți și încercați să vă autentificați din nou." }, "exportingPersonalVaultTitle": { "message": "Exportarea seifului personal" }, "exportingOrganizationVaultTitle": { "message": "Exportarea seifului organizației" }, "exportingPersonalVaultDescription": { "message": "Numai elementele personale din seif asociate cu $EMAIL$ vor fi exportate. Elementele seifului organizației nu vor fi incluse.", "placeholders": { "email": { "content": "$1", "example": "name@example.com" } } }, "exportingOrganizationVaultDescription": { "message": "Numai seiful organizației asociat cu $ORGANIZATION$ va fi exportat. Elementele seifului personal și elementele din alte organizații nu vor fi incluse.", "placeholders": { "organization": { "content": "$1", "example": "My Org Name" } } }, "backToReports": { "message": "Înapoi la rapoarte" }, "generator": { "message": "Generator" }, "whatWouldYouLikeToGenerate": { "message": "Ce doriți să generați?" }, "passwordType": { "message": "Tip de parolă" }, "regenerateUsername": { "message": "Regenerare nume de utilizator" }, "generateUsername": { "message": "Generare nume de utilizator" }, "usernameType": { "message": "Tip de nume de utilizator" }, "plusAddressedEmail": { "message": "Plus e-mail adresat", "description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com" }, "plusAddressedEmailDesc": { "message": "Utilizați capacitățile de subadresare ale furnizorului dvs. de e-mail." }, "catchallEmail": { "message": "E-mail Catch-all" }, "catchallEmailDesc": { "message": "Utilizați inbox-ul catch-all configurat pentru domeniul dvs." }, "random": { "message": "Aleatoriu" }, "randomWord": { "message": "Cuvânt aleatoriu" }, "service": { "message": "Serviciu" } }
bitwarden/web/src/locales/ro/messages.json/0
{ "file_path": "bitwarden/web/src/locales/ro/messages.json", "repo_id": "bitwarden", "token_count": 65992 }
144
.btn-primary, .swal2-confirm { @include themify($themes) { background-color: themed("btnPrimary"); border-color: themed("btnPrimary"); color: themed("btnPrimaryText"); } &:hover:not(:disabled), &:active:not(:disabled) { @include themify($themes) { background-color: themed("btnPrimaryHover"); border-color: themed("btnPrimaryBorderHover"); color: themed("btnPrimaryText"); } } &:disabled { opacity: 0.65; } } .btn-outline-primary { @include themify($themes) { background-color: themed("btnOutlinePrimaryBackground"); border-color: themed("btnOutlinePrimaryBorder"); color: themed("btnOutlinePrimaryText"); } &:hover:not(:disabled), &:active { @include themify($themes) { background-color: themed("btnOutlinePrimaryBackgroundHover"); border-color: themed("btnOutlinePrimaryBorderHover"); color: themed("btnOutlinePrimaryTextHover"); } } } .btn-secondary, .swal2-cancel { @include themify($themes) { background-color: themed("btnSecondary"); border-color: themed("btnSecondaryBorder"); color: themed("btnSecondaryText"); } &:hover:not(:disabled), &:active:not(:disabled) { @include themify($themes) { background-color: themed("btnSecondaryHover"); border-color: themed("btnSecondaryBorderHover"); color: themed("btnSecondaryTextHover"); } } &:disabled { opacity: 0.65; } &:focus, &.focus { @include themify($themes) { box-shadow: 0 0 0 $btn-focus-width rgba(mix(color-yiq(themed("primary")), themed("primary"), 15%), 0.5); } } } .btn-outline-secondary { @include themify($themes) { background-color: themed("btnOutlineSecondaryBackground"); border-color: themed("btnOutlineSecondaryBorder"); color: themed("btnOutlineSecondaryText"); } &:hover:not(:disabled), &:active { @include themify($themes) { background-color: themed("btnOutlineSecondaryBackgroundHover"); border-color: themed("btnOutlineSecondaryBorderHover"); color: themed("btnOutlineSecondaryTextHover"); } } } .show > .btn-outline-secondary { &.dropdown-toggle, &:focus { @include themify($themes) { background-color: themed("btnOutlineSecondaryBackground"); border-color: themed("btnOutlineSecondaryBorder"); color: themed("btnOutlineSecondaryText"); } } &:hover { @include themify($themes) { background-color: themed("btnOutlineSecondaryBackgroundHover"); border-color: themed("btnOutlineSecondaryBorderHover"); color: themed("btnOutlineSecondaryTextHover"); } } } .btn-danger, .swal2-deny { @include themify($themes) { background-color: themed("btnDanger"); border-color: themed("btnDanger"); color: themed("btnDangerText"); } &:hover:not(:disabled), &:active:not(:disabled) { @include themify($themes) { background-color: themed("btnDangerHover"); border-color: themed("btnDangerHover"); color: themed("btnDangerText"); } } } .btn-outline-danger { @include themify($themes) { background-color: themed("btnOutlineDangerBackground"); border-color: themed("btnOutlineDangerBorder"); color: themed("btnOutlineDangerText"); } &:hover:not(:disabled), &:active { @include themify($themes) { background-color: themed("btnOutlineDangerBackgroundHover"); border-color: themed("btnOutlineDangerBorderHover"); color: themed("btnOutlineDangerTextHover"); } } } .btn-link { &:focus, &.focus { outline-color: -webkit-focus-ring-color; outline-offset: 1px; outline-style: auto; outline-width: 1px; } &:not(.text-danger):not(.cursor-move) { @include themify($themes) { color: themed("btnLinkText"); } } &:hover:not(.text-danger):not(.cursor-move) { @include themify($themes) { color: themed("btnLinkTextHover"); } } } .btn-submit { position: relative; .bwi-spinner { align-items: center; bottom: 0; display: none; justify-content: center; left: 0; position: absolute; right: 0; top: 0; } &:disabled:not(.manual), &.loading { .bwi-spinner { display: flex; } span { visibility: hidden; } } } button.no-btn { background: transparent; border: none; padding: 0; color: inherit; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; &:hover, &:focus { background: transparent; box-shadow: none; color: inherit; } } .badge-primary { @include themify($themes) { background-color: themed("badgePrimaryBackground"); color: themed("badgePrimaryText"); } &:hover { @include themify($themes) { background-color: themed("badgePrimaryBackgroundHover"); color: themed("badgePrimaryText"); } } } .badge-secondary { @include themify($themes) { background-color: themed("badgeSecondaryBackground"); color: themed("badgeSecondaryText"); } } .badge-info { @include themify($themes) { background-color: themed("badgeInfoBackground"); color: themed("badgeInfoText"); } } .badge-danger { @include themify($themes) { background-color: themed("badgeDangerBackground"); color: themed("badgeDangerText"); } } .badge-warning { @include themify($themes) { background-color: themed("warning"); color: themed("textWarningColor"); } } .badge-success { @include themify($themes) { background-color: themed("success"); color: themed("textSuccessColor"); } }
bitwarden/web/src/scss/buttons.scss/0
{ "file_path": "bitwarden/web/src/scss/buttons.scss", "repo_id": "bitwarden", "token_count": 2155 }
145
import { Injectable } from "@angular/core"; import { BroadcasterService } from "jslib-common/abstractions/broadcaster.service"; import { MessagingService } from "jslib-common/abstractions/messaging.service"; @Injectable() export class BroadcasterMessagingService implements MessagingService { constructor(private broadcasterService: BroadcasterService) {} send(subscriber: string, arg: any = {}) { const message = Object.assign({}, { command: subscriber }, arg); this.broadcasterService.send(message); } }
bitwarden/web/src/services/broadcasterMessaging.service.ts/0
{ "file_path": "bitwarden/web/src/services/broadcasterMessaging.service.ts", "repo_id": "bitwarden", "token_count": 151 }
146
#redis redis.host = 127.0.0.1 redis.port = 6380 redis.timeout = 2000 #========= Mysql ============ jdbc.driver = com.mysql.jdbc.Driver db.url = jdbc:mysql://127.0.0.1/web?useUnicode=true&characterEncoding=UTF-8 db.username = web db.password = 123456 db.maxtotal = 150 db.minidle = 40 db.maxidle = 60
chwshuang/web/back/src/main/resources/back.properties/0
{ "file_path": "chwshuang/web/back/src/main/resources/back.properties", "repo_id": "chwshuang", "token_count": 133 }
147
package com.aitongyi.web.service; /** * Created by admin on 16/8/8. */ import com.aitongyi.web.bean.User; import com.aitongyi.web.dao.mapper.UserMapper; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * 用户服务接口 * */ @Service public class UserService { private static final Logger logger = LoggerFactory.getLogger(UserService.class); @Autowired private UserMapper userMapper; @Transactional public User loadUserByUsername(String username) { return userMapper.loadUserByUsername(username); } @Transactional public void saveUser(User user) { userMapper.saveUser(user); // 测试异常后数据是否回滚 // getError(); } private void getError() { int i = 1 / 0; logger.info("i:{}" , i); } }
chwshuang/web/service/src/main/java/com/aitongyi/web/service/UserService.java/0
{ "file_path": "chwshuang/web/service/src/main/java/com/aitongyi/web/service/UserService.java", "repo_id": "chwshuang", "token_count": 401 }
148
# gocraft/web [![GoDoc](https://godoc.org/github.com/gocraft/web?status.png)](https://godoc.org/github.com/gocraft/web) gocraft/web is a Go mux and middleware package. We deal with casting and reflection so YOUR code can be statically typed. And we're fast. ## Getting Started From your GOPATH: ```bash go get github.com/gocraft/web ``` Add a file ```server.go``` - for instance, ```src/myapp/server.go``` ```go package main import ( "github.com/gocraft/web" "fmt" "net/http" "strings" ) type Context struct { HelloCount int } func (c *Context) SetHelloCount(rw web.ResponseWriter, req *web.Request, next web.NextMiddlewareFunc) { c.HelloCount = 3 next(rw, req) } func (c *Context) SayHello(rw web.ResponseWriter, req *web.Request) { fmt.Fprint(rw, strings.Repeat("Hello ", c.HelloCount), "World!") } func main() { router := web.New(Context{}). // Create your router Middleware(web.LoggerMiddleware). // Use some included middleware Middleware(web.ShowErrorsMiddleware). // ... Middleware((*Context).SetHelloCount). // Your own middleware! Get("/", (*Context).SayHello) // Add a route http.ListenAndServe("localhost:3000", router) // Start the server! } ``` Run the server. It will be available on ```localhost:3000```: ```bash go run src/myapp/server.go ``` ## Features * **Super fast and scalable**. Added latency is from 3-9μs per request. Routing performance is O(log(N)) in the number of routes. * **Your own contexts**. Easily pass information between your middleware and handler with strong static typing. * **Easy and powerful routing**. Capture path variables. Validate path segments with regexps. Lovely API. * **Middleware**. Middleware can express almost any web-layer feature. We make it easy. * **Nested routers, contexts, and middleware**. Your app has an API, and admin area, and a logged out view. Each view needs different contexts and different middleware. We let you express this hierarchy naturally. * **Embrace Go's net/http package**. Start your server with http.ListenAndServe(), and work directly with http.ResponseWriter and http.Request. * **Minimal**. The core of gocraft/web is lightweight and minimal. Add optional functionality with our built-in middleware, or write your own middleware. ## Performance Performance is a first class concern. Every update to this package has its performance measured and tracked in [BENCHMARK_RESULTS](https://github.com/gocraft/web/blob/master/BENCHMARK_RESULTS). For minimal 'hello world' style apps, added latency is about 3μs. This grows to about 10μs for more complex apps (6 middleware functions, 3 levels of contexts, 150+ routes). One key design choice we've made is our choice of routing algorithm. Most competing libraries use simple O(N) iteration over all routes to find a match. This is fine if you have only a handful of routes, but starts to break down as your app gets bigger. We use a tree-based router which grows in complexity at O(log(N)). ## Application Structure ### Making your router The first thing you need to do is make a new router. Routers serve requests and execute middleware. ```go router := web.New(YourContext{}) ``` ### Your context Wait, what is YourContext{} and why do you need it? It can be any struct you want it to be. Here's an example of one: ```go type YourContext struct { User *User // Assumes you've defined a User type as well } ``` Your context can be empty or it can have various fields in it. The fields can be whatever you want - it's your type! When a new request comes into the router, we'll allocate an instance of this struct and pass it to your middleware and handlers. This allows, for instance, a SetUser middleware to set a User field that can be read in the handlers. ### Routes and handlers Once you have your router, you can add routes to it. Standard HTTP verbs are supported. ```go router := web.New(YourContext{}) router.Get("/users", (*YourContext).UsersList) router.Post("/users", (*YourContext).UsersCreate) router.Put("/users/:id", (*YourContext).UsersUpdate) router.Delete("/users/:id", (*YourContext).UsersDelete) router.Patch("/users/:id", (*YourContext).UsersUpdate) router.Get("/", (*YourContext).Root) ``` What is that funny ```(*YourContext).Root``` notation? It's called a method expression. It lets your handlers look like this: ```go func (c *YourContext) Root(rw web.ResponseWriter, req *web.Request) { if c.User != nil { fmt.Fprint(rw, "Hello,", c.User.Name) } else { fmt.Fprint(rw, "Hello, anonymous person") } } ``` All method expressions do is return a function that accepts the type as the first argument. So your handler can also look like this: ```go func Root(c *YourContext, rw web.ResponseWriter, req *web.Request) {} ``` Of course, if you don't need a context for a particular action, you can also do that: ```go func Root(rw web.ResponseWriter, req *web.Request) {} ``` Note that handlers always need to accept two input parameters: web.ResponseWriter, and *web.Request, both of which wrap the standard http.ResponseWriter and *http.Request, respectively. ### Middleware You can add middleware to a router: ```go router := web.New(YourContext{}) router.Middleware((*YourContext).UserRequired) // add routes, more middleware ``` This is what a middleware handler looks like: ```go func (c *YourContext) UserRequired(rw web.ResponseWriter, r *web.Request, next web.NextMiddlewareFunc) { user := userFromSession(r) // Pretend like this is defined. It reads a session cookie and returns a *User or nil. if user != nil { c.User = user next(rw, r) } else { rw.Header().Set("Location", "/") rw.WriteHeader(http.StatusMovedPermanently) // do NOT call next() } } ``` Some things to note about the above example: * We set fields in the context for future middleware / handlers to use. * We can call next(), or not. Not calling next() effectively stops the middleware stack. Of course, generic middleware without contexts is supported: ```go func GenericMiddleware(rw web.ResponseWriter, r *web.Request, next web.NextMiddlewareFunc) { // ... } ``` ### Nested routers Nested routers let you run different middleware and use different contexts for different parts of your app. Some common scenarios: * You want to run an AdminRequired middleware on all your admin routes, but not on API routes. Your context needs a CurrentAdmin field. * You want to run an OAuth middleware on your API routes. Your context needs an AccessToken field. * You want to run session handling middleware on ALL your routes. Your context needs a Session field. Let's implement that. Your contexts would look like this: ```go type Context struct { Session map[string]string } type AdminContext struct { *Context CurrentAdmin *User } type ApiContext struct { *Context AccessToken string } ``` Note that we embed a pointer to the parent context in each subcontext. This is required. Now that we have our contexts, let's create our routers: ```go rootRouter := web.New(Context{}) rootRouter.Middleware((*Context).LoadSession) apiRouter := rootRouter.Subrouter(ApiContext{}, "/api") apiRouter.Middleware((*ApiContext).OAuth) apiRouter.Get("/tickets", (*ApiContext).TicketsIndex) adminRouter := rootRouter.Subrouter(AdminContext{}, "/admin") adminRouter.Middleware((*AdminContext).AdminRequired) // Given the path namesapce for this router is "/admin", the full path of this route is "/admin/reports" adminRouter.Get("/reports", (*AdminContext).Reports) ``` Note that each time we make a subrouter, we need to supply the context as well as a path namespace. The context CAN be the same as the parent context, and the namespace CAN just be "/" for no namespace. ### Request lifecycle The following is a detailed account of the request lifecycle: 1. A request comes in. Yay! (follow along in ```router_serve.go``` if you'd like) 2. Wrap the default Go http.ResponseWriter and http.Request in a web.ResponseWriter and web.Request, respectively (via structure embedding). 3. Allocate a new root context. This context is passed into your root middleware. 4. Execute middleware on the root router. We do this before we find a route! 5. After all of the root router's middleware is executed, we'll run a 'virtual' routing middleware that determines the target route. * If the there's no route found, we'll execute the NotFound handler if supplied. Otherwise, we'll write a 404 response and start unwinding the root middlware. 6. Now that we have a target route, we can allocate the context tree of the target router. 7. Start executing middleware on the nested middleware leading up to the final router/route. 8. After all middleware is executed, we'll run another 'virtual' middleware that invokes the final handler corresponding to the target route. 9. Unwind all middleware calls (if there's any code after next() in the middleware, obviously that's going to run at some point). ### Capturing path params; regexp conditions You can capture path variables like this: ```go router.Get("/suggestions/:suggestion_id/comments/:comment_id") ``` In your handler, you can access them like this: ```go func (c *YourContext) Root(rw web.ResponseWriter, req *web.Request) { fmt.Fprint(rw, "Suggestion ID:", req.PathParams["suggestion_id"]) fmt.Fprint(rw, "Comment ID:", req.PathParams["comment_id"]) } ``` You can also validate the format of your path params with a regexp. For instance, to ensure the 'ids' start with a digit: ```go router.Get("/suggestions/:suggestion_id:\\d.*/comments/:comment_id:\\d.*") ``` You can match any route past a certain point like this: ```go router.Get("/suggestions/:suggestion_id/comments/:comment_id/:*") ``` The path params will contain a “*” member with the rest of your path. It is illegal to add any more paths past the “*” path param, as it’s meant to match every path afterwards, in all cases. For Example: /suggestions/123/comments/321/foo/879/bar/834 Elicits path params: * “suggestion_id”: 123, * “comment_id”: 321, * “*”: “foo/879/bar/834” One thing you CANNOT currently do is use regexps outside of a path segment. For instance, optional path segments are not supported - you would have to define multiple routes that both point to the same handler. This design decision was made to enable efficient routing. ### Not Found handlers If a route isn't found, by default we'll return a 404 status and render the text "Not Found". You can supply a custom NotFound handler on your root router: ```go router.NotFound((*Context).NotFound) ``` Your handler can optionally accept a pointer to the root context. NotFound handlers look like this: ```go func (c *Context) NotFound(rw web.ResponseWriter, r *web.Request) { rw.WriteHeader(http.StatusNotFound) // You probably want to return 404. But you can also redirect or do whatever you want. fmt.Fprintf(rw, "My Not Found") // Render you own HTML or something! } ``` ### OPTIONS handlers If an [OPTIONS request](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing#Preflight_example) is made and routes with other methods are found for the requested path, then by default we'll return an empty response with an appropriate `Access-Control-Allow-Methods` header. You can supply a custom OPTIONS handler on your root router: ```go router.OptionsHandler((*Context).OptionsHandler) ``` Your handler can optionally accept a pointer to the root context. OPTIONS handlers look like this: ```go func (c *Context) OptionsHandler(rw web.ResponseWriter, r *web.Request, methods []string) { rw.Header().Add("Access-Control-Allow-Methods", strings.Join(methods, ", ")) rw.Header().Add("Access-Control-Allow-Origin", "*") } ``` ### Error handlers By default, if there's a panic in middleware or a handler, we'll return a 500 status and render the text "Application Error". If you use the included middleware ```web.ShowErrorsMiddleware```, a panic will result in a pretty backtrace being rendered in HTML. This is great for development. You can also supply a custom Error handler on any router (not just the root router): ```go router.Error((*Context).Error) ``` Your handler can optionally accept a pointer to its corresponding context. Error handlers look like this: ```go func (c *Context) Error(rw web.ResponseWriter, r *web.Request, err interface{}) { rw.WriteHeader(http.StatusInternalServerError) fmt.Fprint(w, "Error", err) } ``` ### Included middleware We ship with three basic pieces of middleware: a logger, an exception printer, and a static file server. To use them: ```go router := web.New(Context{}) router.Middleware(web.LoggerMiddleware). Middleware(web.ShowErrorsMiddleware) // The static middleware serves files. Examples: // "GET /" will serve an index file at pwd/public/index.html // "GET /robots.txt" will serve the file at pwd/public/robots.txt // "GET /images/foo.gif" will serve the file at pwd/public/images/foo.gif currentRoot, _ := os.Getwd() router.Middleware(web.StaticMiddleware(path.Join(currentRoot, "public"), web.StaticOption{IndexFile: "index.html"})) ``` NOTE: You might not want to use web.ShowErrorsMiddleware in production. You can easily do something like this: ```go router := web.New(Context{}) router.Middleware(web.LoggerMiddleware) if MyEnvironment == "development" { router.Middleware(web.ShowErrorsMiddleware) } // ... ``` ### Starting your server Since web.Router implements http.Handler (eg, ServeHTTP(ResponseWriter, *Request)), you can easily plug it in to the standard Go http machinery: ```go router := web.New(Context{}) // ... Add routes and such. http.ListenAndServe("localhost:8080", router) ``` ### Rendering responses So now you routed a request to a handler. You have a web.ResponseWriter (http.ResponseWriter) and web.Request (http.Request). Now what? ```go // You can print to the ResponseWriter! fmt.Fprintf(rw, "<html>I'm a web page!</html>") ``` This is currently where the implementation of this library stops. I recommend you read the documentation of [net/http](http://golang.org/pkg/net/http/). ## Extra Middlware This package is going to keep the built-in middlware simple and lean. Extra middleware can be found across the web: * [https://github.com/corneldamian/json-binding](https://github.com/corneldamian/json-binding) - mapping JSON request into a struct and response to json If you'd like me to link to your middleware, let me know with a pull request to this README. ## gocraft gocraft offers a toolkit for building web apps. Currently these packages are available: * [gocraft/web](https://github.com/gocraft/web) - Go Router + Middleware. Your Contexts. * [gocraft/dbr](https://github.com/gocraft/dbr) - Additions to Go's database/sql for super fast performance and convenience. * [gocraft/health](https://github.com/gocraft/health) - Instrument your web apps with logging and metrics. * [gocraft/work](https://github.com/gocraft/work) - Process background jobs in Go. These packages were developed by the [engineering team](https://eng.uservoice.com) at [UserVoice](https://www.uservoice.com) and currently power much of its infrastructure and tech stack. ## Thanks & Authors I use code/got inspiration from these excellent libraries: * [Revel](https://github.com/robfig/revel) - pathtree routing. * [Traffic](https://github.com/pilu/traffic) - inspiration, show errors middleware. * [Martini](https://github.com/codegangsta/martini) - static file serving. * [gorilla/mux](http://www.gorillatoolkit.org/pkg/mux) - inspiration. Authors: * Jonathan Novak -- [https://github.com/cypriss](https://github.com/cypriss) * Sponsored by [UserVoice](https://eng.uservoice.com)
gocraft/web/README.md/0
{ "file_path": "gocraft/web/README.md", "repo_id": "gocraft", "token_count": 4696 }
149